@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,700,100italic,300italic,400italic,700italic);

body {
  --color-red: #ed1d24;
  padding-top: 66px;
  background: #fff;
  font-family: 'Roboto-regular', sans-serif;
  font-weight: 300;
  color: #000000; font-size:15px;
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Roboto-regular', sans-serif;
  color: #272727;
}

@font-face {
	font-family: 'Roboto-regular';
	src: url('../fonts/Roboto-Regular.eot');
	src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Regular.woff') format('woff'),
		url('../fonts/Roboto-Regular.ttf') format('truetype'),
		url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-light';
	src: url('../fonts/Roboto-Light.eot');
	src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Light.woff') format('woff'),
		url('../fonts/Roboto-Light.ttf') format('truetype'),
		url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-thin';
	src: url('../fonts/Roboto-Thin.eot');
	src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Thin.woff') format('woff'),
		url('../fonts/Roboto-Thin.ttf') format('truetype'),
		url('../fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-medium';
	src: url('../fonts/Roboto-Medium.eot');
	src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Medium.woff') format('woff'),
		url('../fonts/Roboto-Medium.ttf') format('truetype'),
		url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
}

.Light49{ font-family:'Roboto-thin'; font-size:49px;}
a {
  color: #45aed6;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #2a95be;
}
hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}
.gradiant {
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}
.gradiant-horizontal {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}
.section-header {
  margin-bottom: 50px;
}
.section-header .section-title {
  font-size: 36px;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;font-family:'Roboto-medium';font-weight:500;
}

.section-header .section-title:before {
  content: "";
  position: absolute;
  width: 140px;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
  height: 1px;
  background: #c02626;
}
.section-header .section-title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: #c02626;
}

.section-header2 .section-title2 {
  color: #fff;
}
.btn {
  border-width: 0;
  border-bottom-width: 3px;
  border-radius: 3px;
}
.btn.btn-primary {
  background: #000000;
  border-color: #000000; border-radius:25px;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #e84a00;
}
.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #45aed6;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #45aed6;
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}


@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
    }
}



@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*************************
*******Header******
**************************/
/* #header{
  border: 5px solid red;
} */
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0; background:#fff;
}
.navbar.navbar-default .navbar-toggle {
  margin-top: 32px;
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 0px 15px 0px;
}
@media only screen and (min-width: 768px) {
  #main-menu.navbar-default {
    background: rgba(255, 255, 255, 1) url(../images/paintColors2.jpg) no-repeat 0 0;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 20px; font-size:16px;font-family: 'Roboto-regular'; font-weight:normal;
  }
  #main-menu.navbar-default .navbar-nav > li.active > a,
  #main-menu.navbar-default .navbar-nav > li.open > a,
  #main-menu.navbar-default .navbar-nav > li:hover > a {
    background: transparent;
    border-top: 0px solid #c02626; color:#c02626;
  }
  #main-menu.navbar-default .dropdown-menu {
    padding: 0 20px;
    min-width: 220px;
    background-color: rgba(26, 28, 40, 0.9);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
  }
  #main-menu.navbar-default .dropdown-menu > li {
    border-left: 3px solid transparent;
    margin-left: -20px;
    padding-left: 17px;
    -webit-transition: border-color 400ms;
    transition: border-color 400ms;
  }
  #main-menu.navbar-default .dropdown-menu > li > a {
    border-top: 1px solid #404455;
    padding: 15px 0;
    color: #eeeeee;
  }
  #main-menu.navbar-default .dropdown-menu > li:first-child > a {
    border-top: 0;
  }
  #main-menu.navbar-default .dropdown-menu > li.active,
  #main-menu.navbar-default .dropdown-menu > li.open,
  #main-menu.navbar-default .dropdown-menu > li:hover {
    border-left-color: #45aed6;
  }
  #main-menu.navbar-default .dropdown-menu > li.active > a,
  #main-menu.navbar-default .dropdown-menu > li.open > a,
  #main-menu.navbar-default .dropdown-menu > li:hover > a {
    color: #45aed6;
    background-color: transparent;
  }
}
#main-slider {
  overflow: hidden;
}
#main-slider .item {
  height: 700px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main-slider .slider-inner h2 {
  margin-top: 247px;
  font-size: 40px;
  line-height: 1;
  /* text-transform: capitalize; font-family:'Roboto-thin'; */
  font-family:'Roboto-thin';
  color: #fff; text-align:center;
}

#main-slider .slider-inner p {
  margin-top: 20px;
  font-size: 16px;
  line-height:25px;
  /* text-transform: capitalize; font-family:'Roboto-regular'; */
  font-family:'Roboto-regular';
  color: #fff; text-align: center;
}

#main-slider .slider-inner h2 > span {
  color: #45aed6;
}
#main-slider .slider-inner .btn {
  margin-top: 20px; background:transparent; border:3px solid #c02626; border-radius:30px;
}
#main-slider .slider-inner .btn.btn-primary{ padding:10px 46px; font-size:22px;}
#main-slider .slider-inner .btn.btn-primary:hover{ background:#c02626;}
#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 30px;
  display: inline-block;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 100px;
  z-index: 5;
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
}
#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: #45aed6;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}
#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #45aed6;
}
#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

#features {
  padding: 100px 0;
}
#features .media.service-box:first-child {
  margin-top: 80px;
}
#services {
  padding: 87px 0 87px;
  background:#ff9d70;
  background-size: auto;
  /* padding: 84px 0 70px 0px; background:#c4f0fb; */
}
.media.service-box {
  margin: 25px 0; text-align:center;
}


.media.service-box .pull-left {
  width:100%; padding-bottom:25px;
}
.media.service-box .pull-left > i {
  font-size: 42px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  border-radius: 100%;
  color: #4c4c4c;
  -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}
.media.service-box .pull-left > i:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: -10px;

}

.media-body h4{ margin-bottom:15px; font-family:'Roboto-light'; font-size:22px; color:#000000;}
.media-body p{ line-height:20px;}
.media.service-box:hover .pull-left > i {
/*  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
*/  color: #000;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}
#portfolio {
  padding: 87px 0;
  background: #f5f5f5;
}
#portfolio .portfolio-filter {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  display: inline-block;
}
#portfolio .portfolio-filter > li {
  float: left;
  display: block;
}
#portfolio .portfolio-filter > li a {
  display: block;
  padding: 7px 15px;font-family: 'Roboto-regular';
  color: #64686d;
  position: relative;
}
#portfolio .portfolio-filter > li a:hover,
#portfolio .portfolio-filter > li a.active {
  background: #c02626;
  color: #fff;
 /* box-shadow: 0 -3px 0 0 #318daf inset;
  -webkit-box-shadow: 0 -3px 0 0 #318daf inset;*/
}
/*#portfolio .portfolio-filter > li a.active:after {
  content: " ";
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #318daf transparent transparent transparent;
}*/
#portfolio .portfolio-filter > li:first-child a {
  border-radius: 0px 0 0 0px;
}
#portfolio .portfolio-filter > li:last-child a {
 /* border-radius: 0 4px 4px 0;*/
}
#portfolio .portfolio-items {
  margin: -15px;
}
#portfolio .portfolio-item {
  width: 24.9%;
  float: left;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#portfolio .portfolio-item .portfolio-item-inner {
  position: relative;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info {
  opacity: 0;
  transition: opacity 400ms;
  -webkit-transition: opacity 400ms;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info h3 {
  font-size: 16px;
  line-height: 1;
  margin: 0;
  color: #fff;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info .preview {
  position: absolute;
  top: -18px;
  right: 12px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  -webkit-box-shadow: 0 0 0 2px #fff;
}
#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
#testimonial {
  background-size: cover;
  padding: 87px 0 80px 0;

}
#testimonial h4 {
  color: #fff;
  margin-bottom: 0;
}
#testimonial small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}
#testimonial .btns {
  margin-top: 10px;
}

#testimonial .col-sm-6{border-bottom:1px solid #f4f4f4; border-right:1px solid #f4f4f4; padding-bottom:20px;}
#testimonial .col-sm-6:nth-child(2n+0){border-right:0px solid #f4f4f4;}
#testimonial .col-sm-6:nth-child(3), #testimonial .col-sm-6:nth-child(4){border-bottom:0px solid #06F;}
#testimonial .panel-one{ padding-bottom:20px; padding-top:20px; float:left; height:200px; overflow:hidden;}
#testimonial .user-img{ width:25%; margin-right:15px; float:left;}
#testimonial .user-img img{ border-radius:50%; border:4px solid #e5e5e5; width:100%;}

#testimonial .testi-info{ width:66%; float:left;}
#testimonial .testi-info h4{ font-size:18px; color:#000000; margin:0px; padding-top:15px;}
#testimonial .testi-info h5{ font-size:14px; color:#000000; margin:0px; padding-bottom:10px; font-weight:normal;}
#testimonial .testi-info p{ font-size:15px; color:#000000; line-height:20px;}






#meet-team {
  padding: 87px 0 87px 0;
}
#meet-team .team-member {
  padding: 13px;
  background: #eeeeee;
  border: 2px solid #eeeeee;
  transition: border-color 400ms;
  -webkit-transition: border-color 400ms;
}
#meet-team .team-member .team-img {
  margin: -15px -15px 0 -15px;
}


#meet-team .team-member .team-info {
/*  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 10px;*/
}

.team-info h3{ margin-bottom:0px;}

#meet-team .team-member:hover {
  border-color: #45aed6;
}
#meet-team .team-member:hover .social-icons > li > a {
  background: #45aed6;
}
#meet-team .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}
#meet-team .social-icons > li {
  display: inline-block;
}
#meet-team .social-icons > li > a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #222534;
  border-radius: 3px;
}
.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: -moz-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -webkit-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -ms-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  width: 95%;
  height: 1px;
}
.progress {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #eeeeee;
}
.progress .progress-bar.progress-bar-primary {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.nav.main-tab {
  background: #eee;
  border-bottom: 3px solid #222534;
  border-radius: 3px 3px 0 0;
}
.nav.main-tab > li > a {
  color: #272727;
}
.nav.main-tab > li.active > a {
  background: #222534;
  color: #45aed6;
}
.nav.main-tab > li:first-child > a {
  border-radius: 3px 0 0 0;
}
.nav.main-tab > li:last-child > a {
  border-radius: 0 3px 0 0;
}
.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}
.panel-default {
  border-color: #eee;
}
.panel-default > .panel-heading {
  background-color: #fff;
  border-color: #eee;
}
.panel-default > .panel-heading .panel-title {
  font-size: 14px;
  font-weight: normal;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #eee;
}
#animated-number {
  padding: 87px 0 87px;
  background: #132125; 
  background-size: cover;
  color: #fff;
}
#animated-number h1,
#animated-number h2,
#animated-number h3,
#animated-number h4 {
  color: #fff;
}
#animated-number strong {
  display: block;
  margin-bottom: 30px; font-size:22px; font-family: 'Roboto-light'; text-transform:capitalize;
}
.animated-number {
  display: inline-block;font-family: 'Roboto-medium';
  width: 180px;
  height: 180px;
  font-size: 29px;
  line-height: 180px;
  border: 5px solid #fff;
  border-radius: 100px;
  margin-bottom: 20px;
}
#pricing {
  padding: 84px 0 70px 0px; background:#01abaa;
}

#pricing ul.pricing {
  list-style: none;
  padding: 0;
  margin: 10px 0 30px;
  border: 1px solid #eee;
  border-radius: 5px 5px 4px 4px;
  padding: 15px;
  text-align: center; background: #fff; box-shadow:1px 1px 1px rgba(0,0,0,0.1);
}
#pricing ul.pricing:hover{box-shadow:0px 4px 12px rgba(0, 0, 0, 0.2); transition:all 0.3s ease 0s;}

#pricing ul.pricing li {
  display: block; font-size:18px;
  padding: 5px 10px; background: #fff;
}
#pricing ul.pricing li.plan-header {
 
  border-radius: 4px 4px 0 0;
  margin: -15px -15px 10px;
  padding: 15px 15px 30px;
  border: 0;
}
#pricing ul.pricing li.plan-header .price-duration {
  position: relative;
  margin-top: -63px;
  top: -10px;
  display: inline-block;
  width: 116px;
  height: 116px;
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  color: #fff;
  border-radius: 100px;
  border: 5px solid #f6f6f6;
}
#pricing ul.pricing li.plan-header .price-duration > span {
  display: block;
  line-height: 1;
}
#pricing ul.pricing li.plan-header .price-duration > span.price {
  font-size: 24px;
  font-weight: 700;
  margin-top: 35px;
}
#pricing ul.pricing li.plan-header .price-duration > span.duration {
  margin-top: 5px;
}
#pricing ul.pricing li.plan-header .plan-name {
  margin-top: 10px;
  font-size: 20px;font-family:'Roboto-medium';
  color: #272727;
  font-weight: normal;
  line-height: 2;
  text-transform: uppercase;
}

#pricing ul.pricing li.plan-header .plan-price {
  margin-top: 10px;
  font-size: 60px;
  color: #000000;
  font-weight:600;
  line-height: 1; font-family:'Roboto-regular';
  text-transform: uppercase;
}

#pricing ul.pricing li.plan-purchase .btn-primary { background:#c02626; border-radius:30px; margin-top:25px; padding:15px 25px 10px; font-size:18px; font-family:'Roboto-medium';}

#pricing ul.pricing li.plan-header .plan-price span{ font-size:18px; display:block; text-align: center; text-transform:lowercase; font-weight:normal;}

#pricing ul.pricing.featured {
  background: #222534;
  color: #fff;
  border: 0;
}
#pricing ul.pricing.featured li.plan-header {
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}
#pricing ul.pricing.featured li.plan-header .plan-name {
  color: #fff;
}
#get-in-touch {
  padding: 60px 0 50px;
  color: #000000; background:#fedc3d;
}
#get-in-touch h1,
#get-in-touch h2 {
  color: #000000;
}
#get-in-touch .address{ float:left; width:100%; margin-bottom:25px;}
#get-in-touch .address h4{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#get-in-touch .address p{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#get-in-touch .address a{ color:#000000;}

#get-in-touch .form-control{ height:40px;font-family: 'Roboto-regular'; color:#323232;}
#get-in-touch  textarea.form-control{ height:135px;color:#323232;}

#get-in-touch .btn.btn-primary{font-family: 'Roboto-medium'; font-size:22px; padding:8px 40px;}

#our-promise {
  padding: 60px 0 50px;
  color: #000000; background:#FFB72B;
}
#our-promise h1,
#our-promise h2 {
  color: #000000;
}
#our-promise .address{ float:left; width:100%; margin-bottom:25px;}
#our-promise .address h4{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#our-promise .address p{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#our-promise .address a{ color:#000000;}

#our-promise .form-control{ height:40px;font-family: 'Roboto-regular'; color:#323232;}
#our-promise  textarea.form-control{ height:135px;color:#323232;}

#our-promise .btn.btn-primary{font-family: 'Roboto-medium'; font-size:22px; padding:8px 40px;}

#the-process {
  padding: 60px 0 50px;
  color: #000000; background:#B5FE83;
}
#the-process h1,
#the-process h2 {
  color: #000000;
}
#the-process .address{ float:left; width:100%; margin-bottom:25px;}
#the-process .address h4{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#the-process .address p{ font-size:16px; color:#000000; margin:0px; padding-bottom:5px;}
#the-process .address a{ color:#000000;}

#the-process .form-control{ height:40px;font-family: 'Roboto-regular'; color:#323232;}
#the-process  textarea.form-control{ height:135px;color:#323232;}

#the-process .btn.btn-primary{font-family: 'Roboto-medium'; font-size:22px; padding:8px 40px;}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

#blog {
  padding: 87px 0 87px 0; background:#f6f6f6; overflow:hidden;
}

#blog .blog-post {
  padding: 15px; background:#fff; 
}
#blog .blog-post .item {
  height: 200px; }

#owl-example .item{ margin:15px;}



#blog .blog-post .post-format {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #222534;
  border: 3px solid #fff;
  border-radius: 100px;
}
#blog .blog-post.blog-large .entry-thumbnail {
  margin: -15px -15px 15px;
  position: relative;
}
#blog .blog-post.blog-large .entry-thumbnail img{ max-width:100%;}

#blog .blog-post.blog-large .post-format {
  width: 66px;
  height: 66px;
  line-height: 60px;
  position: absolute;
  right: 20px;
  bottom: -33px;
}
#blog .blog-post.blog-large .post-format > i {
  font-size: 20px;
}
#blog .blog-post.blog-large .entry-date {
  font-size: 12px;font-family: 'Roboto-regular';
  display: block;
  margin-bottom: 5px; text-align:center;
  text-transform: uppercase;
  color: #45aed6;
}
#blog .blog-post.blog-large .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}
#blog .blog-post.blog-large .entry-title a {
  color: #64686d; font-size:18px; text-transform:uppercase; font-weight:normal; font-family: 'Roboto-medium';
}
#blog .blog-post.blog-large .entry-title a:hover {
  color: #45aed6;
}
#blog .blog-post.blog-media {
  margin-bottom: 30px;
}
#blog .blog-post.blog-media .entry-thumbnail {
  margin: -15px 15px -15px -15px;
  position: relative;
}
#blog .blog-post.blog-media .post-format {
  position: absolute;
  top: 20px;
  right: -10px;
}
#blog .blog-post.blog-media .entry-date {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #45aed6;
}
#blog .blog-post.blog-media .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}
#blog .blog-post.blog-media .entry-title a {
  color: #64686d;
}
#blog .blog-post.blog-media .entry-title a:hover {
  color: #45aed6;
}
#blog .blog-post .entry-meta {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
#blog .blog-post .entry-meta > span {
  display: inline-block;
  margin-right: 10px;
  color: #999;
}
#blog .blog-post .entry-meta > span > a {
  color: #999;
}
#blog .blog-post .entry-meta > span > a:hover {
  color: #45aed6;
}
#blog .btn.btn-primary{ font-family: 'Roboto-regular'; font-size:15px; margin-top:20px; padding:10px 30px;}
#contact {
  position: relative;
  overflow: hidden;
}
#contact .container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 174, 214, 0.3);
  z-index: 1;
}
#contact .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-top: 50px;
}
#contact .contact-form h3 {
  margin-top: 0;
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  background: #000000;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #45aed6;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
#footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}
@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}
@media (min-width: 768px) and (max-width:999px) {
	#main-menu.navbar-default .navbar-nav > li > a{ padding-left:8px; padding-right:8px; font-size:15px;}
	#meet-team .team-member{ margin-bottom:25px;}
	#meet-team .team-member .team-img, #meet-team .team-member .team-info h3 { text-align:center;}
	#meet-team .team-member .team-info span { text-align:center; display:block;}
	
	}

@media (max-width:767px) {
	#meet-team .team-member{ margin-bottom:25px;}
	#meet-team .team-member .team-img, #meet-team .team-member .team-info h3 { text-align:center;}
	#meet-team .team-member .team-info span { text-align:center; display:block;}
	#blog .blog-post{ margin-bottom:20px;}

	}
	
@media (max-width:500px){
	#blog .blog-post.blog-large .entry-thumbnail img, .team-img img{ width:100%;}
	.animated-number{ height:130px; width:130px; line-height:130px; font-size:22px;}
	#animated-number strong{ font-size:17px;}
	#blog .blog-post.blog-large .entry-thumbnail{ padding-top:0px;}
	}

  .flex {
    margin: auto;
    max-width: 1200px;
  }
  
  img {
    border-style: none;
  }
  
  .flex img,
  .flex div {
    margin: 0.2em;
    cursor: pointer;
    border-radius: 2px;
    max-width: calc(50% - 12px);
    box-shadow: 0px 0.1em 0.7em rgba(0, 0, 0, 0.2);
  }
  
  .flex div {
    display: inline-block;
    margin: 5px;
    /*max-width: calc(50% - 12px);*/
  }
  
  #local_image_container img {
    /* max-height: 90px; */
    /* height: 100px;
    width: 175px; */
    width: 150px;
  }

  /* ----- */

.vid {
	height: 100px;
	width: 175px;
	position: relative;
	background-position: center center;
	background-size: cover;
}

.vid:before,
.vid:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transition: opacity 0.2s;
}

.vid:after {
	background-repeat: no-repeat;
	background-position: 0.7em 0.7em;
	opacity: 0.5;
	background-size: 2em;
}

.vid:before {
	background: linear-gradient(150deg, #000, transparent 70%);
	opacity: 0.9;
}

.vid:hover:after {
	opacity: 0.8;
}

.vid:hover:before {
	opacity: 0.8
}


/* .iframevid:after, .youtube:after {
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20159.00691%20111.60904%22%3E%3Cpath%20d%3D%22M36.2%20111c-25-1.3-29.6-4-34-18.6C.3%2086.7%200%2080%200%2057.4%200%2019%202.3%209.7%2013.6%204c11.5-5.6%20120-5.6%20131.4%200%206%203%2010%208.7%2011.8%2017.2%202%209.8%203%2042.2%201.5%2057.5-2%2020.4-7%2028.5-19.2%2030.8-7.6%201.5-82%202.4-102.8%201.3zM85%2065.3c11.3-6%2020.4-11%2020.3-11L84%2043%2063%2032v22c0%2012%20.4%2022%20.8%2022%20.3%200%2010-5%2021.2-10.8z%22%20fill%3D%22%23db2823%22%2F%3E%3Cpath%20d%3D%22M63.2%2032c-.4.3-.2%201-.3%201.3v28.5c0%204.6%200%209.2.5%2013.8%200%20.4.3.7.6.5%206.3-3%2012.3-6%2018.4-9.3%207.5-4%2015-7.8%2022.2-12%20.3%200%201-.4.6-.8-12.8-7-25.7-13.5-38.6-20.2-1-.6-2.2-1.3-3.4-1.7z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
  background-size: 2.5em;

  
} */
/* .vid {
  height: 200px;
  width: 350px;
  position: relative;
  background-position: center center;
  background-size: cover;
} */

.iframevid:after, .restorationLabel:after {
  
	/* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23E34F26%22%20d%3D%22M71%20460L30%200h451l-41%20460-185%2052%22%2F%3E%3Cpath%20fill%3D%22%23EF652A%22%20d%3D%22M256%20472l149-41%2035-394H256%22%2F%3E%3Cpath%20fill%3D%22%23EBEBEB%22%20d%3D%22M256%20208h-75l-5-58h80V94H114l1%2015%2014%20156h127zm0%20147h-1l-63-17-4-45h-56l7%2089%20116%2032h1z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M255%20208v57h70l-7%2073-63%2017v59l116-32%201-10%2013-149%202-15h-16zm0-114v56h137l1-12%203-29%201-15z%22%2F%3E%3C%2Fsvg%3E'); */
  /* background-image: url("images/portafolio/video/videorestthubnail.jpg") no-repeat -30px -50px fixed; */

  /* background : url("images/portafolio/videorestthubnail") no-repeat; */
  content: "";
  width: 100%;
  height: 30px;
  background:red url("../images/portafolio/video/videorestthubnail.jpg") no-repeat; 
  background-size: 175px 30px;
  top: 70px;
  right: 0px;
  position: absolute;
  display: inline-block;
}

.iframevid:after, .paintingLabel:after{
  
	/* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23E34F26%22%20d%3D%22M71%20460L30%200h451l-41%20460-185%2052%22%2F%3E%3Cpath%20fill%3D%22%23EF652A%22%20d%3D%22M256%20472l149-41%2035-394H256%22%2F%3E%3Cpath%20fill%3D%22%23EBEBEB%22%20d%3D%22M256%20208h-75l-5-58h80V94H114l1%2015%2014%20156h127zm0%20147h-1l-63-17-4-45h-56l7%2089%20116%2032h1z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M255%20208v57h70l-7%2073-63%2017v59l116-32%201-10%2013-149%202-15h-16zm0-114v56h137l1-12%203-29%201-15z%22%2F%3E%3C%2Fsvg%3E'); */
  /* background-image: url("images/portafolio/video/videorestthubnail.jpg") no-repeat -30px -50px fixed; */

  /* background : url("images/portafolio/videorestthubnail") no-repeat; */
  content: "";
  width: 100%;
  height: 30px;
  background:red url("../images/portafolio/video/videopaintthubnail.jpg") no-repeat; 
  background-size: 175px 30px;
  top: 70px;
  right: 0px;
  position: absolute;
  display: inline-block;
}

.iframevid:after, .roofLabel:after{
  
	/* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23E34F26%22%20d%3D%22M71%20460L30%200h451l-41%20460-185%2052%22%2F%3E%3Cpath%20fill%3D%22%23EF652A%22%20d%3D%22M256%20472l149-41%2035-394H256%22%2F%3E%3Cpath%20fill%3D%22%23EBEBEB%22%20d%3D%22M256%20208h-75l-5-58h80V94H114l1%2015%2014%20156h127zm0%20147h-1l-63-17-4-45h-56l7%2089%20116%2032h1z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M255%20208v57h70l-7%2073-63%2017v59l116-32%201-10%2013-149%202-15h-16zm0-114v56h137l1-12%203-29%201-15z%22%2F%3E%3C%2Fsvg%3E'); */
  /* background-image: url("images/portafolio/video/videorestthubnail.jpg") no-repeat -30px -50px fixed; */

  /* background : url("images/portafolio/videorestthubnail") no-repeat; */
  content: "";
  width: 100%;
  height: 30px;
  background:red url("../images/portafolio/video/videoroofthubnail.jpg") no-repeat; 
  background-size: 175px 30px;
  top: 70px;
  right: 0px;
  position: absolute;
  display: inline-block;
}




.centerO {
  text-align: center;
  /* border: 3px solid green; */
}

.center2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.container2{
  padding-left:  30px;
  padding-right:  30px;
}

.error{
  color: red;
}

.imgJob {
  border: 2px solid #C0C0C0;
  padding: 5px;
}
.imgJob:hover {
  box-shadow: 5px 4px 10px #8B0000;
}

/* aaaaa */

#supplementProcessWrapper,#supplementProcessWrapperAlt{
  width:100%;
  padding:4vh 0 6vh
}
#supplementProcessWrapper h3{
  color:var(--color-blue);
  text-align:center;
  margin:3vh .5vw
}
#supplementProcessContainer{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-flow:row wrap;
  width:90%;
  margin:0 5%
}
.process{
  width:80%;
  border:solid thin var(--color-red);
  border-radius:10px;
  margin:0 10%
}
.process img{
  width:30%;
  margin-top:calc(-30%/2)
}
.process h3{
  font-size:1em;
  letter-spacing:-.5px
}
.process p{
  text-align:justify;
  padding:0 .5vw 3vh;
  font-size:16px
}
.process a:link{
  text-decoration:none
}
@supports(display:inline-grid){
  #supplementProcessWrapper,#supplementProcessWrapperAlt{
      grid-column:1/-1;
      display:inline-grid
  }
  #supplementProcessContainer{
      grid-column:1/-1;
      display:inline-grid;
      grid-template-columns:1fr;
      grid-template-rows:auto;
      grid-column-gap:1vw;
      grid-row-gap:125px
  }
  .process{
      grid-column:auto;
      width:auto
  }
}
@media(min-width:0px) and (max-width:767px){
  .process p{
      text-align:justify;
      padding:0 2vw 3vh;
      font-size:16px
  }
}
@media(min-width:768px){
  .process{
      width:50%;
      border:solid thin var(--color-red);
      border-radius:10px;
      margin:unset
  }
  .process img{
      width:40%;
      margin-top:calc(-40%/2)
  }
  #supplementProcessContainer{
      width:98%;
      margin:0 1%
  }
  .process h3{
      font-size:1.2em
  }
  .process p{
      font-size:18px
  }
  @supports(display:inline-grid){
      #supplementProcessContainer{
          grid-template-columns:repeat(2,1fr);
          grid-column-gap:1vw;
          grid-row-gap:100px
      }
      .process{
          width:auto
      }
  }
}
@media(min-width:1000px){
  .process{
      width:33.33%
  }
  .process img{
      width:50%;
      margin-top:calc(-50%/2)
  }
  .process h3{
      font-size:1.2em
  }
  @supports(display:inline-grid){
      #supplementProcessContainer{
          grid-template-columns:repeat(3,1fr);
          grid-row-gap:100px
      }
      .process{
          width:auto
      }
      .process:nth-child(10){
          grid-column:2/3
      }
  }
}
@media(min-width:1300px){
  .process h3{
      font-size:1.3em
  }
  @supports(display:inline-grid){
      #supplementProcessContainer{
          grid-row-gap:125px
      }
  }
}
@media(min-width:1600px){
  #supplementProcessContainer{
      width:95%;
      margin:0 2.5%
  }
  .process{
      width:25%
  }
  .process img{
      width:40%;
      margin-top:calc(-40%/2)
  }
  .process h3{
      font-size:1.4em
  }
  @supports(display:inline-grid){
      #supplementProcessContainer{
          grid-template-columns:repeat(4,1fr);
          grid-column-gap:1vw;
          grid-row-gap:125px
      }
      .process{
          width:auto
      }
      .process:nth-child(9){
          grid-column:2/3
      }
      .process:nth-child(10){
          grid-column:3/4
      }
  }
}
@media(min-width:1920px){
  .interiorProcess .process{
      width:25%
  }
  .process{
      width:20%
  }
  .process img{
      width:40%;
      margin-top:calc(-40%/2)
  }
  .process h3{
      font-size:1.6em
  }
  .process p{
      font-size:19px
  }
  @supports(display:inline-grid){
      #supplementProcessContainer{
          grid-template-columns:repeat(5,1fr)
      }
      #supplementProcessContainer.interiorProcess{
          grid-template-columns:repeat(4,1fr)
      }
      .interiorProcess .process,.process{
          width:auto
      }
      .process:nth-child(9){
          grid-column:4/5
      }
      .process:nth-child(10){
          grid-column:5/6
      }
  }
}
@media(min-width:2200px){
  #supplementProcessContainer{
      width:80%;
      margin:0 10%
  }
  #supplementProcessContainer.interiorProcess{
      width:70%;
      margin:0 15%
  }
  .process h3{
      font-size:1.6em
  }
  .process p{
      font-size:20px
  }
}
@media(min-width:0px) and (max-width:767px){
  #recentBlogPostContainer{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:100%;
      padding:8vh 0;
      z-index:1;
      background-color:var(--color-redDark)
  }
  #recentBlogPost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:98%;
      margin:0 auto
  }
  #blogSectionTitle{
      width:100%
  }
  #blogSectionTitle h2{
      text-align:center;
      color:var(--color-white);
      margin-top:0;
      padding-top:0
  }
  #recentBlogPost p{
      text-align:justify;
      color:var(--color-white)
  }
  #recentBlogPost h3{
      text-align:center;
      margin-top:2vh;
      font-size:1.3em;
      line-height:110%;
      color:var(--color-grayLight)
  }
  #recentBlogPost button{
      color:var(--color-white);
      background-color:var(--color-gray);
      border-radius:5px;
      border:none;
      float:right;
      padding:1% 0;
      margin-top:2vh;
      width:100%
  }
  .blogPost{
      width:95%;
      margin-right:2.5%
  }
  .blogPost:nth-child(2n){
      display:none;
      visibility:collapse
  }
  .blogPost:nth-child(3n){
      display:none;
      visibility:collapse
  }
  .hdImageWrap{
      position:relative;
      padding-top:44.44%;
      overflow:hidden;
      margin:1vh 0
  }
  .blogPost img{
      position:absolute;
      top:-50%;
      left:-50%;
      right:-50%;
      bottom:-50%;
      margin:auto;
      width:100%;
      height:auto
  }
  @supports(display:grid){
      #recentBlogPostContainer{
          grid-column:1/-1
      }
      #blogSectionTitle{
          grid-column:1/-1
      }
      #recentBlogPost{
          grid-column:1/-1;
          display:inline-grid;
          grid-template-columns:1fr;
          grid-template-rows:auto
      }
      .blogPost{
          grid-column:1/-1;
          margin:auto
      }
  }
}
@media(min-width:768px){
  #recentBlogPostContainer{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:100%;
      padding:8vh 0;
      z-index:1;
      background-color:var(--color-redDark)
  }
  #recentBlogPost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:98%;
      margin:0 1%
  }
  #blogSectionTitle{
      width:100%
  }
  #blogSectionTitle h2{
      text-align:center;
      color:var(--color-white);
      margin-top:0;
      padding-top:0;
      margin-bottom:2vh
  }
  #recentBlogPost h3{
      text-align:center;
      color:var(--color-black)
  }
  #recentBlogPost p{
      text-align:justify;
      font-size:1em
  }
  #recentBlogPost h3{
      text-align:center;
      margin-top:1vh;
      font-size:1.3em;
      line-height:110%
  }
  #recentBlogPost button{
      color:var(--color-white);
      background-color:var(--color-gray);
      border-radius:5px;
      border:none;
      float:right;
      padding:1% 0;
      margin-top:1vh;
      width:50%
  }
  .blogPost{
      width:48%;
      margin-right:1%;
      background-color:var(--color-white);
      padding:3%;
      outline:1px var(--color-gray) solid;
      outline-offset:-8px
  }
  .blogPost:nth-child(2n){
      width:48%;
      margin-left:1%;
      background-color:var(--color-white);
      padding:3%;
      outline:1px var(--color-gray) solid;
      outline-offset:-8px
  }
  .blogPost:nth-child(3n){
      display:none
  }
  .hdImageWrap{
      position:relative;
      padding-top:44.44%;
      overflow:hidden;
      margin:1vh 0
  }
  .blogPost img{
      position:absolute;
      top:-50%;
      left:-50%;
      right:-50%;
      bottom:-50%;
      margin:auto;
      width:100%;
      height:auto
  }
  @supports(display:grid){
      #recentBlogPostContainer{
          grid-column:1/-1
      }
      #blogSectionTitle{
          grid-column:1/-1
      }
      #recentBlogPost{
          grid-column:1/-1;
          display:inline-grid;
          grid-template-columns:repeat(2,1fr);
          grid-template-rows:auto;
          grid-column-gap:2vw
      }
      .blogPost{
          grid-column:1/2;
          width:auto;
          margin:auto
      }
      .blogPost:nth-child(2n){
          grid-column:2/3;
          width:auto;
          margin:auto
      }
  }
}
@media(min-width:1000px){
  #recentBlogPostContainer{
      padding:10vh 0
  }
  #recentBlogPost{
      width:90%;
      margin:0 5%
  }
  .blogPost{
      width:45%;
      margin:0
  }
  .blogPost:nth-child(2n){
      width:45%;
      margin-left:1%
  }
  @supports(display:grid){
      #recentBlogPost{
          grid-column-gap:4vw
      }
      .blogPost{
          width:auto;
          margin:auto
      }
      .blogPost:nth-child(2n){
          width:auto;
          margin-left:auto
      }
  }
}
@media(min-width:1300px){
  #recentBlogPost img{
      outline-offset:.75vh
  }
  #recentBlogPost{
      width:90%;
      margin:0 5%
  }
  .blogPost{
      width:31%;
      margin-right:1%
  }
  .blogPost:nth-child(2n){
      width:31%
  }
  .blogPost:nth-child(3n){
      display:block;
      width:31%;
      margin-left:1%
  }
  @supports(display:grid){
      #recentBlogPost{
          grid-column:1/-1;
          display:inline-grid;
          grid-template-columns:repeat(3,1fr);
          grid-template-rows:auto;
          grid-column-gap:2vw
      }
      .blogPost{
          grid-column:1/2;
          width:auto;
          margin:auto
      }
      .blogPost:nth-child(2n){
          grid-column:2/3;
          width:auto;
          margin:auto
      }
      .blogPost:nth-child(3n){
          grid-column:3/4;
          width:auto;
          margin:auto
      }
  }
}
@media(min-width:1600px){
  #recentBlogPost{
      width:80%;
      margin:0 10%
  }
}
@media(min-width:1900px){
  #recentBlogPostContainer{
      padding:12vh 0
  }
  #recentBlogPost{
      width:70%;
      margin:0 15%
  }
}
.modalDialog{
  position:fixed;
  bottom:0;
  top:0;
  left:0;
  right:0;
  background:rgba(0,0,0,.8);
  z-index:9999;
  opacity:0;
  display:none;
  -webkit-transition:opacity .4s ease-in;
  -moz-transition:opacity .4s ease-in;
  transition:opacity .4s ease-in;
  pointer-events:none
}
.modalDialog:target{
  opacity:1;
  pointer-events:auto;
  display:block
}
.modalDialog>div{
  width:450px;
  position:relative;
  margin:auto;
  margin-top:50px;
  padding:5px 20px 13px;
  border-radius:10px;
  background:var(--color-white)
}
#openModal h2{
  margin-top:14px;
  margin-bottom:5px;
  padding:0;
  font-size:22px;
  text-align:center;
  letter-spacing:0;
  font-weight:500
}
#openModal h5{
  color:#282827;
  font-size:16px;
  margin-top:15px;
  margin-bottom:0;
  padding:0;
  text-align:left;
  line-height:105%;
  letter-spacing:0;
  font-weight:500
}
#openModal p{
  font-size:1em;
  text-align:left;
  line-height:115%
}
#openModal input[type=text]{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal input[type=time]{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal input[type=email]{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal textarea{
  margin:0;
  width:425px;
  height:120px;
  padding:0;
  margin-bottom:0;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal input[type=tel]{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal input[type=submit]{
  background-color:var(--color-red);
  border:none;
  color:var(--color-white);
  font-size:18px;
  padding:8px 32px;
  text-decoration:none;
  margin:20px;
  cursor:pointer;
  width:auto;
  font-variant:small-caps
}
#openModal input[type=submit]:hover{
  background-color:var(--color-gray)
}
#openModal input[type=reset]{
  background-color:var(--color-red);
  font-variant:small-caps;
  border:none;
  color:var(--color-white);
  font-size:18px;
  padding:8px 32px;
  text-decoration:none;
  margin:20px;
  cursor:pointer;
  width:auto
}
#openModal input[type=reset]:hover{
  background-color:var(--color-gray)
}
#openModal input[type=password],#openModal input[type=url]{
  display:none
}
#openModal input[type=date]{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
#openModal select{
  margin:0;
  width:425px;
  padding:0;
  margin-bottom:0;
  line-height:100%;
  font-size:16px;
  padding:2px;
  background-color:var(--color-white)
}
a.closingX{
  background:var(--color-red);
  color:var(--color-white);
  line-height:24px;
  top:-12px;
  position:absolute;
  right:-12px;
  text-align:center;
  width:24px;
  text-decoration:none;
  font-weight:700;
  -webkit-border-radius:12px;
  -moz-border-radius:12px;
  border-radius:12px;
  -moz-box-shadow:1px 1px 3px #000;
  -webkit-box-shadow:1px 1px 3px #000;
  box-shadow:1px 1px 3px #000
}
.closingX:hover{
  background:var(--color-grayLight);
  color:var(--color-red)
}
.centricity #schedBox,.centricity #scheddyBox{
  background:var(--color-white);
  display:inline-block;
  border-radius:5px;
  -webkit-transition:background .3s .4s;
  transition:background .3s .4s
}
.centricity #schedBox:hover,.centricity #scheddyBox:hover{
  background:var(--color-gray);
  -webkit-transition-delay:0s;
  transition-delay:0s
}
#schedBox h3,#scheddyBox h3{
  font-size:1em;
  color:var(--color-red);
  padding:5px 3vw;
  letter-spacing:0;
  font-weight:500;
  text-align:center;
  -webkit-transition:background .3s .4s;
  transition:background .3s .4s
}
#schedBox:hover h3,#scheddyBox:hover h3{
  color:var(--color-white);
  -webkit-transition-delay:0s;
  transition-delay:0s
}
.interiorModalDialog{
  position:fixed;
  bottom:0;
  top:0;
  left:0;
  right:0;
  background:rgba(0,0,0,.8);
  z-index:9996;
  opacity:0;
  -webkit-transition:opacity .4s ease-in;
  -moz-transition:opacity .4s ease-in;
  transition:opacity .4s ease-in;
  pointer-events:none
}
.interiorModalDialog:target{
  opacity:1;
  pointer-events:auto
}
.interiorModalDialog>div{
  width:450px;
  position:relative;
  margin:10% auto;
  padding:5px 20px 13px;
  border-radius:10px;
  background:var(--color-white)
}
@media(min-width:0px) and (max-width:767px){
  #ctaContainerWrapper{
      width:100%;
      height:100px;
      margin:0;
      float:right
  }
  #ctaAlt .callBox{
      background:#4a8902;
      box-shadow:inset 0 0 0 3px #4a8902
  }
  #ctaAlt .callBox:hover{
      background:rgba(157,218,87,.5)
  }
  #ctaAlt .callBox:hover h3{
      color:#4a8902
  }
  #cta{
      width:100%;
      height:100px;
      position:relative;
      display:inline-block
  }
  .callBox{
      width:90%;
      height:70px;
      position:relative;
      background-color:var(--color-red);
      background-image:url(data:image/svg+xml;
      base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMDAnIGhlaWdodD0nMjUwJyB2aWV3Qm94PScwIDAgMTA4MCA5MDAnPjxnIGZpbGwtb3BhY2l0eT0nMC4xJz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzkwIDE1MCAwIDMwMCAxODAgMzAwJy8+PHBvbHlnb24gcG9pbnRzPSc5MCAxNTAgMTgwIDAgMCAwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPScyNzAgMTUwIDM2MCAwIDE4MCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc0NTAgMTUwIDM2MCAzMDAgNTQwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nNDUwIDE1MCA1NDAgMCAzNjAgMCcvPjxwb2x5Z29uIHBvaW50cz0nNjMwIDE1MCA1NDAgMzAwIDcyMCAzMDAnLz48cG9seWdvbiBmaWxsPScjREREJyBwb2ludHM9JzYzMCAxNTAgNzIwIDAgNTQwIDAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzgxMCAxNTAgNzIwIDMwMCA5MDAgMzAwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc4MTAgMTUwIDkwMCAwIDcyMCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc5OTAgMTUwIDkwMCAzMDAgMTA4MCAzMDAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9Jzk5MCAxNTAgMTA4MCAwIDkwMCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc5MCA0NTAgMCA2MDAgMTgwIDYwMCcvPjxwb2x5Z29uIHBvaW50cz0nOTAgNDUwIDE4MCAzMDAgMCAzMDAnLz48cG9seWdvbiBmaWxsPScjNjY2JyBwb2ludHM9JzI3MCA0NTAgMTgwIDYwMCAzNjAgNjAwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPScyNzAgNDUwIDM2MCAzMDAgMTgwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nNDUwIDQ1MCAzNjAgNjAwIDU0MCA2MDAnLz48cG9seWdvbiBmaWxsPScjOTk5JyBwb2ludHM9JzQ1MCA0NTAgNTQwIDMwMCAzNjAgMzAwJy8+PHBvbHlnb24gZmlsbD0nIzk5OScgcG9pbnRzPSc2MzAgNDUwIDU0MCA2MDAgNzIwIDYwMCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nNjMwIDQ1MCA3MjAgMzAwIDU0MCAzMDAnLz48cG9seWdvbiBwb2ludHM9JzgxMCA0NTAgNzIwIDYwMCA5MDAgNjAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc4MTAgNDUwIDkwMCAzMDAgNzIwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nOTkwIDQ1MCA5MDAgNjAwIDEwODAgNjAwJy8+PHBvbHlnb24gZmlsbD0nIzQ0NCcgcG9pbnRzPSc5OTAgNDUwIDEwODAgMzAwIDkwMCAzMDAnLz48cG9seWdvbiBmaWxsPScjMjIyJyBwb2ludHM9JzkwIDc1MCAwIDkwMCAxODAgOTAwJy8+PHBvbHlnb24gcG9pbnRzPScyNzAgNzUwIDE4MCA5MDAgMzYwIDkwMCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nMjcwIDc1MCAzNjAgNjAwIDE4MCA2MDAnLz48cG9seWdvbiBwb2ludHM9JzQ1MCA3NTAgNTQwIDYwMCAzNjAgNjAwJy8+PHBvbHlnb24gcG9pbnRzPSc2MzAgNzUwIDU0MCA5MDAgNzIwIDkwMCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nNjMwIDc1MCA3MjAgNjAwIDU0MCA2MDAnLz48cG9seWdvbiBmaWxsPScjQUFBJyBwb2ludHM9JzgxMCA3NTAgNzIwIDkwMCA5MDAgOTAwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPSc4MTAgNzUwIDkwMCA2MDAgNzIwIDYwMCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nOTkwIDc1MCA5MDAgOTAwIDEwODAgOTAwJy8+PHBvbHlnb24gZmlsbD0nIzk5OScgcG9pbnRzPScxODAgMCA5MCAxNTAgMjcwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMzYwIDAgMjcwIDE1MCA0NTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc1NDAgMCA0NTAgMTUwIDYzMCAxNTAnLz48cG9seWdvbiBwb2ludHM9JzkwMCAwIDgxMCAxNTAgOTkwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyMyMjInIHBvaW50cz0nMCAzMDAgLTkwIDQ1MCA5MCA0NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzAgMzAwIDkwIDE1MCAtOTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPScxODAgMzAwIDkwIDQ1MCAyNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScxODAgMzAwIDI3MCAxNTAgOTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSczNjAgMzAwIDI3MCA0NTAgNDUwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nMzYwIDMwMCA0NTAgMTUwIDI3MCAxNTAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzU0MCAzMDAgNDUwIDQ1MCA2MzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSc1NDAgMzAwIDYzMCAxNTAgNDUwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nNzIwIDMwMCA2MzAgNDUwIDgxMCA0NTAnLz48cG9seWdvbiBmaWxsPScjNjY2JyBwb2ludHM9JzcyMCAzMDAgODEwIDE1MCA2MzAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc5MDAgMzAwIDgxMCA0NTAgOTkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nOTAwIDMwMCA5OTAgMTUwIDgxMCAxNTAnLz48cG9seWdvbiBwb2ludHM9JzAgNjAwIC05MCA3NTAgOTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScwIDYwMCA5MCA0NTAgLTkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nMTgwIDYwMCA5MCA3NTAgMjcwIDc1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMTgwIDYwMCAyNzAgNDUwIDkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMzYwIDYwMCAyNzAgNzUwIDQ1MCA3NTAnLz48cG9seWdvbiBmaWxsPScjOTk5JyBwb2ludHM9JzM2MCA2MDAgNDUwIDQ1MCAyNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPSc1NDAgNjAwIDYzMCA0NTAgNDUwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyMyMjInIHBvaW50cz0nNzIwIDYwMCA2MzAgNzUwIDgxMCA3NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzkwMCA2MDAgODEwIDc1MCA5OTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSc5MDAgNjAwIDk5MCA0NTAgODEwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nMCA5MDAgOTAgNzUwIC05MCA3NTAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzE4MCA5MDAgMjcwIDc1MCA5MCA3NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzM2MCA5MDAgNDUwIDc1MCAyNzAgNzUwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPSc1NDAgOTAwIDYzMCA3NTAgNDUwIDc1MCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nNzIwIDkwMCA4MTAgNzUwIDYzMCA3NTAnLz48cG9seWdvbiBmaWxsPScjMjIyJyBwb2ludHM9JzkwMCA5MDAgOTkwIDc1MCA4MTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPScxMDgwIDMwMCA5OTAgNDUwIDExNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPScxMDgwIDMwMCAxMTcwIDE1MCA5OTAgMTUwJy8+PHBvbHlnb24gcG9pbnRzPScxMDgwIDYwMCA5OTAgNzUwIDExNzAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScxMDgwIDYwMCAxMTcwIDQ1MCA5OTAgNDUwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPScxMDgwIDkwMCAxMTcwIDc1MCA5OTAgNzUwJy8+PC9nPjwvc3ZnPg==);
      display:inline-block;
      margin-top:15px;
      cursor:pointer;
      color:var(--color-white);
      box-shadow:inset 0 0 0 3px var(--color-red);
      -webkit-transition:background .4s .5s;
      transition:background .4s .5s;
      z-index:1;
      border:solid medium var(--color-white)
  }
  .callBox:hover{
      background:#fff;
      -webkit-transition-delay:0s;
      transition-delay:0s
  }
  .callBox h3{
      font-size:18px;
      line-height:70px;
      margin:0;
      font-weight:700;
      width:100%;
      color:var(--color-white);
      text-align:center
  }
  #openModal h2{
      font-size:1.3em
  }
  .callBox:hover h3{
      color:var(--color-red);
      -webkit-transition-delay:0s;
      transition-delay:0s
  }
  .callBox svg{
      display:none
  }
  .modalDialog>div{
      width:90%;
      position:relative;
      margin:80px auto 0;
      padding:5px;
      border-radius:10px;
      background:var(--color-white);
      z-index:9999
  }
  .interiorModalDialog>div{
      width:90%;
      position:absolute;
      margin:10% auto;
      padding:5px;
      border-radius:10px;
      background:var(--color-white);
      z-index:9999
  }
  #openModal p{
      font-size:15px;
      padding:0 2vw;
      text-align:left;
      line-height:115%
  }
  #openModal input[type=text]{
      width:85%;
      margin:auto
  }
  #openModal input[type=time]{
      width:85%;
      margin:auto
  }
  #openModal input[type=email]{
      width:85%;
      margin:auto
  }
  #openModal textarea{
      width:85%;
      margin:auto
  }
  #openModal input[type=tel]{
      width:85%;
      margin:auto
  }
  #openModal input[type=submit]{
      padding:2vh 6vw;
      margin:4vw
  }
  #openModal input[type=reset]{
      padding:2vh 6vw;
      margin:4vw
  }
  #openModal input[type=date]{
      width:85%;
      margin:auto
  }
  #openModal select{
      width:85%;
      margin:auto
  }
  @supports(display:grid){
      #ctaContainerWrapper{
          grid-column:1/-1
      }
      #ctaContainer{
          grid-column:1/-1
      }
  }
}
@media(min-width:450px) and (max-width:767px){
  .callBox{
      width:70%
  }
  .callBox h3{
      font-size:20px
  }
}
@media(min-width:768px){
  #ctaContainerWrapper{
      width:100%;
      margin:0;
      display:flex;
      align-items:center;
      justify-content:center;
      height:130px
  }
  #cta{
      display:inline-block;
      width:100%;
      position:relative;
      margin:0 auto;
      height:130px
  }
  .callBox{
      width:415px;
      height:70px;
      position:relative;
      display:inline-block;
      background-color:var(--color-red);
      background-image:url(data:image/svg+xml;
      base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMDAnIGhlaWdodD0nMjUwJyB2aWV3Qm94PScwIDAgMTA4MCA5MDAnPjxnIGZpbGwtb3BhY2l0eT0nMC4xJz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzkwIDE1MCAwIDMwMCAxODAgMzAwJy8+PHBvbHlnb24gcG9pbnRzPSc5MCAxNTAgMTgwIDAgMCAwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPScyNzAgMTUwIDM2MCAwIDE4MCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc0NTAgMTUwIDM2MCAzMDAgNTQwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nNDUwIDE1MCA1NDAgMCAzNjAgMCcvPjxwb2x5Z29uIHBvaW50cz0nNjMwIDE1MCA1NDAgMzAwIDcyMCAzMDAnLz48cG9seWdvbiBmaWxsPScjREREJyBwb2ludHM9JzYzMCAxNTAgNzIwIDAgNTQwIDAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzgxMCAxNTAgNzIwIDMwMCA5MDAgMzAwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc4MTAgMTUwIDkwMCAwIDcyMCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc5OTAgMTUwIDkwMCAzMDAgMTA4MCAzMDAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9Jzk5MCAxNTAgMTA4MCAwIDkwMCAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc5MCA0NTAgMCA2MDAgMTgwIDYwMCcvPjxwb2x5Z29uIHBvaW50cz0nOTAgNDUwIDE4MCAzMDAgMCAzMDAnLz48cG9seWdvbiBmaWxsPScjNjY2JyBwb2ludHM9JzI3MCA0NTAgMTgwIDYwMCAzNjAgNjAwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPScyNzAgNDUwIDM2MCAzMDAgMTgwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nNDUwIDQ1MCAzNjAgNjAwIDU0MCA2MDAnLz48cG9seWdvbiBmaWxsPScjOTk5JyBwb2ludHM9JzQ1MCA0NTAgNTQwIDMwMCAzNjAgMzAwJy8+PHBvbHlnb24gZmlsbD0nIzk5OScgcG9pbnRzPSc2MzAgNDUwIDU0MCA2MDAgNzIwIDYwMCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nNjMwIDQ1MCA3MjAgMzAwIDU0MCAzMDAnLz48cG9seWdvbiBwb2ludHM9JzgxMCA0NTAgNzIwIDYwMCA5MDAgNjAwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPSc4MTAgNDUwIDkwMCAzMDAgNzIwIDMwMCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nOTkwIDQ1MCA5MDAgNjAwIDEwODAgNjAwJy8+PHBvbHlnb24gZmlsbD0nIzQ0NCcgcG9pbnRzPSc5OTAgNDUwIDEwODAgMzAwIDkwMCAzMDAnLz48cG9seWdvbiBmaWxsPScjMjIyJyBwb2ludHM9JzkwIDc1MCAwIDkwMCAxODAgOTAwJy8+PHBvbHlnb24gcG9pbnRzPScyNzAgNzUwIDE4MCA5MDAgMzYwIDkwMCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nMjcwIDc1MCAzNjAgNjAwIDE4MCA2MDAnLz48cG9seWdvbiBwb2ludHM9JzQ1MCA3NTAgNTQwIDYwMCAzNjAgNjAwJy8+PHBvbHlnb24gcG9pbnRzPSc2MzAgNzUwIDU0MCA5MDAgNzIwIDkwMCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nNjMwIDc1MCA3MjAgNjAwIDU0MCA2MDAnLz48cG9seWdvbiBmaWxsPScjQUFBJyBwb2ludHM9JzgxMCA3NTAgNzIwIDkwMCA5MDAgOTAwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPSc4MTAgNzUwIDkwMCA2MDAgNzIwIDYwMCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nOTkwIDc1MCA5MDAgOTAwIDEwODAgOTAwJy8+PHBvbHlnb24gZmlsbD0nIzk5OScgcG9pbnRzPScxODAgMCA5MCAxNTAgMjcwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMzYwIDAgMjcwIDE1MCA0NTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc1NDAgMCA0NTAgMTUwIDYzMCAxNTAnLz48cG9seWdvbiBwb2ludHM9JzkwMCAwIDgxMCAxNTAgOTkwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyMyMjInIHBvaW50cz0nMCAzMDAgLTkwIDQ1MCA5MCA0NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzAgMzAwIDkwIDE1MCAtOTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPScxODAgMzAwIDkwIDQ1MCAyNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScxODAgMzAwIDI3MCAxNTAgOTAgMTUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSczNjAgMzAwIDI3MCA0NTAgNDUwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nMzYwIDMwMCA0NTAgMTUwIDI3MCAxNTAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzU0MCAzMDAgNDUwIDQ1MCA2MzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSc1NDAgMzAwIDYzMCAxNTAgNDUwIDE1MCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nNzIwIDMwMCA2MzAgNDUwIDgxMCA0NTAnLz48cG9seWdvbiBmaWxsPScjNjY2JyBwb2ludHM9JzcyMCAzMDAgODEwIDE1MCA2MzAgMTUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPSc5MDAgMzAwIDgxMCA0NTAgOTkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyM5OTknIHBvaW50cz0nOTAwIDMwMCA5OTAgMTUwIDgxMCAxNTAnLz48cG9seWdvbiBwb2ludHM9JzAgNjAwIC05MCA3NTAgOTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScwIDYwMCA5MCA0NTAgLTkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNBQUEnIHBvaW50cz0nMTgwIDYwMCA5MCA3NTAgMjcwIDc1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMTgwIDYwMCAyNzAgNDUwIDkwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyM0NDQnIHBvaW50cz0nMzYwIDYwMCAyNzAgNzUwIDQ1MCA3NTAnLz48cG9seWdvbiBmaWxsPScjOTk5JyBwb2ludHM9JzM2MCA2MDAgNDUwIDQ1MCAyNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPSc1NDAgNjAwIDYzMCA0NTAgNDUwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyMyMjInIHBvaW50cz0nNzIwIDYwMCA2MzAgNzUwIDgxMCA3NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzkwMCA2MDAgODEwIDc1MCA5OTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPSc5MDAgNjAwIDk5MCA0NTAgODEwIDQ1MCcvPjxwb2x5Z29uIGZpbGw9JyNEREQnIHBvaW50cz0nMCA5MDAgOTAgNzUwIC05MCA3NTAnLz48cG9seWdvbiBmaWxsPScjNDQ0JyBwb2ludHM9JzE4MCA5MDAgMjcwIDc1MCA5MCA3NTAnLz48cG9seWdvbiBmaWxsPScjRkZGJyBwb2ludHM9JzM2MCA5MDAgNDUwIDc1MCAyNzAgNzUwJy8+PHBvbHlnb24gZmlsbD0nI0FBQScgcG9pbnRzPSc1NDAgOTAwIDYzMCA3NTAgNDUwIDc1MCcvPjxwb2x5Z29uIGZpbGw9JyNGRkYnIHBvaW50cz0nNzIwIDkwMCA4MTAgNzUwIDYzMCA3NTAnLz48cG9seWdvbiBmaWxsPScjMjIyJyBwb2ludHM9JzkwMCA5MDAgOTkwIDc1MCA4MTAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzIyMicgcG9pbnRzPScxMDgwIDMwMCA5OTAgNDUwIDExNzAgNDUwJy8+PHBvbHlnb24gZmlsbD0nI0ZGRicgcG9pbnRzPScxMDgwIDMwMCAxMTcwIDE1MCA5OTAgMTUwJy8+PHBvbHlnb24gcG9pbnRzPScxMDgwIDYwMCA5OTAgNzUwIDExNzAgNzUwJy8+PHBvbHlnb24gZmlsbD0nIzY2NicgcG9pbnRzPScxMDgwIDYwMCAxMTcwIDQ1MCA5OTAgNDUwJy8+PHBvbHlnb24gZmlsbD0nI0RERCcgcG9pbnRzPScxMDgwIDkwMCAxMTcwIDc1MCA5OTAgNzUwJy8+PC9nPjwvc3ZnPg==);
      margin-top:30px;
      cursor:pointer;
      color:var(--color-white);
      box-shadow:inset 0 0 0 3px var(--color-redDark);
      -webkit-transition:background .4s .5s;
      transition:background .4s .5s;
      z-index:1
  }
  .callBox:hover{
      background:var(--color-grayLight);
      -webkit-transition-delay:0s;
      transition-delay:0s
  }
  .callBox:hover h3{
      color:var(--color-red);
      -webkit-transition-delay:0s;
      transition-delay:0s
  }
  .callBox h3{
      font-size:20px;
      line-height:70px;
      margin:0;
      font-weight:700;
      width:100%;
      color:var(--color-white);
      text-align:center
  }
  .callBox svg{
      position:absolute;
      top:0;
      left:0
  }
  .callBox svg line{
      stroke-width:6;
      stroke:var(--color-white);
      fill:none;
      -webkit-transition:all .5s ease-in-out;
      transition:all .5s ease-in-out
  }
  .callBox:hover svg line{
      -webkit-transition-delay:0;
      transition-delay:0
  }
  .callBox svg line.bottom,.callBox svg line.top{
      stroke-dasharray:445 355
  }
  .callBox svg line.left,.callBox svg line.right{
      stroke-dasharray:100 10
  }
  .callBox:hover svg line.top{
      -webkit-transform:translateX(-830px);
      transform:translateX(-830px)
  }
  .callBox:hover svg line.bottom{
      -webkit-transform:translateX(830px);
      transform:translateX(830px)
  }
  .callBox:hover svg line.left{
      -webkit-transform:translateY(140px);
      transform:translateY(140px)
  }
  .callBox:hover svg line.right{
      -webkit-transform:translateY(-140px);
      transform:translateY(-140px)
  }
  @supports(display:grid){
      #ctaContainerWrapper{
          grid-column:1/-1
      }
      #ctaContainer{
          grid-column:1/-1
      }
  }
}
@media(min-width:1000px){
  #cta{
      height:130px;
      position:relative;
      display:inline-block;
      margin:0 auto
  }
  .callBox h3{
      font-size:22px
  }
}
@media(min-width:1300px){
  .callBox h3{
      font-size:24px
  }
}
@media(min-width:1600px){
  .callBox h3{
      font-size:26px
  }
}
#mainBlogContainer a:active,#mainBlogContainer a:link,#mainBlogContainer a:visited{
  text-decoration:underline;
  color:var(--color-red)
}
#mainBlogContainer{
  width:100%;
  margin-bottom:4vh
}
.blogWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-flow:row wrap;
  padding:8vh 0;
  background-color:#efefef
}
.blogWrap h1{
  color:#fff;
  margin-top:0;
  text-align:center;
  font-family:league gothic,Helvetica,Verdana,Arial,sans-serif
}
.blogWrap h2{
  font-family:league gothic,Helvetica,Verdana,Arial,sans-serif;
  text-align:center;
  color:#999;
  padding:0;
  margin:0;
  line-height:125%
}
.articleBody ol,.articleBody ul{
  padding:3vh 5vw;
  line-height:135%;
  margin:0
}
.blogPic{
  grid-column:1/-1;
  width:100%
}
.blogPic img{
  object-fit:cover;
  object-position:center;
  margin:0;
  width:100%;
  max-height:50vh;
  border-radius:10px
}
ul.hfeed.listing{
  margin:2vh 0 8vh
}
ul.hfeed.listing li.hentry{
  padding-top:8vh
}
ul.hfeed.listing li.hentry:first-child{
  padding-top:4vh
}
ul.hfeed.listing li.hentry:last-child{
  padding-bottom:4vh
}
ul.hfeed.listing h3{
  font-size:1.3em;
  margin:0;
  padding:0 0 2vh;
  line-height:110%
}
#mainBlog .hentry p{
  margin:0;
  padding:0 2vw;
  line-height:130%;
  font-size:1em
}
#mainBlog article.hentry p{
  margin:0;
  padding:2vh 6vw;
  line-height:130%
}
#mainBlog article.hentry .articleBody{
  padding:4vh 0 1.2vh
}
#mainBlog .hentry hr{
  margin:.3em 0
}
#mainBlog .hentry p.authDate,#mainBlog article.hentry p.underArticle,#mainBlog p.underArticle{
  font-size:.9em;
  padding:0;
  font-weight:700
}
article h1.blogHeadline{
  margin:0 0 5vh
}
.leftArrowNav{
  margin-right:6vw
}
.centerHomeNav{
  margin-right:6vw
}
.blogTaggersWrap{
  width:100%;
  background-color:#ffbe26;
  padding:6vh
}
.blogTaggers{
  width:90%;
  margin-left:5%
}
.blogTaggers a:active,.blogTaggers a:link,.blogTaggers a:visited{
  color:#fff
}
.blogTaggersHeading h3{
  text-align:center;
  color:#dc9b03;
  margin-top:0
}
.blogSupWrapper,.blogSupWrapperAlt{
  grid-column:1/-1;
  width:100%;
  background-color:var(--color-black);
  padding:3vh 0
}
.searchButton button img{
  height:21px
}
.blogSupWrapper .searchButton button,.blogSupWrapperAlt .searchButton button{
  width:45px;
  background-color:#fff;
  margin-left:-6px;
  margin-top:-3px!important;
  border:none;
  height:43px;
  vertical-align:middle;
  border-radius:0 5px 5px 0;
  border-left:medium solid #efefef;
  padding:4px;
  font-size:unset;
  line-height:1;
  font-family:inherit;
  font-size:100%
}
.blogSupWrapperAlt .searchButton button{
  border-left:medium solid #a9a9a9
}
.blogSup [type=search]{
  height:42px;
  border:none;
  margin-top:2px;
  width:50%;
  border-radius:5px 0 0 5px
}
.blogCommentsWrap{
  grid-column:1/-1;
  width:100%;
  padding:3vh;
  margin:auto
}
.blogComments{
  width:40%;
  margin:auto;
  padding:3em;
  background:var(--color-red);
  border:solid thin var(--color-red);
  border-radius:10px;
  color:#eee
}
.blogComments label{
  display:inline-block;
  max-width:100%;
  margin-top:5px;
  font-weight:700;
  float:left
}
.blogComments .form-control{
  display:block;
  width:100%;
  height:34px;
  padding:6px 12px;
  font-size:14px;
  line-height:1.42857143;
  color:#555;
  background-color:#fff;
  background-image:none;
  border:1px solid #ccc;
  border-radius:4px;
  -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.blogComments h4{
  margin:0;
  padding-bottom:.5em;
  color:var(--color-redDark)
}
.blog-nav{
  width:100%
}
.blogComments .btn-primary{
  color:#fff;
  background-color:var(--color-black)
}
.blogComments .btn{
  display:inline-block;
  padding:6px 20px;
  margin-bottom:0;
  font-size:14px;
  font-weight:400;
  line-height:1.42857143;
  text-align:center;
  white-space:nowrap;
  vertical-align:middle;
  -ms-touch-action:manipulation;
  touch-action:manipulation;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  background-image:none;
  border:1px solid transparent;
  border-radius:4px;
  float:left
}
.commentWrap{
  grid-column:1/-1;
  width:100%;
  padding:2vh;
  margin:auto
}
.comment{
  width:40%;
  margin:auto;
  border-radius:5px
}
.commentInfo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-flow:row wrap;
  text-align:left;
  width:100%
}
.commentHeading{
  width:33.33%
}
.actualComment{
  width:66.67%
}
.actualComment p{
  margin:0;
  padding:0
}
.webMentionsWrap{
  grid-column:1/-1;
  width:100%;
  background-color:#e8e9ed;
  padding:3vh;
  margin:auto
}
.webMentions{
  width:60%;
  margin:auto
}
.webMentions legend{
  color:#a9a9a9;
  text-align:center;
  font-size:1.6em;
  text-shadow:-1px -1px 0 rgba(255,255,255,.3),1px 1px 0 rgba(2,41,58,.8);
  width:100%;
  padding:2vh 0
}
.webMentions p{
  font-size:.9em;
  line-height:110%;
  padding:.5vh 10vh
}
.webMentions a{
  color:unset;
  font-size:.9em
}
.webMentions input[type=url]{
  width:50%;
  height:42px;
  font-size:.9em;
  border-radius:5px 0 0 5px;
  -webkit-appearance:textfield;
  border-width:-2px
}
.webMentions input[type=submit]{
  height:42px;
  vertical-align:middle;
  background-color:#a9a9a9;
  border:none;
  color:#fff;
  padding:.2em 1em;
  border-radius:0 5px 5px 0
}
img.homeIcon{
  width:35px
}
.catSpacing{
  margin:0 2vw
}
@supports(display:grid){
  #mainBlogContainer{
      grid-column:1/-1
  }
  .blogWrap{
      grid-column:1/-1;
      grid-template-rows:auto;
      align-items:center
  }
  .commentInfo{
      grid-column:1/-1;
      grid-row:1;
      display:inline-grid;
      grid-template-columns:repeat(6,1fr);
      grid-template-rows:auto
  }
  .commentHeading{
      grid-column:1/3;
      width:auto
  }
  .actualComment{
      grid-column:3/7;
      width:auto
  }
  .blog-nav{
      grid-column:1/-1
  }
  .blogTaggersWrap{
      grid-column:1/-1
  }
}
@media(min-width:0px) and (max-width:767px){
  #mainBlog{
      width:95%;
      margin:8vh auto
  }
  #mainBlog .hentry p{
      font-size:1.2em
  }
  #mainBlog article.hentry p.underArticle{
      font-size:.7em
  }
  #mainBlog p.underArticle{
      font-size:.7em
  }
  .blogSup [type=search]{
      width:80%
  }
  .bigly img{
      width:100%
  }
  .blogPic img{
      margin:0;
      width:100%
  }
  ul.hfeed.listing{
      margin:0 2%
  }
  #mainBlog article h1.blogHeadline{
      line-height:100%;
      margin:6vh auto 2vh
  }
  #mainBlog h1.blogHeadline{
      line-height:100%;
      margin:6vh auto 2vh
  }
  #mainBlog article.hentry p{
      padding:1.4vh 2vw 0;
      text-align:justify;
      font-size:1.1em
  }
  .articleBody ol,.articleBody ul{
      font-size:.9em
  }
  .blogComments{
      width:100%;
      padding:1em;
      margin:auto
  }
  .comment{
      width:100%;
      margin:auto;
      border-radius:5px
  }
  .webMentions{
      width:100%;
      margin:auto
  }
  .webMentions legend{
      font-size:1.6em;
      text-shadow:-1px -1px 0 rgba(255,255,255,.3),1px 1px 0 rgba(2,41,58,.8)
  }
  .webMentions p{
      font-size:.9em;
      line-height:110%;
      padding:0 2vh
  }
  .webMentions a{
      color:unset;
      font-size:.9em
  }
  .webMentions input[type=url]{
      width:70%;
      font-size:.9em;
      line-height:1.3em
  }
  .webMentions input[type=submit]{
      border:none;
      padding:.2em 1em
  }
}
@media(min-width:768px){
  #mainBlog{
      width:90%;
      margin:1vh auto 8vh
  }
  #mainBlog article h1.blogHeadline{
      line-height:100%;
      margin:10vh auto 2.5vh
  }
  #mainBlog h1.blogHeadline{
      line-height:100%;
      margin:6vh auto 2vh
  }
  #mainBlog article.hentry p{
      padding:1.2vh 3vw 0;
      text-align:justify
  }
  #mainBlog .hentry p{
      font-size:1.1em
  }
  #mainBlog h2{
      margin:2vh 0
  }
  .webMentions{
      width:90%
  }
  .blogComments{
      width:90%;
      padding:1em;
      margin:auto
  }
  .comment{
      width:90%;
      margin:auto;
      border-radius:5px
  }
  .webMentions p{
      font-size:.9em;
      line-height:110%;
      padding:1vh 2vh
  }
  .articleBody ol,.articleBody ul{
      font-size:.9em
  }
  .webMentions input[type=url]{
      width:70%;
      font-size:.9em;
      line-height:1.3em
  }
  .footLogo{
      width:25%
  }
  .footLogo img{
      width:70%
  }
  @supports(display:grid){
      .footLogo{
          grid-column:6/9;
          width:auto
      }
  }
}
@media(min-width:1000px){
  #mainBlog{
      width:85%
  }
  #mainBlog article.hentry p{
      padding:1.2vh 2vw 0;
      text-align:justify
  }
  .webMentions{
      width:70%
  }
  .blogComments{
      width:70%;
      padding:1em;
      margin:auto
  }
  .comment{
      width:70%;
      margin:auto;
      border-radius:5px
  }
  .footLogo{
      width:20%
  }
  @supports(display:grid){
      .footLogo{
          grid-column:6/9;
          width:auto
      }
  }
}
@media(min-width:1300px){
  #mainBlog{
      width:80%
  }
  .webMentions{
      width:60%
  }
  .blogComments{
      width:50%;
      padding:1em;
      margin:auto
  }
  .comment{
      width:50%;
      margin:auto;
      border-radius:5px
  }
  .footLogo{
      width:15%
  }
  .footLogo img{
      width:100%
  }
  @supports(display:grid){
      .footLogo{
          grid-column:7/8;
          width:auto
      }
  }
}
@media(min-width:1400px){
  .blogComments{
      width:40%;
      padding:3em;
      margin:auto
  }
  .blogPic img{
      max-height:none
  }
  .comment{
      width:40%;
      margin:auto;
      border-radius:5px
  }
}
@media(min-width:1650px){
  #mainBlog{
      width:70%
  }
  #mainBlog .hentry p{
      font-size:1.05em
  }
}
@media(min-width:1900px){
  #mainBlog{
      width:60%
  }
  .footLogo{
      width:8.33%
  }
  #mainBlog article.hentry p{
      padding:2vh 5vh 0;
      text-align:justify;
      font-size:1.2em
  }
  @supports(display:grid){
      .footLogo{
          width:auto
      }
  }
}
@media(min-width:2200px){
  #mainBlog{
      width:50%;
      margin:auto
  }
  #mainBlog .hentry p{
      font-size:1em
  }
}
@media(min-width:0px) and (max-width:767px){
  #footerContainer{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:100%;
      background-size:cover
  }
  #footerWrap{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:100%;
      margin:0;
      padding:4vh 0 2vh
  }
  #footerTop{
      display:inline-flex;
      align-items:flex-start;
      justify-content:center;
      flex-flow:row wrap;
      width:100%
  }
  #footNaples{
      width:50%;
      text-align:left;
      order:1;
      padding-left:1vw
  }
  #footNaples h3{
      margin-top:0;
      color:var(--color-white)
  }
  #footNaples p{
      font-size:.65em;
      font-weight:400;
      line-height:135%
  }
  #footSearch{
      width:90%;
      order:3;
      margin:2vh auto
  }
  #footBonita{
      width:50%;
      text-align:right;
      order:2;
      padding-right:1vw
  }
  #footBonita h3{
      margin-top:0;
      text-align:right;
      color:var(--color-white)
  }
  #footBonita p{
      color:var(--color-white);
      font-size:.65em;
      font-weight:400;
      line-height:135%
  }
  #footNaples p a{
      color:var(--color-white)
  }
  #footerBottom{
      width:100%;
      padding-top:2vh
  }
  #footerBottom img{
      width:40px;
      margin-top:2vh
  }
  #footerBottom p{
      font-size:.85em;
      font-weight:600;
      width:100%;
      line-height:105%
  }
  #footerBottom a{
      text-decoration:none;
      color:var(--color-white)
  }
  .moveItRight{
      text-align:left;
      font-size:.85em
  }
  .moveItLeft{
      text-align:right;
      font-size:.85em
  }
  .moveItSpacing{
      margin:2vh 6vw 0;
      font-size:.85em
  }
  @supports(display:inline-grid){
      #footerContainer{
          grid-column:1/-1
      }
      #footerWrap{
          grid-column:1/-1
      }
      #footerTop{
          grid-column:1/-1;
          display:inline-grid;
          grid-template-columns:repeat(15,1fr);
          grid-template-rows:auto
      }
      #footNaples{
          grid-column:1/8;
          width:auto
      }
      #footSearch{
          grid-column:1/-1;
          width:auto
      }
      #footBonita{
          grid-column:8/16;
          width:auto
      }
      #footerBottom{
          grid-column:1/-1
      }
  }
}
@media(min-width:450px) and (max-width:767px){
  #footNaples p{
      font-size:.8em
  }
  #footBonita p{
      font-size:.8em
  }
}
@media(min-width:768px){
  #footerContainer{
      display:flex;
      align-items:flex-start;
      justify-content:center;
      flex-flow:row wrap;
      width:100%;
      background-repeat:no-repeat;
      background-position:top center;
      background-attachment:fixed;
      background-size:cover
  }
  #footerWrap{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:95%;
      margin:0 2.5%;
      padding:12vh 0
  }
  #footerTop{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-flow:row wrap;
      width:100%
  }
  #footNaples{
      width:30%;
      text-align:left
  }
  #footNaples h3{
      margin-top:0;
      color:var(--color-white)
  }
  #footNaples p{
      font-size:.8em
  }
  #footNaples p a{
      color:var(--color-white)
  }
  #footSearch{
      width:40%
  }
  #footSearch img{
      width:95%
  }
  #footBonita{
      width:30%;
      text-align:right
  }
  #footBonita h3{
      margin-top:0;
      text-align:right;
      color:var(--color-white)
  }
  #footBonita p{
      font-size:.8em;
      color:var(--color-white)
  }
  #footerBottom{
      width:100%;
      margin-top:4vh;
      padding-top:4vh
  }
  #footerBottom p{
      font-size:.8em;
      color:var(--color-white)
  }
  #footerBottom a{
      text-decoration:none;
      color:var(--color-white)
  }
  #footerBottom img{
      height:45px
  }
  .moveItRight{
      margin-right:2vw;
      font-size:.95em
  }
  .moveItLeft{
      margin-left:2vw;
      font-size:.95em
  }
  .moveItSpacing{
      margin:0 2vw;
      font-size:.95em
  }
  @supports(display:inline-grid){
      #footerContainer{
          grid-column:1/-1
      }
      #footerWrap{
          grid-column:1/-1
      }
      #footerTop{
          grid-column:1/-1;
          display:inline-grid;
          grid-template-columns:repeat(100,1fr);
          grid-template-rows:auto
      }
      #footNaples{
          grid-column:1/34;
          width:auto
      }
      #footSearch{
          grid-column:34/67;
          width:auto
      }
      #footBonita{
          grid-column:67/101;
          width:auto
      }
      #footerBottom{
          grid-column:1/-1
      }
  }
}
@media(min-width:1000px){
  #footerWrap{
      width:85%;
      margin:0 7.5%;
      padding:10vh 0
  }
  #footNaples p{
      font-size:.9em
  }
  #footSearch p{
      font-size:1.05em
  }
  #footBonita p{
      font-size:.9em
  }
  #footerBottom p{
      font-size:.9em
  }
  .moveItRight{
      font-size:.7em
  }
  .moveItLeft{
      font-size:.7em
  }
  .moveItSpacing{
      font-size:.7em
  }
}
@media(min-width:1300px){
  #footBonita p{
      font-size:1em
  }
  #footNaples p{
      font-size:1em
  }
  #footSearch p{
      font-size:1.1em
  }
  #footerBottom p{
      font-size:.95em
  }
  .moveItRight{
      font-size:.75em
  }
  .moveItLeft{
      font-size:.75em
  }
  .moveItSpacing{
      font-size:.75em
  }
  #footerBottom img{
      height:40px
  }
}
@media(min-width:1600px){
  #footBonita p{
      font-size:1.1em
  }
  #footNaples p{
      font-size:1.1em
  }
  #footSearch p{
      font-size:1.2em
  }
  #footerBottom p{
      font-size:1em
  }
  #footerWrap{
      width:75%;
      margin:0 12.5%;
      padding:10vh 0
  }
}
@media(min-width:1900px){
  #footSearch p{
      font-size:1.3em
  }
  #footerWrap{
      width:65%;
      margin:0 17.5%
  }
}
@media(min-width:2200px){
  #footSearch p{
      font-size:1.4em
  }
  #footerWrap{
      width:60%;
      margin:0 20%
  }
}
.topSpace2{
  padding-top:2vh
}
.topSpace3{
  padding-top:3vh
}
.topSpace4{
  padding-top:4vh
}
.topSpace5{
  padding-top:5vh
}
.topSpace6{
  padding-top:6vh
}
.topSpace7{
  padding-top:7vh
}
.topSpace8{
  padding-top:8vh
}
.fullSpace1{
  margin:1vh 0
}
.fullSpace2{
  margin:2vh 0
}
.fullSpace3{
  margin:3vh 0
}
.fullSpace4{
  margin:4vh 0
}
.fullSpace5{
  margin:5vh 0
}
.fullSpace6{
  margin:6vh 0
}
.fullSpace7{
  margin:7vh 0
}
.fullSpace8{
  margin:8vh 0
}
.fullSpace8{
  margin:10vh 0
}
@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){
  #mainMenu .logo img{
      padding-right:40%
  }
  #garageCabinetry,#garageFloorCoating{
      padding-top:0;
      height:32vh
  }
  #serviceGarageCenter,#serviceGarageLeft,#serviceGarageRight{
      padding-top:0;
      height:32vh
  }
  #ctaContainerWrapper{
      display:none
  }
}


/* ccccc */
@keyframes slideDown{
  0%{
      bottom:100vh
  }
  100%{
      bottom:0
  }
}

.slideDown.t-default{
  animation-name:slideDown
}

@media(prefers-reduced-motion:reduce){
  *{
      animation-duration:0s!important;
      animation-iteration-count:1!important;
      transition-duration:0s!important;
      scroll-behavior:auto!important
  }
}

.animated{
  -webkit-animation-duration:1s;
  animation-duration:1s;
  -webkit-animation-fill-mode:both;
  animation-fill-mode:both
}
.animated.infinite{
  -webkit-animation-iteration-count:infinite;
  animation-iteration-count:infinite
}

.animated.flip{
  -webkit-backface-visibility:visible;
  backface-visibility:visible;
  -webkit-animation-name:flip;
  animation-name:flip
}

/* logo */
.logoMBMRLG {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 200px;
}

.companyNameLG {
  position: absolute;
  z-index: 1;
  left: 150px;
  top: 0px;
  height: 50px;
  width: 200px;
}

.logoMBMRMD {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 200px;
}

.companyNameMD {
  position: absolute;
  z-index: 1;
  left: 100px;
  top: 0px;
  height: 50px;
  width: 200px;
}

.logoMBMRSM {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 0px;
  height: 50px;
  width: 200px;
}

.companyNameSM {
  position: absolute;
  z-index: 1;
  left: 100px;
  top: 0px;
  height: 50px;
  width: 200px;
}


.logoMBMRXS {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 0px;
  height: 50px;
  width: 200px;
}

.companyNameXS {
  position: absolute;
  z-index: 1;
  left: 100px;
  top: -10px;
  height: 50px;
  width: 200px;
}
