/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*
  Normalize
  --------------------------------------------------------------*/
.d-none{
  display:none !important;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #222;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", serif;
  clear: both;
  color: #222;
}
p {
  margin-bottom: 1.5em;
  font-size: 1rem;
  font-size: 18px;
  font-weight: 400;
}
li {
  font-size: 16px;
  line-height: 1.5;
}
.jumbotron li {
  margin-bottom: 20px;
  font-weight: 400;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #a90329;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1rem;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1rem;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
/* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
## Main style starts here
--------------------------------------------------------------*/
body,
body.custom-background {
  font: 400 13px/22px Lato;
  color: #666;
  background-color: #fff;
}
.btn {
  color: #fff !important;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 2px;
  padding: 5px 25px;
}
a,
a:visited {
  color: #a90329;
  text-decoration: none;
}
a:hover {
  color: #333;
}
img,
input,
.btn,
a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  margin: 20px 0;
  text-transform: uppercase;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
  margin: 0 0 10px 0;
}
h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #333;
}
.txtcenter {
  text-align: center;
}
a.readmore {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.spacer {
  padding-top: 20px;
  padding-bottom: 20px;
}
.spacersm {
  padding-top: 10px;
  padding-bottom: 10px;
}
.fa-ul > li {
  margin-bottom: 10px;
}
.fa-ul li .glyphicon,
#mobile-checks .glyphicon,
#product-links .glyphicon {
  margin-left: -15px;
  color: #c38a24;
}
/*header*/
header .logo-tag {
  margin: 5px 0;
}
header .logo-tag h1 {
  margin: 6px 0;
  font-size: 1.5em;
}
header .logo-tag h1 a:hover {
  text-decoration: none;
}
header .logo-tag h2 {
  margin: 0;
  color: #666;
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
header .navbar-collapse {
  padding: 0;
}
header .navbar-form {
  margin-top: 0;
  margin-bottom: 0;
}
header .navbar-form .main-search {
  position: relative;
}
header .navbar-form .main-search .btn .fa {
  font-size: 1.5em;
}
header .navbar-form .btn {
  background: #f66264;
  padding: 0 21px;
  box-shadow: none;
  border: none;
  color: #fff;
  text-shadow: none;
  line-height: 55px;
  border-radius: 0;
  outline: none !important;
}
header .navbar-default {
  border: none;
  margin: 0;
  background: rgb(195, 138, 36);
}
.navbar-center > li {
  display: inline-block;
  float: none;
}
header .navbar-default .navbar-nav li a {
  letter-spacing: 1px;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  padding: 0.9em 1.2em;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #efefef;
  background-color: rgb(195, 138, 36);
}
header .navbar-default .navbar-nav > li > a:hover {
  color: #ccc;
}
.navbar-nav > li > .dropdown-menu {
  border: none;
  border-radius: 0;
}
.navbar-right .dropdown-menu,
.dropdown-menu {
  right: auto;
  left: 0;
  box-shadow: none;
}
.navbar-right .dropdown-menu .dropdown-menu {
  left: 160px;
  top: -2px;
  border: none;
  border-radius: 0;
}
.dropdown-menu li a {
  color: #000 !important;
  font-size: 0.9em !important;
  padding: 1em 1.2em !important;
}
.dropdown-menu li a:hover {
  background-color: #fff !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #555 !important;
}
.navbar {
  border-radius: 0px;
  min-height: 0px;
}
/*header*/
/* theme slider */
.theme-slider .carousel-control {
  width: 5%;
  background: none;
}
.theme-slider .carousel-inner .item img {
  width: 100%;
}
.theme-slider .carousel-inner .item .slide-caption {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.theme-slider .carousel-inner .item .slide-caption h4 {
  color: #fff;
}
.theme-slider .carousel-inner .item .slide-caption .summary {
  font-size: 1.75em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
.theme-slider .carousel-inner .item .slide-caption .summary p {
  margin: 0;
}
.theme-slider .carousel-inner .item .slide-caption .slide-caption-details {
  width: 45%;
}
.theme-slider .glyphicon-chevron-right:before,
.theme-slider .glyphicon-chevron-left:before {
  display: none;
}
/* theme slider */
/*welcome*/
.welcome {
  background: #fff;
  height: 302px;
}
.welcome div {
  height: 100%;
}
.welcome .message {
  background-color: #f66062;
  color: #fff;
  padding: 30px;
  position: relative;
}
.welcome .message h1 {
  position: absolute;
  top: 50%;
  font-size: 1.95em;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*welcome*/
/*post*/
.eq-blocks {
  margin-bottom: 30px;
}
.post-list .post-block {
  margin-bottom: 30px;
  background-color: #fff;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 5px 10px #ccc;
}
.post-list .post-block .summary {
  padding: 15px 15px 0 15px;
}
.post-list .post-block img {
  transform: scale(1);
}
.post-list .post-block img:hover {
  transform: scale(1.07);
}
.post-info {
  font-size: 0.8em;
}
.post-info a {
  margin-right: 5px;
}
.post-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 15px;
  float: left;
  width: 100%;
}
.post-info ul li {
  display: inline-block;
}
/*post*/
/*navigation*/
.post-list h3 {
  margin-bottom: 25px;
}
.navigation.posts-navigation {
  clear: both;
}
footer {
  background-color: #000;
  padding: 15px 0;
  font-size: 0.8em;
  color: #aaa;
  position: relative;
}
footer .social a,
footer a,
footer a:visited {
  color: #da0000;
}
footer a:hover {
  color: #aaa;
}
footer ul {
  margin: 0;
}
section.footers {
  background: #333;
  padding: 10px;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 40px;
  /*inside page*/
}
section.footers h2,
section.footers h3 {
  color: #fff !important;
}
section.footers .widget-title {
  margin-top: 20px;
}
section.footers p,
section.footers a {
  color: #999;
}
section.footers a:hover {
  color: #fff;
}
section.footers .red,
section.footers .blue,
section#product-links .red {
  font-size: 28px;
  padding-left: 10px;
  padding-right: 10px;
}
.page-title {
  margin-bottom: 10px;
}
.page-title h1 {
  font-size: 2.7em;
  font-weight: 700;
  display: inline-block;
}
/*inside page*/
.comments-area {
  margin-top: 30px;
  border-top: 1px dotted #ccc;
  padding-top: 30px;
}
.comments-area h2 {
  margin-bottom: 15px;
}
.comments-area ol {
  margin: 0;
  list-style: none;
}
.comments-area ol.comment-list {
  padding: 0;
}
.comments-area ol.comment-list article {
  margin-bottom: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.comments-area footer {
  background: none;
  padding: 0;
}
.comments-area .comment-form label,
.comments-area .comment-form input {
  display: block;
  font-weight: 300;
}
.comments-area .comment-form input,
.comments-area .comment-form textarea {
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding: 10px;
  width: 100%;
}
.comments-area .comment-form .form-submit input {
  padding: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: auto;
  margin: auto;
  border: none;
}
/*widget*/
.widget {
  margin-bottom: 30px;
  padding: 15px;
  background: #fff;
}
.widget ul,
.widget ol {
  margin: 0;
  padding-left: 15px;
}
#header-logo-phone {
  margin-top: -4px;
  background-repeat: repeat;
  padding-top: 15px;
  padding-bottom: 0px;
}
#logo {
  max-width: 270px;
}
.book-form-wrapper
  .frm_style_formidable-style.with_frm_style
  .frm_form_fields
  > fieldset {
  padding: 10px;
}
.book-form-wrapper {
  background-color: #999;
  box-shadow: 0px 0px 15px #aaa;
  border: 2px solid #fff;
}
a.blue,
.comments-area .comment-form .form-submit input,
input[type="submit"],
a.red,
.bluebtn.frm_button_submit,
.frm_submit.bluebtn,
.book-form-wrapper .frm_submit.bluebtn,
.book-form-wrapper .bluebtnwrapper button.frm_submit.bluebtn,
.bluebtnwrapper button.frm_button_submit.frm_final_submit.bluebtn,
#nf-field-4 {
  display: inline-block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c38a24+0,c1a472+100 */
  background: #c38a24; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #c38a24 0%,
    #c1a472 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #c38a24 0%,
    #c1a472 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #c38a24 0%,
    #c1a472 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c38a24', endColorstr='#c1a472',GradientType=0 ); /* IE6-9 */
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #fff !important;
  appearance: none;
  text-shadow: 0px 1px 2px #000;
  font-size: 32px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
  line-height: 0.5;
  padding: 20px 15px;
  min-width: 250px;
  border-radius: 19px;
  border: 6px solid #c09346;
}
.bluebtn.frm_button_submit {
  margin-top: 20px;
  margin: auto;
}
h3.widget-title {
  font-size: 2em;
}
.widget {
  margin-bottom: 10px;
}
#logos h3 {
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 10px;
}
#nf-field-4 {
  font-size: 22px;
  margin-top: 5px;
  width: 100%;
  min-width: auto;
}
.nf-form-fields-required {
  font-size: 12px;
}
.nf-form-layout {
  background-color: #e6e5f8;
  padding: 10px;
}
#nf-form-1-cont {
  border: 3px solid #0010ee;
  box-shadow: 0px 0px 10px #555;
  margin-bottom: 20px;
}
a.red {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8c0900+0,da0000+100 */
  background: #8c0900; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #8c0900 0%,
    #da0000 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #8c0900 0%,
    #da0000 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #8c0900 0%,
    #da0000 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c0900', endColorstr='#da0000',GradientType=0 ); /* IE6-9 */
  color: #fff !important;
  text-shadow: 0px 1px 2px #000;
  letter-spacing: 1px;
  border-color: #b40800;
}
a.red:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#da0000+0,8c0900+100 */
  background: #da0000; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #da0000 0%,
    #8c0900 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #da0000 0%,
    #8c0900 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #da0000 0%,
    #8c0900 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da0000', endColorstr='#8c0900',GradientType=0 ); /* IE6-9 */
}
#promo {
  background-color: #222;
}
#promored {
  background-color: #333;
  font-size: 150%;
}
.white {
  color: #fff;
}
#pg_title {
  box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.3);
  background-color: rgb(195, 138, 36);
}
.pagetitle {
  padding-top: 1.3em;
  padding-bottom: 2.1em;
  margin: 0px;
}
#promo h3,
#promored h3 {
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
#promored h3 {
  letter-spacing: 1px;
  font-size: 2em;
  text-shadow: 1px 1px 4px #000;
}
#promo h3 i {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.comments-area .comment-form .form-submit input:hover,
input[type="submit"]:hover,
.bluebtn.frm_button_submit:hover,
.frm_submit.bluebtn:hover,
.book-form-wrapper .frm_submit.bluebtn:hover,
.book-form-wrapper .bluebtnwrapper button.frm_submit.bluebtn:hover,
.bluebtnwrapper button.frm_button_submit.frm_final_submit.bluebtn:hover,
a.blue:hover,
input[type="submit"]:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c1a472+0,c38a24+100 */
  background: #c1a472; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #c1a472 0%,
    #c38a24 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #c1a472 0%,
    #c38a24 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #c1a472 0%,
    #c38a24 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1a472', endColorstr='#c38a24',GradientType=0 ); /* IE6-9 */
  letter-spacing: 0px;
}
.book-form-wrapper
  .frm_submit.bluebtnwrapper
  .frm_button_submit.frm_final_submit.bluebtn {
  font-size: 24px;
  text-transform: uppercase;
  padding: 12px;
  border: 4px solid #c09346;
  border-radius: 10px;
  margin-bottom: 20px;
}
a.blue span.blue.smalltxt,
a.red span.blue.smalltxt {
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
}
#secondary a.red.rfs {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}
#secondary a.yellow.rfs {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  font-size: 250%;
}
aside a.red.rfs {
  width: 100%;
  text-align: center;
}
#hero-1 h2,
#hero-1 h2.hero-title {
  line-height: 1.3;
  text-align: center;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 48px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
  padding-top: 40px;
}
.transblue {
  background-color: rgba(25, 38, 71, 0.8);
  background-color: rgba(0, 0, 0, 0.6);
}
.a1 {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: right bottom;
  opacity: 0.25;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-size: contain;
}
.transblue ul li {
  list-style-type: none;
  color: #fff;
  font-size: 1.7em;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
  margin: 0.75rem;
  font-weight: bold;
}
.transblue ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  margin-top: -40px;
}
.transblue ul .glyphicon-menu-right {
  font-size: 16px;
  color: #c38a24;
}
.transblue .su-column-size-1-2 ul.smallul {
  float: right;
  margin-top: -47px;
}
#fleetimg {
  background-size: cover;
  background-position: bottom right;
}
#hero-1 {
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
#hero-1 p {
  font-size: 20px;
  color: #fff;
  padding: 10px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}
#service-1 {
  background-position: bottom left;
}
#service-1,
#service-2,
#service-3 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 260px;
  padding: 0px;
  border: 0px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
  max-width: 400px;
  margin: auto;
  margin-bottom: 10px;
}
a.service-block {
  background-color: rgba(218, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 12px 5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-size: 22px;
}
a.service-block:hover {
  background-color: rgba(25, 38, 71, 0.8);
}
#home-body-content {
  background-color: #efefef;
  padding-bottom: 60px;
}
#reviews h2 {
  text-align: center;
  margin-bottom: 10px;
}
#companypanorma {
  background-size: cover;
  background-position: bottom center;
  min-height: 350px;
}
#cta-headline {
  margin-top: 30px;
  text-align: center;
}
#cta-headline h3 {
  color: #090446;
  font-size: 290%;
}
#cta-headline p {
  color: #e58a11;
  font-size: 170%;
}
#product-links {
  background-color: #efefef;
  padding-top: 20px;
  padding-bottom: 20px;
}
.mylinks {
  text-align: center;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.maplinkswrapper {
  background: rgba(255, 255, 255, 0.8);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-shadow: 6px 0 35px rgba(0, 0, 0, 0.2);
}
#product-links iframe {
  box-shadow: 6px 0 35px rgba(0, 0, 0, 0.2);
}
#nf-form-title-1 h3 {
  background-color: #0210f9;
  color: #fff;
  padding-top: 2px;
  padding-bottom: 5px;
  margin-bottom: 0px;
}
.mylinks a.yellow.rfs {
  width: 100%;
  margin-top: 10px;
}
.footer-deal {
  color: #333;
  font-weight: 400;
  font-size: 130%;
  background-color: #fff;
  box-shadow: 0px 0px 5px #222;
  border: 3px dashed #0210f9;
}
.mylinks .footer-deal h3 {
  color: #090446;
  background-color: #fff;
}
.mapbkg {
  background-position: center center;
  background-size: cover;
  min-height: 250px;
}
.map-sub-title {
  font-size: 22px;
  font-weight: Bold;
  margin-top: 20px;
}
.family-check-list {
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin-top: -44px;
  display: block;
}
.family-check-list p,
.family-check-list ul {
  background-color: rgb(195, 138, 36, 0.7);
  width: 100%;
  display: inline-block;
  font-weight: bold;
  padding: 10px;
  margin: 0px;
  color: #fff;
  list-style-type: none;
}
.family-check-list ul li {
  display: inline;
  margin-right: 10px;
}
.footer-deal p {
  font-size: 130%;
  line-height: 1.3;
  text-align: center;
}
.mb-1 {
  margin-bottom: 10px;
}
.mt-1 {
  margin-top: 10px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mt-3 {
  margin-top: 30px;
}
.pt-3 {
  padding-top: 30px;
}
.pt-3 {
  padding-bottom: 30px;
}
.bkgwhite {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 3px #ccc;
}
.page-section {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
#individual-post .row {
  margin-top: -60px;
}
#individual-post,
#maintext {
  background-color: #efefef;
}
#maintext h2 {
  font-weight: 900;
  margin-top: 40px;
}
#maintext h4 {
  margin-bottom: 10px;
}
.summary h3 {
  font-size: 150%;
}
.summary p {
  font-size: 13px;
}
ul.footer-products-list {
  margin-left: 0px;
  margin-top: 0px;
  display: inline-block;
  padding-left: 5px;
  margin-bottom: 0px;
  width: 100%;
}
ul.footer-products-list li {
  list-style-type: none;
  width: 25%;
  float: left;
  margin-left: 0px;
  text-align: center;
  line-height: 1.2;
  height: auto;
}
ul.footer-products-list li a {
  font-size: 13px;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: underline;
  word-break: break-all;
}
ul.sidebar-list-check li:before {
  content: "\2714\0020";
  color: darkgreen;
}
ul.sidebar-list-check {
  list-style-type: none;
}
.nf-field-element input,
.nf-field-element select,
.nf-field-element textarea {
  font-size: 16px;
  padding: 3px;
}
.label-above .nf-field-label {
  margin-bottom: 0px !important;
}
#ninja_forms_required_items,
.nf-field-container {
  margin-bottom: 10px !important;
}
.shadow {
  box-shadow: 0px 0px 15px #333;
}
div [itemprop="address"] {
  font-size: 16px;
  margin-top: 10px;
}
.caps {
  text-transform: capitalize;
}
.taptocall,
.mobileshow {
  display: none;
}
.mobilehide {
  display: inline-block;
}
#header-logo-phone {
  position: relative;
}
#trust-badges img {
  display: inline-block;
  padding: 20px;
  max-height: 165px;
}
#individual-post .bluebkg.row,
#fullwidth-wrapper .bluebkg.row {
  margin-top: 0px;
  background-color: #999;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 20px;
  padding-left: 20px;
  margin-bottom: -20px;
}
.blackbkg {
  background-color: #222;
}
.text-inner {
  padding: 30px 20px 20px 20px;
  max-width: 500px;
  display: inline-block;
}
#checklist .text-inner {
  float: right;
}
#checklist h3,
#reviews h2 {
  text-transform: capitalize;
  font-size: 2.1em;
  margin-top: 15px;
  font-weight: 700;
}
#checklist .eq-blocks {
  margin-bottom: 0px;
}
#checklist .su-carousel-centered {
  margin-top: 25px;
}
#individual-post .bluebkg.row h3,
#fullwidth-wrapper .bluebkg.row h3 {
  color: #fff;
  text-shadow: 0px 0px 4px #000;
  font-size: 2em;
}
.bluebkg .red,
.bluebkg .blue {
  font-size: 18px;
  min-width: 0px;
  margin-top: -7px;
  margin-bottom: 10px;
  padding: 10px 15px;
}
.bluebkg .blue {
  padding-top: 8px;
  padding-bottom: 8px;
}
.blackbkg p,
.blackbkg h3,
.blackbkg h4,
.blackbkg h5,
.blackbkg h6 {
  color: #fff;
}
.blackbkg h2 {
  color: #e8161e;
}
#secondary {
  text-align: center;
}
.location-details img {
  max-height: 300px;
  box-shadow: 0px 0px 5px #ccc;
}
.book-form-wrapper h4,
.book-form-wrapper .frm_style_formidable-style.with_frm_style .form-field {
  margin-bottom: 5px;
}
#mobile-checks ul li,
#mobile-checks ul,
#product-links ul,
#product-links ul li {
  list-style-type: none;
  font-size: 23px;
}
#product-links ul li {
  font-size: 20px;
  text-align: center;
}
#mobile-checks ul {
  margin-bottom: 15px;
}
#mobile-checks h3 {
  text-align: center;
}
.mid-list-mobile-img {
  margin-top: 15px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 10px #444;
  border: 1px solid #ccc;
  border-radius: 10px;
}
#secondary a.red {
  width: 100%;
}
#mobile-person .pd-1 {
  padding: 10px;
}
#mobile-person {
  background-color: rgb(195, 138, 36);
}
#mobile-person p,
#mobile-person h4,
#mobile-person h3,
#mobile-person h2,
#mobile-person h5,
#mobile-person h6 {
  color: #fff;
}
#mobile-person img {
  border-radius: 10px;
  border: 1px solid #ccc;
}
body.page-template-page-neighborhood #mobile-person {
  background-color: #333;
}
.book-form-wrapper
  .frm_style_formidable-style.with_frm_style
  label.frm_primary_label {
  font-size: 1px;
  padding: 0px;
  line-height: 4px;
}
.book-form-wrapper
  .frm_submit.bluebtnwrapper
  .frm_button_submit.frm_final_submit.bluebtn {
  display: block;
  margin: 10px auto 5px auto;
}
.frm_style_formidable-style.with_frm_style input[type="text"],
.frm_style_formidable-style.with_frm_style input[type="password"],
.frm_style_formidable-style.with_frm_style input[type="email"],
.frm_style_formidable-style.with_frm_style input[type="number"],
.frm_style_formidable-style.with_frm_style input[type="url"],
.frm_style_formidable-style.with_frm_style input[type="tel"],
.frm_style_formidable-style.with_frm_style input[type="file"],
.frm_style_formidable-style.with_frm_style input[type="search"],
.frm_style_formidable-style.with_frm_style select {
  margin-bottom: 4px;
}
.clearall {
  clear: both;
}
.mobileonly {
  display: none;
}
.text-xs-left {
  text-align: left;
}
.text-xs-right {
  text-align: right;
}
.text-xs-center {
  text-align: center;
}
.text-xs-justify {
  text-align: justify;
}
.logo-menu .container {
  width: 100% !important;
}
.couponbig {
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 15px #ccc;
  border: dashed 2px #999;
}
#fullwidth-wrapper {
  background-color: #efefef;
}
#fullwidth-wrapper .frm_forms {
  max-width: 500px;
  margin: auto;
  margin-bottom: 40px;
}
#reviews .container-fluid .row {
  max-width: 100%;
  margin: 0px;
  padding: 0px;
}
#reviews {
  background-color: #efefef;
}
body.home #reviews,
body.error404 #reviews {
  background-color: #fff;
}
#tap-text-btns {
  position: fixed;
  bottom: 4px;
  width: 100%;
  z-index: 99999;
}
#tap-text-btns div {
  padding: 0px;
}
#tap-text-btns a.red,
#tap-text-btns a.blue {
  min-width: 50px;
  font-size: 23px;
  width: 100%;
  padding: 10px 5px;
  line-height: 1;
}
#tap-text-btns .red {
  border-radius: 8px 0px 0px 8px;
}
#tap-text-btns .blue {
  border-radius: 0px 8px 8px 0px;
}
.mobilePhSmall {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.su-carousel .su-carousel-slide img {
  border: 1px dashed #999 !important;
  border-radius: 0px !important;
}
.su-carousel {
  max-width: 430px;
}
.fineprint {
  font-size: 11px;
  text-align: center;
  color: #ccc;
}
header {
  overflow: hidden;
}
.footers p {
  font-size: 15px;
}
.footers h4 {
  margin-top: 0px;
}
.noPadding {
  padding: 0px;
}
.checklist {
  width: 414px;
  max-width: 100%;
}
.checklist2 {
  max-width: 100%;
  width: 467px;
}
#middletxt p {
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
  .navbar-nav > li {
    float: none;
    display: inline-block;
  }
  .navbar-nav {
    float: none;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
  #middletxt h3 {
    font-size: 200%;
    margin-top: 20px;
  }
  #middletxt p {
    font-size: 160%;
    margin-bottom: 0px;
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  #header-logo-phone .container {
    width: 100% !important;
  }
  h1 {
    font-size: 2em;
  }
  header .navbar-default .navbar-nav > li > a {
    padding: 15px 10px;
  }
  header .logo-tag h1 {
    font-size: 1em;
    margin-top: 15px;
  }
  header .logo-tag h2 {
    font-size: 0.5em;
    letter-spacing: 1px;
  }
  .theme-slider .carousel-inner .item .slide-caption .summary {
    font-size: 1.25em;
    line-height: 20px;
  }
  .welcome {
    height: 358px;
  }
  #header-logo-phone .container a.red {
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) {
  section.footers ul {
    margin-left: 30%;
  }
  .family-check-list {
    margin-top: 0px;
  }
  .family-check-list ul li {
    display: inline-block;
  }
  .transblue .su-column-size-1-2 ul.smallul,
  .transblue .su-column-size-1-2 ul {
    float: none;
    margin-left: 5%;
  }
  #hero-1 .su-column {
    margin-bottom: -30px !important;
    margin-top: -30px !important;
  }
  #hero-1 p {
    font-size: 2px;
  }
  #fleetimg {
    min-height: 200px;
    margin-top: 30px;
  }
  ul.footer-products-list li {
    width: 33%;
  }
  header .navbar-default .navbar-nav > li > a {
    padding: 5px 30px;
  }
  header .navbar-nav {
    display: inline-block;
    margin-top: 0;
  }
  header .navbar-nav .dropdown-menu {
    margin-left: 5px;
    display: none !important;
  }
  header .navbar-nav .open .dropdown-menu {
    display: block !important;
  }
  h4 {
    margin-bottom: 10px;
  }
  .logo-tag {
    margin-left: 15px;
  }
  .navbar-default .navbar-toggle {
    position: absolute;
    right: 0;
    border: none;
    border-radius: 0;
    margin-top: 3px;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border: none;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: maroon;
  }
  .main-search {
    display: none;
  }
  .theme-slider .carousel-inner .item .slide-caption {
    position: static;
    background: #333;
    padding: 15px 0;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 155px;
  }
  .theme-slider .carousel-inner .item .slide-caption .summary {
    font-size: 1em;
    line-height: 15px;
  }
  .theme-slider .carousel-inner .item .slide-caption .slide-caption-details {
    width: 100%;
  }
  .theme-slider .carousel-control {
    display: none;
  }
  .spacer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .spacersm {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .welcome {
    height: inherit;
  }
  .welcome .message {
    height: 150px;
  }
  .post-list .post-block {
    height: auto;
  }
  ul {
    margin: 0;
    padding-left: 15px;
  }
  #hero-1 h2,
  #hero-1 h2.hero-title {
    font-size: 32px;
    line-height: 1.1;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
    margin: 10px auto 25px;
  }
  .bkgwhite,
  #individual-post .row {
    padding: 0px;
  }
  .xs-hide {
    display: block;
  }
  .mobileshow {
    display: inline-block;
  }
  .mobilehide,
  .moblieonly {
    display: none;
  }
  #header-logo-phone {
    position: relative;
    top: 0px;
    z-index: 9999;
  }
  #logo-menu {
    position: relative;
    top: 0px;
    z-index: 9999;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  }
  #secondary a.red {
    width: auto;
  }
  #header-logo-phone .container a.red {
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: 0px;
  }
  #companypanorma {
    min-height: 100px;
  }
  .family-check-list {
    margin-top: 0px;
  }
  .family-check-list ul li {
    display: inline-block;
  }
  #secondary a.red {
    width: auto;
  }
  ul.footer-products-list li {
    width: 50%;
  }
  .logo-tag a img {
    width: 100%;
  }
  .xs-mt-0 {
    margin-top: 0px;
  }
  .xs-hide {
    display: none !important;
  }
  .mobileonly {
    display: block !important;
  }
  #middletxt p.mobileonly {
    margin-bottom: 10px !important;
    margin-block-start: 0px;
    margin-block-end: 0px;
    text-transform: capitalize;
  }
  #middletxt img {
    width: 270px;
    margin-top: -5px;
    margin-left: auto;
    margin-right: auto;
  }
  .mobilelg {
    clear: both;
    font-size: 150%;
    font-weight: 900;
    text-transform: uppercase;
  }
  #hero-1 h2,
  #hero-1 h2.hero-title {
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: initial;
  }
  #promo .spacer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #hero-1 .spacer {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #hero-1 .red,
  #hero-1 .blue {
    margin-bottom: 10px;
  }
}
@media (max-width: 766px) {
  .mobile-center {
    text-align: center;
  }
  #header-logo-phone h3 .xs-hide {
    display: none;
  }
  #header-logo-phone .mt-3 {
    margin-top: 0px !important;
  }
  .transblue ul {
    margin-top: 0px;
  }
}
@media (max-width: 540px) {
  body {
    padding-bottom: 80px;
  }
  #middletxt h3 {
    font-size: 1.2em;
  }
  #middletxt p {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1;
    margin-top: 3px;
  }
}
.rotate {
  display: none;
}
#hero-1 {
  background-image: url("../images/home1.jpg");
}
.tap-text-phone-icon {
  float: left;
  margin-left: 30px;
  margin-right: -30px;
}
.tap-text-calendar-icon,
.tap-text-save-icon {
  margin-top: -5px;
  margin-right: 5px;
}
#tap-text-btns .red,
#tap-text-btns .blue {
  border-radius: 5px;
}
.p-tap {
  padding: 3px !important;
}
.desktopupper {
  text-transform: uppercase;
}
#tap-text-btns .blue {
  font-size: 19px !important;
}
article,
.su-column-inner {
  font-size: 16px;
}
section.footers a,
section.footers p {
  color: #ddd;
}
.footers h3.widget-title {
  text-align: center;
}
.footers ul {
  text-align: center;
  list-style-type: none;
  margin-left: 0px;
  padding-left: 0px;
}
#companypanorma {
  background-position: center center;
}
body.page-template-fullwidth .bluebkg.align-bottom.row,
body.page-template-fullwidth #trust-badges,
body.page-template-fullwidth #promored,
body.page-template-fullwidth #companypanorma,
body.page-template-fullwidth #product-links {
  display: none;
}
#mobile-person p {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  margin: 20px 0px 0 0px;
}
a.service-block,
.family-check-list p,
.family-check-list ul {
  background-color: rgba(25, 38, 71, 0.8);
}
a.service-block:hover,
#mobile-person {
  background-color: rgba(25, 38, 71, 1);
}
.footerlogo {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}
body.page-template-page-new #pg_title,
body.page-template-page-repair #pg_title,
body.page-template-page-openers #pg_title,
body.page-template-page-maintenance #pg_title {
  padding-top: 10px;
  padding-bottom: 40px;
}
#pg_title h1 span {
  text-transform: uppercase !important;
}
#service-1,
#service-2,
#service-3,
#service-4 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 200px;
  padding: 0px;
  border: 0px;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 60%);
  max-width: 300px;
  margin: auto;
  margin-bottom: 10px;
}
header .navbar-default,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
#pg_title {
  background-color: #3d6198;
}
#pg_title h1 {
  color: #fff;
}
.eq-blocks {
  margin-bottom: 0px;
}
#reviews img {
  box-shadow: 0px 0px 10px #ccc;
  border-radius: 10px;
  padding: 10px;
}
#middletxt p {
  margin-bottom: 5px;
}
#middletxt h3 {
  margin-top: 0px;
}
a.blue,
.bluebtn,
.comments-area .comment-form .form-submit input,
.frm_style_formidable-style-2.with_frm_style .frm_submit button,
input[type="submit"],
.bluebtn.frm_button_submit,
.frm_submit.bluebtn,
.frm_button_submit.frm_final_submit.btn.red {
  background: #1b3d6d;
  background: -moz-linear-gradient(top, #1b3d6d 0%, #5e84c1 100%);
  background: -webkit-linear-gradient(top, #1b3d6d 0%, #5e84c1 100%);
  background: linear-gradient(to bottom, #1b3d6d 0%, #5e84c1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1b3d6d', endColorstr='#5e84c1',GradientType=0 );
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #fff !important;
  text-shadow: 0px 1px 2px #000;
  font-size: 32px;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 60%);
  line-height: 0.7;
  padding: 15px 15px 15px;
  border-radius: 30px;
  border: 6px solid #3d6198;
  transition: background 0.5s;
}
.frm_form_fields {
  padding: 10px;
}
a.blue:hover,
.frm_button_submit.frm_final_submit.btn.red:hover,
.bluebtn:hover,
.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover,
input[type="submit"]:hover {
  transition: background 0.5s;
  color: #fff !important;
  border: 6px solid #3d6198;
  background: #5e84c1;
  background: -moz-linear-gradient(top, #5e84c1 0%, #1b3d6d 100%);
  background: -webkit-linear-gradient(top, #5e84c1 0%, #1b3d6d 100%);
  background: linear-gradient(to bottom, #5e84c1 0%, #1b3d6d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e84c1', endColorstr='#1b3d6d',GradientType=0 );
}
.frm_button_submit.frm_final_submit.btn.red {
  letter-spacing: 1px;
  font-size: 24px;
  padding-left: 20px;
  padding-right: 20px;
  border-width: 3px;
  border-radius: 15px;
}
.frm_button_submit.frm_final_submit.btn.red:hover {
  border-width: 3px;
}
#hero-1 h3 {
  color: #fff !important;
  margin-bottom: 0px;
  font-size: 23px;
}
#hero-1 .book-form-wrapper {
  margin-top: 20px;
  background-color: #002457;
  border-color: #1f4378;
  border-width: 4px;
  padding: 15px 0px 0px 0px; /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3d6198+0,002457+100 */
  background: #3d6198; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #3d6198 0%,
    #002457 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #3d6198 0%,
    #002457 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #3d6198 0%,
    #002457 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d6198', endColorstr='#002457',GradientType=0 ); /* IE6-9 */
}
.coup {
  border: 2px dashed #777;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 17px #aaa;
  margin-top: 20px;
}
ul.footer-products-list li {
  width: 100% !important;
}
ul.footer-products-list {
  column-count: 4;
}
body.page-template-page-commercial #pg_title {
  padding-bottom: 30px;
}
@media (min-width: 2265px) {
  ul.footer-products-list {
    column-count: 8;
  }
}
@media (min-width: 1276px) {
  ul.footer-products-list {
    column-count: 6;
  }
}
@media (min-width: 956px) {
  ul.footer-products-list {
    column-count: 5;
  }
}
@media (max-width: 767px) {
  .mobilelg {
    display: block;
  }
  #trust-badges img {
    padding: 0px;
    margin-top: 5px;
  }
  ul.footer-products-list {
    column-count: 3;
  }
}
@media (max-width: 500px) {
  #middletxt img {
    padding-left: 15px;
    padding-right: 15px;
  }
  ul.footer-products-list {
    column-count: 2;
  }
}
@media (max-width: 440px) {
  .mobilelg {
    font-size: 120%;
  }
  ul.footer-products-list {
    column-count: 2;
  }
}
@media (max-width: 340px) {
  .mobilelg {
    font-size: 100%;
  }
}
@media (max-width: 290px) {
  .mobilelg {
    font-size: 80%;
  }
}
.mt-5 {
  margin-top: 50px;
}
.sub-heading {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}
.benefits-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  text-align: left;
  line-height: 1.6;
}
.benefits-list img {
  width: 30px;
}
.benefits-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.benefits-list li div {
  padding: 10px 0 0 10px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.bg-white {
  background: white;
}
.w-full {
  width: 100%;
}
