/**
 * =============================================================================
 * @template    Modal Styles
 * =============================================================================
 */
.newsletter-pop-up.active {
  opacity: 1 !important;
  z-index: 99999 !important;
}
.newsletter-pop-up {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transition: 0.25s ease-in;
}
.newsletter-pop-up .newsletter-background {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.7;
}
.newsletter-pop-up .newsletter-wrapper {
  margin: 0 auto;
  max-width: 50%;
  position: relative;
}
.newsletter-pop-up .newsletter-wrapper #modal_close {
  position: absolute;
  right: -10px;
  top: -15px;
  border-radius: 15px;
  height: 28px;
}
/**
 * =============================================================================
 * @template    search pop up
 * =============================================================================
 */
.btn-search {
  display: inline-block;
  float: right;
  padding-right: 10px;
  padding: 0 10px 0 0;
  height: 56px;
  line-height: 62px;
}
.btn-search button {
  color: #ed1c24;
  background: none;
  border: none;
}
.btn-search button i {
  font-family: 'FontAwesome';
  font-style: normal;
  text-decoration: none;
}
.btn-search button:hover {
  color: #287151;
}
.search-results {
  padding-top: 30px;
  padding-bottom: 40px;
}
#search-popup-wrap.obscure {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  content: '';
  background: rgba(9, 9, 9, 0.67);
  z-index: 4;
}
#search-popup-box .popup {
  width: 80%;
  max-width: 400px;
  border-radius: 16px;
  padding: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -moz-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  -o-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
  background: #fff;
  text-align: center;
  z-index: 3;
}
#search-popup-box .popup .closeBtn {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 35px;
  font-size: 32px;
  text-indent: 1px;
  text-align: center;
  vertical-align: top;
  background: #fff;
  border-radius: 100%;
  border: solid 2px #ed1c24;
  position: absolute;
  top: -15px;
  right: -15px;
  font-weight: bold;
  color: #333;
}
#search-popup-box .popup .closeBtn:hover {
  color: #ed1c24;
  transition: color .5s ease;
}
#search-popup-box .popup .closeBtn i {
  font-weight: bold;
  line-height: 35px;
}
#search-popup-box .popup h4 {
  background: #ed1c24;
  margin: 0;
  padding: 40px 30px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
  font-family: 'Lato', sans-serif !important;
  font-weight: 500 !important;
  font-size: 3rem;
}
#search-popup-box .popup form {
  background: #fff;
  padding: 36px 30px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
#search-popup-box .popup form label {
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  word-break: keep-all;
  line-height: normal;
  vertical-align: middle;
  display: block;
  min-height: 35px;
  padding: 0 30px 0 10px;
}
#search-popup-box .popup form input {
  overflow: auto;
  background: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  vertical-align: middle;
  border: none;
  font-weight: 100;
  font-family: sans-serif;
  font-size: 17px;
  color: #969696;
  min-height: 35px;
  height: auto;
  display: inline;
}
#search-popup-box .popup form input:focus {
  outline: none;
  border: none !important;
  box-shadow: none;
}
#search-popup-box .popup form button {
  overflow: auto;
  background: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  vertical-align: middle;
  border: none;
  font-weight: 100;
  font-family: sans-serif;
  font-size: 17px;
  color: #969696;
}
#search-popup-box .popup form button:focus {
  outline: none;
}
#search-popup-box .popup form button:hover {
  color: #ed1c24;
  transition: color .5s ease;
}
#search-popup-box .animationOpen,
#search-popup-box .animationClose {
  display: block;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}
#search-popup-box .animationOpen {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
#search-popup-box .animationClose {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -moz-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  -o-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
}
div#search-popup-box {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 500;
}
#search-popup-box i.fas.fa-search {
  color: black;
  font-family: 'FontAwesome';
  font-style: normal;
  text-decoration: none;
}
/**
 * =============================================================================
 * @template    LESS Variables 
 * =============================================================================
 */
/**
 * =============================================================================
 * @template    Forms
 * =============================================================================
 */
form label {
  display: block;
}
form span {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
}
form input {
  width: 100%;
  display: block;
}
form textarea {
  width: 100%;
  min-height: 200px;
}
form .form_footer button {
  max-width: 100%;
  background: #ed1c24;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px;
  font-style: normal;
  font-weight: 500;
  border: none;
  font-size: 2rem;
}
form .form_footer button:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: underline;
}
form legend {
  font-size: 25px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  border: none;
}
form ul {
  list-style: none;
  padding: 0;
  margin-left: 0px !important;
}
.page-13 form#form_id-1 {
  width: 100%;
}
.page-13 .content_name-contact_form {
  width: 100%;
}
.page-13 .cms-nested-content-item {
  clear: inherit !important;
}
/**
 * =============================================================================
 * @template    Fonts & Defaults 
 * =============================================================================
 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 3.5rem;
}
h3 {
  font-size: 2.5rem;
}
h4 {
  font-size: 1.8rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1.0rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  margin-top: 0px;
}
a {
  color: #000000;
  font-family: 'Rubik', sans-serif;
  text-decoration: underline;
}
a:hover {
  color: #ed1c24;
  text-decoration: none;
}
h1,
h2,
h3 {
  text-transform: uppercase;
}
h4 {
  color: #000000;
}
b,
strong {
  font-weight: 600;
  font-family: 'rubik';
}
span.file-description {
  color: #ed1c24;
}
em strong a {
  background: #ed1c24;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-style: normal;
  display: block;
  margin-top: 20px;
}
em strong a:hover {
  background: #000000;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-style: normal;
}
a.expand-btn {
  background: #ed1c24;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-style: normal;
  display: block;
  margin-top: 20px;
  clear: both;
}
a.expand-btn:hover {
  background: #000000;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-style: normal;
}
/**
 * =============================================================================
 * @template    Images
 * =============================================================================
 */
.slick-slider button {
  max-width: 10%;
  background: none;
  border: none;
}
.slick-slider .slick-prev {
  position: absolute;
  z-index: 9999;
  top: 38%;
}
.slick-slider .slick-next {
  position: absolute;
  z-index: 9999;
  top: 38%;
  right: 0;
}
.slick-carousel img {
  width: 100%;
}
.slick-dots {
  display: none !important;
}
.image_after_heading_right {
  float: right;
  margin-left: 40px;
  max-width: 400px;
}
.image_after_heading_right img {
  width: 100%;
}
.image_gallery {
  width: 33%;
  float: left;
  margin: 20px 0;
  min-height: 290px;
}
.image_gallery img {
  padding: 0 10px;
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.image_after_heading img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
  margin: 20px 0;
}
.icon-left {
  float: left;
  margin-right: 20px;
}
.icon-left .image {
  max-width: 100px;
}
.icon-left .image img {
  width: 100%;
}
.project_image_gallery {
  float: left;
  width: 33%;
  padding: 15px;
}
.project_image_gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.testimonial_image {
  float: right;
  margin-left: 40px;
  max-width: 400px;
}
.testimonial_image img {
  width: 100%;
}
/**
 * =============================================================================
 * @template    Layout
 * =============================================================================
 */
#main {
  max-width: 1200px;
  margin: 0 auto;
}
.search-box-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.25s ease-in;
}
.search-box-modal .search-background {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.7;
}
.cms-content {
  margin: 50px 0;
}
.cms-content ul {
  margin-left: 70px;
}
.vet-logo img {
  width: 10%;
}
#footer {
  clear: both;
}
#footer .ftr-inner-wrapper {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  padding: 50px 0;
}
#footer .ftr-inner-wrapper a:hover {
  color: #ed1c24;
}
#footer .ftr-inner-wrapper p {
  margin: 0px;
}
#footer .ftr-logo img {
  width: 100%;
}
#footer .ftr-bottom {
  background: #000000;
  text-align: center;
  padding: 30px 0;
}
#footer .ftr-bottom a {
  color: #ffffff;
}
#footer .ftr-bottom li {
  display: inline;
  padding: 0 15px;
}
#footer .ftr-bottom a#powered-by {
  font-size: 12px;
}
#footer .like-us a {
  color: #fff;
}
#footer .like-us a i {
  color: #fff;
  padding: 0 10px 0 10px !important;
}
#footer .like-us a i:hover {
  color: #ed1c24;
}
#footer .like-us a {
  text-decoration: none;
}
#footer .like-us a:hover {
  color: #ed1c24;
}
#footer .like-us a .fa-thumbs-up {
  font-family: 'FontAwesome';
  font-size: 30px;
  font-style: initial;
  color: #ffffff;
}
#footer .like-us a .fa-thumbs-up:hover {
  color: #ed1c24;
}
/**
 * =============================================================================
 * @template    Home
 * =============================================================================
 */
.homepage {
  background-color: #000000;
}
.homepage .flip-card {
  height: 350px;
  perspective: 1000px;
}
.homepage .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.homepage .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.homepage .flip-card-front,
.homepage .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #ccc;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.homepage .flip-card-title {
  margin-top: 20px;
}
.homepage .flip-card-title > :not(h3) {
  display: none;
}
.homepage .flip-card-title > h3 {
  font-size: 2rem !important;
}
.homepage .flip-card-front img {
  width: 100%;
  height: auto;
  max-height: 70%;
  object-fit: cover;
}
.homepage .flip-card-front h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}
.homepage .flip-card-back {
  transform: rotateY(180deg);
  background-color: #f8f8f8;
  text-align: center;
}
.homepage .flip-card-back a {
  margin-top: 15px;
  display: inline-block;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}
.homepage .flip-card-back a:hover {
  text-decoration: underline;
}
.homepage .content_id-3 {
  display: none;
}
.homepage .cms-nested-content {
  margin-top: 0px;
}
.homepage .content_id-94 {
  display: none;
}
.homepage .news-signup-button em strong a,
.homepage .virtual-button em strong a {
  margin-top: 0px !important;
  background: #000000;
}
.homepage .news-signup-button em strong a:hover,
.homepage .virtual-button em strong a:hover {
  background: #ed1c24;
  cursor: pointer;
}
.homepage .homeheader-sales {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-bottom: 41px #ed1c24 solid;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}
.homepage .homeheader-sales h1 a {
  color: #ed1c24;
  text-transform: none;
}
.homepage h1 {
  color: #ffffff;
}
.homepage .home-showcase .showcase-inner-wrapper {
  display: flex;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider {
  height: 100%;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list {
  height: 100%;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track {
  height: 100%;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track .img-wrapper {
  position: relative;
  height: 100%;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track .img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track .img-wrapper .slider-desc {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track .img-wrapper .slider-desc .slider-text-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  height: 100%;
  opacity: .7;
}
.homepage .home-showcase .showcase-inner-wrapper .showcase-slider .slick-list .slick-track .img-wrapper .slider-desc p {
  color: #000;
  position: relative;
  z-index: 999;
  margin: 0;
  padding-left: 15px;
}
.homepage .showcase-slider img.slick-slide {
  object-fit: cover;
}
.homepage .showcase-inner-wrapper {
  position: relative;
}
.homepage .showcase-inner-wrapper .col-md-8 {
  padding: 0px;
}
.homepage .showcase-inner-wrapper .showcase-content {
  background: red;
  display: flex;
}
.homepage .showcase-inner-wrapper .showcase-content .showcase-text {
  max-width: 375px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  align-content: center;
  color: #ffffff;
}
.homepage .showcase-inner-wrapper .showcase-content em strong a {
  background: #000000;
  color: #ffffff;
  padding: 15px;
  text-transform: uppercase;
  font-style: normal;
}
.homepage .home-showcase img {
  width: 100%;
}
.homepage .box-text {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  min-height: 250px;
  max-height: 350px;
}
.homepage .box-text a {
  color: #ed1c24;
  font-weight: 700;
}
.home-boxes-wrapper {
  padding: 30px;
}
.home-boxes-wrapper .col-md-4 {
  background: #ffffff;
  padding: 0px;
  margin: 0 10px;
}
.home-boxes-wrapper .home-box {
  min-height: 350px;
  background-color: #000000;
  margin-bottom: 40px;
  padding: 0px 15px;
  margin-left: 0px;
  margin-right: 0px;
}
.home-boxes-wrapper .home-box .home-box-inner {
  background: #000000;
  min-height: 350px;
}
.home-boxes-wrapper .home-box a {
  text-transform: uppercase;
}
.home-boxes-wrapper .box-img img {
  width: 100%;
}
.content_id-96 {
  color: #ffffff;
  margin: 0 auto;
  max-width: 1200px;
}
.content_id-96 a {
  color: #ffffff;
}
.content_id-96 .cms-wrapper {
  position: relative;
}
.content_id-96 .cms-wrapper:before {
  content: url("/cms-files/images/proquotes-before.png");
  position: absolute;
  left: 0;
  top: -10%;
  opacity: .5;
  z-index: -1;
}
.content_id-96 .cms-wrapper:after {
  content: url("/cms-files/images/proquotes-after.png");
  position: absolute;
  left: 40%;
  bottom: -5%;
  opacity: .5;
  z-index: -1;
}
/**
 * =============================================================================
 * @template    Subpages
 * =============================================================================
 */
.inner-pages .page-title {
  color: #ffffff;
  background: #000000;
  padding: 25px 0;
  border-bottom: #ed1c24 8px solid;
  text-align: center;
}
.inner-pages h3 {
  color: #ed1c24;
}
.inner-pages .cms-nested-content-item {
  margin: 30px 0;
  clear: both;
}
.page-93 .image_left {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.inner-service-page .inner-service-container {
  height: 350px;
}
.inner-service-page .inner-service-container h3 {
  color: #ffffff;
}
.inner-service-page .service-buttons {
  clear: both;
}
.inner-service-page .gallery-wrapper {
  height: 250px;
}
.inner-service-page .cms-content {
  margin: 40px 0;
}
.inner-service-page .img-wrap {
  float: left;
  width: 70%;
  height: 100%;
}
.inner-service-page .img-wrap img.slick-carousel__image {
  height: 100%;
  object-fit: cover;
}
.inner-service-page .slick-carousel__slide .inner-wrap {
  width: 30%;
  float: left;
  background: #ed1c24;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-service-page .slick-carousel__slide span.file-description {
  color: #ffffff;
}
.project-wrapper {
  margin: 50px 0;
}
.project-wrapper .project-images .inner-wrap {
  text-align: center;
  margin-top: 15px;
}
.project-wrapper .project-images .inner-wrap h4 {
  margin-bottom: 0px;
}
.project-wrapper .project-images .inner-wrap p.gallery-desc {
  color: #ed1c24;
}
.project-wrapper .project-images .all-project-images {
  opacity: 1;
  position: initial;
  transition: 0.25s ease-in;
}
.project-wrapper .project-images .all-project-images .image-1,
.project-wrapper .project-images .all-project-images .image-2,
.project-wrapper .project-images .all-project-images .image-3 {
  display: none !important;
}
.project-wrapper .project-images .toggle-images .image_gallery {
  opacity: 0 !important;
  position: absolute !important;
  z-index: -1;
}
.page-56 .cms-nested-content-item {
  display: flex;
}
.page-56 .feat-projects-main-wrapper .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-56 .projects-outter {
  margin: 20px 0;
  padding: 0 20px;
}
.page-56 .projects-outter .project-link {
  color: #ed1c24;
  font-weight: 700;
  text-transform: uppercase;
}
.page-56 h4.feat-proj-title {
  margin-top: 15px;
}
.page-56 .project-img img {
  width: 100%;
}
.featured-customer {
  min-height: initial;
}
.project-text {
  text-align: center;
}
.page-36 .cms-nested-content-item {
  display: flex;
  flex-direction: column;
  margin: 60px 0;
  position: relative;
}
.page-36 h3:after {
  content: " ";
  background-image: url(/cms-files/images/proquotes-after.png);
  width: 75px;
  height: 75px;
  background-size: cover;
  position: absolute;
  z-index: -1;
  opacity: .3;
}
.page-81 .cms-nested-content-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.page-93 .image_left .image {
  float: left;
  width: 50%;
  padding: 20px;
}
.page-93 .image_left .image img {
  border: solid 20px #000000;
  width: 100%;
}
.page-97 .cms-nested-content li {
  margin-bottom: 20px;
  list-style: none;
}
.page-13 form#form_id-1 {
  padding-right: 30px;
}
.page-13 .content_id-54 {
  float: left;
  width: 50%;
}
.page-13 .content_id-55 {
  float: left;
  width: 50%;
  padding-left: 20px;
}
.contact-social-icons a {
  text-decoration: none !important;
}
.contact-social-icons a:hover {
  text-decoration: none !important;
}
.contact-social-icons .fab {
  font-family: 'FontAwesome';
  font-size: 30px;
  font-style: initial;
  color: #ed1c24;
  padding-right: 20px;
}
.contact-social-icons .fab:hover {
  color: #000000;
}
/**
 * =============================================================================
 * @template    Navigation
 * =============================================================================
 */
#header .label {
  display: none;
}
#header nav li a {
  color: #000000;
}
#header nav li a:hover {
  color: #ed1c24;
}
#header nav .level-0 li.page-services a,
#header nav .level-0 li.page-products:hover a {
  color: #000 !important;
  cursor: auto;
}
#header nav .level-0 li.page-services .level-2 li:hover a,
#header nav .level-0 li.page-products:hover .level-2 li:hover a {
  color: #ed1c24 !important;
}
#header nav .level-0 .page-contact-us {
  display: none;
}
#header nav ul.level-2 {
  width: max-content;
  padding: 20px 0;
}
#header nav ul.level-2 li a:hover {
  color: red !important;
  cursor: pointer !important;
}
#header .hdr-bottom-bar {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  padding: 10px 30px;
}
#header .hdr-logo {
  max-width: 350px;
}
#header .hdr-logo img {
  width: 100%;
}
#header .hdr-btn {
  background: #000000;
  padding: 20px 0;
}
#header .hdr-btn a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 25px 20px;
}
#header .hdr-btn:hover {
  background: #ed1c24;
}
#header .hdr-top-bar {
  background: #ed1c24;
  padding: 7px 30px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .hdr-top-bar .contact-social-icons i {
  font-size: 24px;
  color: #fff;
}
#header .hdr-top-bar .contact-social-icons i:hover {
  color: #000;
}
#header .hdr-top-bar .search-button {
  text-decoration: none;
  padding-right: 30px;
}
#header .hdr-top-bar .search-button .fa-search {
  font-family: 'FontAwesome';
  font-style: normal;
  text-decoration: none;
}
#header .hdr-top-bar p {
  margin: 0px;
  display: initial;
}
#header .hdr-top-bar a {
  color: white;
}
#header .hdr-top-bar a:hover {
  color: #000;
}
#header .responsive_nav {
  text-align: left;
}
#header .responsive_nav.toggle-mode.toggle-open > ul {
  position: absolute;
  background: #ffffff;
  width: max-content;
  z-index: 1;
}
.hdr-bottom-bar a {
  text-decoration: none !important;
}
.hdr-bottom-bar a:hover {
  text-decoration: none !important;
}
.hdr-bottom-bar .fab {
  font-family: 'FontAwesome';
  font-size: 30px;
  font-style: initial;
  color: #ed1c24;
}
.hdr-bottom-bar .fab:hover {
  color: #000000;
}
/**
 * =============================================================================
 * @template    Responsive
 * =============================================================================
 */
@media only screen and (max-width: 1375px) {
  #header .hdr-bottom-bar .hdr-nav .level-0 .page-contact-us {
    display: block;
  }
  #header .hdr-bottom-bar .hdr-btn {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  #main {
    padding: 0 25px;
  }
  .home-showcase .showcase-inner-wrapper .img-wrapper img {
    max-height: 350px;
  }
}
@media only screen and (max-width: 1150px) {
  .homepage .news-signup-button {
    padding-bottom: 20px;
  }
  .homepage .homeheader-sales {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .homepage .home-showcase .showcase-inner-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .homepage .home-showcase .showcase-inner-wrapper .img-wrapper img {
    max-height: 350px !important;
  }
  .homepage .home-showcase .showcase-inner-wrapper .showcase-content .showcase-text {
    max-width: 500px;
    padding: 20px 0;
  }
  .homepage .home-boxes-wrapper .col-md-4 {
    width: 50%;
    float: left;
  }
  .image_left img {
    width: 100%;
  }
  #footer .col-md-3 {
    width: 50%;
  }
  #footer .col-md-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .newsletter-pop-up .newsletter-wrapper {
    max-width: 90%;
  }
  .showcase-inner-wrapper .img-wrapper {
    max-height: 275px;
  }
  .page-10 .image_after_heading_right {
    float: none;
    margin-left: 0px;
    margin-bottom: 15px;
  }
  .page-13 .content_id-54 {
    width: 100% !important;
    float: none !important;
    padding-right: 0px !important;
  }
  .page-13 .content_id-55 {
    float: none;
    width: 100%;
  }
  .page-93 .image_left .image {
    float: none;
    width: 100%;
  }
  .inner-service-page .slick-carousel__slide .inner-wrap {
    width: 100%;
  }
  .inner-service-page .inner-wrap {
    width: 100%;
    float: none;
  }
  .inner-service-page .img-wrap {
    float: none;
    width: 100%;
  }
  .inner-service-page .inner-service-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  form {
    width: 100% !important;
    float: none !important;
    padding-right: 0px !important;
  }
  .image_left img {
    width: 100%;
  }
  .project_image_gallery {
    width: 50%;
  }
  .cms-content .cms-wrapper {
    display: table;
  }
  .cms-content .cms-wrapper .image_after_heading_right {
    display: table-footer-group;
    float: none;
  }
  .cms-content .cms-wrapper .testimonial_image {
    display: table-footer-group;
    float: none;
  }
  .cms-content img {
    margin-bottom: 15px;
  }
  #footer .ftr-bottom li {
    display: block;
  }
}
@media only screen and (max-width: 650px) {
  #header .hdr-bottom-bar {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  #header .hdr-btn {
    display: inline;
  }
  #header .hdr-nav {
    display: inline-block;
  }
  #header .hdr-logo {
    margin: 0 auto 20px auto;
  }
  .homepage .home-boxes-wrapper .col-md-4 {
    width: 100%;
  }
  .inner-pages .gallery-wrapper {
    height: auto;
  }
  .inner-pages .gallery-wrapper .image_gallery {
    width: 100%;
    float: none;
    clear: both;
  }
  .inner-pages .gallery-wrapper .image_gallery img {
    max-height: none;
  }
  .inner-pages .page-title h1 {
    padding: 0 20px;
  }
  .page-13 .cms-content .cms-wrapper {
    display: block;
  }
  .image_gallery {
    width: 100%;
  }
  .cms-content .cms-wrapper {
    display: table;
  }
  .cms-content .cms-wrapper .image_after_heading_right {
    display: table-footer-group;
    float: none;
  }
  .cms-content .cms-wrapper .testimonial_image {
    display: table-footer-group;
    float: none;
  }
  .cms-content img {
    margin-bottom: 15px;
  }
  #footer .ftr-inner-wrapper {
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
  }
  #footer .col-md-3 {
    width: 80%;
  }
  #footer .col-md-6 {
    width: 80%;
  }
}
@media only screen and (max-width: 550px) {
  .homepage .showcase-inner-wrapper .img-wrapper {
    max-height: 300px;
  }
  .homepage .home-showcase .img-wrapper img {
    height: 300px !important;
    max-height: none;
  }
  .icon-left {
    float: none;
  }
  .project_image_gallery {
    width: 100%;
  }
}
/**
 * =============================================================================
 * @template    lightbox
 * =============================================================================
 */
body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 0px;
  /* Image border */
  border: 30px solid #000000;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: #000000;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/cms-files/images/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/cms-files/images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/cms-files/images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/cms-files/images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}