/*
-----------------------------------------------
imarketsolutions.com 
Stylesheet: Master.css
Created: 8/28/2013
Author:  Ben Schiling
Organization:  iMarket Solutions
----------------------------------------------- */

@media all and (min-width: 801px) {
  /* --- Fade in --- */
  @keyframes fadeIn {
    from {
    opacity:0;
    }
    to {
    opacity:1;
    }
  }

  .fade-in {
    visibility: hidden;
  }

  .loaded .fade-in,
  .no-js .fade-in {
    visibility: visible;
    animation: fadeIn 1s both;
  }

  /* --- Scale in center --- */
  @keyframes scale-in-center {
    0% {
      -webkit-transform:scale(0);
      transform:scale(0);
      animation-timing-function: ease-out;
      opacity: 0;
    }
    50% {
    }
    100% {
      -webkit-transform:scale(1);
      transform:scale(1);
      opacity: 1;
    }
  }

  .scale-in-center {
    opacity: 0;
  }

  .loaded .scale-in-center,
  .no-js .scale-in-center {
    -webkit-animation: scale-in-center .8s cubic-bezier(.25,.46,.45,.94) both;
    animation: scale-in-center .8s cubic-bezier(.25,.46,.45,.94) both;
  }
}

/*----- LAYOUTS - TYPOGRAPHY ----- */
@media all and (min-width: 571px) {
  h1,.h1 {font-size: 3.8em;}
  h2,.h2 {font-size: 3em;}
  h3,.h3 {font-size: 2.6em;}
  h4,.h4 {font-size: 2em;}
  h5,.h5 {font-size: 1.8em;}
  h6,.h6 {font-size: 1.6em;}
  p, li {font-size: 1.6em; line-height:1.4em;}
}
  
@media all and (min-width: 801px) {
  h1,.h1 {font-size: 4em;}
  h2,.h2 {font-size: 3.2em;}
  h3,.h3 {font-size: 2.8em;}
  h4,.h4 {font-size: 2.2em;}
  h5,.h5 {font-size: 1.8em;}
  h6,.h6 {font-size: 1.7em;}
  p, li {font-size: 1.7em;}
}
  
@media all and (min-width: 1025px) {
  h1,.h1 {font-size: 4.5em;}
  h2,.h2 {font-size: 3.6em;}
  h3,.h3 {font-size: 3em;}
  h4,.h4 {font-size: 2.4em;}
  h5,.h5 {font-size: 2em;}
  h6,.h6 {font-size: 1.8em;}
  p, li {font-size: 1.8em;}
}
  
@media all and (min-width: 571px) {
  .width-limiter {
    width:calc(100% - 40px);
  }
}
  
/* imsLightbox Modal Forms */
@media all and (min-width: 571px) {
  .ims-lightbox {
    width: 80%;
    left: 10%;
    border-radius: 10px;
  }
}
@media all and (min-width: 801px) {
  .ims-lightbox {
    width: 85%;
    left: 7.5%;
    height: 75%;
    top: 12.5%;
  }
  .ims-lightbox .close-popup {
    top: -20px;
  }
}
@media all and (min-width: 1025px) {
  .ims-lightbox {
    width: 70%;
    left: 15%;
  }
}
@media all and (min-width: 1251px) {
  .ims-lightbox {
    width: 60%;
    left: 20%;
  }
}

/* responsive.css */
@media all and (min-width: 801px) {
  #content-phone-callout a {
    text-decoration: none;
  }
  .full-width #mini-form-cta {
    padding: 56px 0;
  }
  .full-width #mini-form-cta .width-limiter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .full-width #mini-form-cta span:not(.cta-phone),
  .full-width #mini-form-cta .cta-button {
    margin-right: 20px;
  }
  .full-width #mini-form-cta span {
    font-size: 3.6em;
  }
  .full-width #mini-form-cta span,
  .full-width #mini-form-cta .cta-button {
    margin-bottom: 0;
  }
  .full-width #mini-form-cta img {
    width: 49px;
    height: 49px;
  }
  #mini-form-cta .cta-phone a {
    text-decoration: none;
  }
}
@media all and (min-width: 1501px) {
  #mini-form-cta {
    position: relative;
  }
  .webp #mini-form-cta::before {
    background-image: url("/assets/templates/main/images/backgrounds/bg-shapes-left.webp");
  }
  .no-webp #mini-form-cta::before {
    background-image: url("/assets/templates/main/images/backgrounds/bg-shapes-left.png");
  }
  #mini-form-cta::before {
    content: '';
    position: absolute;
    width: 254px;
    height: 100%;
    top: 0;
    left: -75px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
  }
  .webp #mini-form-cta::after {
    background-image: url("/assets/templates/main/images/backgrounds/bg-shapes-right.webp");
  }
  .no-webp #mini-form-cta::after {
    background-image: url("/assets/templates/main/images/backgrounds/bg-shapes-right.png");
  }
  #mini-form-cta::after {
    content: '';
    position: absolute;
    width: 254px;
    height: 100%;
    top: 0;
    right: 0px;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 1701px) {
  #mini-form-cta::before {
    left: 0;
  }
   #mini-form-cta::after {
     right: 0;
   }
}
  
/* End - imsLightbox Modal Forms */

/* Hidden Content / Read More Style */

@media all and (min-width: 801px) {
  .hc-trigger {
    display: none;
  }
}
  
/*----- LAYOUTS - ERRORS & CONFIRMATIONS ----- */

@media all and (min-width: 571px) {
  #error-container {
    border-radius: 0 0 0 7px !important;
    width:50% !important;
    right: 0 !important;
  }
}
  
@media all and (min-width: 801px) {
  #error-container {
    width:40% !important;
    right: 2.5% !important;
  }
}

/* --- GENERAL UTILITY ------------------------------------------------------ */
/* --- 404 PAGE ------------------------------------------------------------- */

/*----- LAYOUTS - 404 PAGE ----- */

@media all and (min-width: 801px) {
  #page-not-found #top-content p {
    font-size: 2em;
  }
}

/* --- MASTHEAD ------------------------------------------------------------- */
/* --- LAYOUTS/ANIMATION ---------------------------------------------------- */

/* CODELIBENTRY_ENTRY: 6 */
@media all and (min-width: 801px) {
  #fixed-masthead {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    padding: 15px 0;
  }
  #fixed-masthead #fixed-masthead-left,
  #fixed-masthead #fixed-masthead-center,
  #fixed-masthead #fixed-masthead-right {
    width: 33.33%;
  }
  #fixed-masthead #fixed-masthead-center {
    padding: 0 5px;
  }
  #fixed-masthead .logo {
    max-width: 262px;
  }
  #fixed-masthead .cta-button a,
  #fixed-masthead .cta-button button {
    font-size: 1.8em;
  }
  #fixed-masthead .tagline {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media all and (min-width: 1025px) {
  #fixed-masthead .phone-number {
    font-size: 4.5em;
  }
  #fixed-masthead .cta-button a,
  #fixed-masthead .cta-button button {
    font-size: 2em;
  }
}

@media all and (min-width: 1101px) {
  #fixed-masthead #fixed-masthead-center {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
  }
  #fixed-masthead #fixed-masthead-left-center,
  #fixed-masthead #fixed-masthead-right-center {
    width: 50%;
  }
}

@media all and (min-width: 801px) {
  #container-fixed-masthead {
    display: block;
    position: fixed;
    top: -300px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    transition: top 0.6s, left 0.3s;
    z-index: 1000;
  }
  .ims-is-scrolled #container-fixed-masthead {
    top: 0;
  }
  #fixed-masthead {
    overflow: hidden;
    position: relative;
  }

  #masthead .masthead-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #masthead .masthead-left,
  #masthead .masthead-center,
  #masthead .masthead-right {
    width: 33.33%;
  }
  #masthead .masthead-center {
    padding: 0 5px;
  }
  #masthead .masthead-right {
    text-align: right;
  }
  .masthead-right-inner {
    text-align: center;
    flex-direction: column;
    margin-right: 0;
  }
  .mobile-fixed-footer {
    background-color: transparent;
  }
  #container-footer {
    padding-top: 0;
    margin-bottom: 0;
  }
  .mobile-col:not(.mobile-phone),
  .mobile-phone .phone-number svg {
    display: none;
  }
  .mobile-fixed-footer,
  .mobile-fixed-footer.fixed-footer-chat {
    position: relative;
    box-shadow: none;
    height: auto;
    z-index: initial;
  }
  .mobile-phone {
    width: 100%;
    display: block;
  }
  .mobile-phone .phone-number {
    font-size:3.2em;
    color: #3b3b3b;
  }
  .mobile-fixed-footer.fixed-footer-chat .phone-number a {
    padding: 0;
    background-color: transparent;
    color: #3b3b3b;
  }
  .mobile-fixed-footer.fixed-footer-chat .phone-number a::after {
    display: none;
  }
  #masthead .cta-button a,
  #masthead .cta-button button {
    font-size: 1.9em;
    padding: 0 25px;
  }

  #masthead .masthead-top.scrolling-banner .scroll-container {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
  }
  #masthead .masthead-top.scrolling-banner p {
    animation: scrolling-banner 40s infinite linear;
  }
  #masthead .masthead-top.scrolling-banner p::before {
    content: '\2022';
    position: relative;
    margin-right: 25px;
  }
  #masthead .masthead-top.scrolling-banner p .extra-text {
    display: initial;
  } 
  #masthead .masthead-top.scrolling-banner p .extra-text::before {
    content: '\2022';
    margin: 0 25px;
  }
  #masthead .masthead-top.scrolling-banner:hover p {
    animation-play-state: paused;
  }
}
@media all and (min-width: 1025px) {
  .mobile-phone .phone-number {
    font-size: 4.5em;
  }
  #masthead .cta-button a,
  #masthead .cta-button button {
    padding: 0 30px;
    font-size: 2em;
  }
}

/*--------------------------------------------------------------------------- */
/* --- BEGIN PRIMARY NAVIGATION (DESKTOP) ----------------------------------- */

@media all and (min-width: 571px) {
  #primary-navigation .phone-number {
    font-size: 4em;
  }
}

@media all and (min-width: 801px) {

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- SET UP --------------------------------------------------------------- */

  #container-primary-navigation .nav-logo,
  #container-primary-navigation .phone-number {
    display: none;
  }

  /* no toggle nav button for any desktop view */
  .js #toggle-navigation.toggle-controller-state {
    font-size:0;
    height: 0;
    width:0;
  }
  .js #toggle-navigation a {
    font-size:0;
  }

  /* Base CSS for #container-primary-navigation */
  #container-primary-navigation {
    background-color: transparent;
    position: relative;
  }

  /* Base CSS for #primary-navigation */
  #primary-navigation {
    clear: both;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    z-index:800;
  }

  /* Base nav ul CSS */
  #primary-navigation ul {
    display: block;
    list-style: none;
    margin: 0 auto;
    padding: 0;
  }

  /* Base CSS for all nav items */
  #primary-navigation ul li,
  #primary-navigation ul li a {
    text-decoration: none;
    cursor:pointer;
  }

  #primary-navigation a {
    display: block;
    position: relative;
    transition: all 0.2s;
  }

  #primary-navigation a span {
    position: relative;
    line-height: 1.1em;
  }

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- TOP-LEVEL ------------------------------------------------------------ */

  /*-- TOP-LEVEL UL -----------------------*/
  #primary-navigation > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    /* Space items evenly */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /*-- TOP-LEVEL LI -----------------------*/
  #primary-navigation .nav-level-1 {
    position: relative;
    font-size: 1.5em;
    text-transform: uppercase;
  }

  #primary-navigation li.docid-1,
  #primary-navigation .wf-location-home {
    display: none;
  }

  /*-- TOP-LEVEL A -----------------------*/
  #primary-navigation .nav-level-1 > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    /* Vertically-Center spans within links */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* Set preferred height of link */
    height: 50px;

    /* Set up font styles here */
    font-weight: bold;
    padding: 0 10px;
  }

  /*-- TOP LEVEL LINK COLORS -----------------------*/
  /* Default */
  #primary-navigation .nav-level-1 > a:link,
  #primary-navigation .nav-level-1 > a:visited {
    color: #3b3b3b;
  }

  /* Hover */
  #primary-navigation .nav-level-1 > a:hover,
  #primary-navigation .nav-level-1 > a:active {
    color: #ed1c24;
  }

  /* Current/Active */
  #primary-navigation .nav-level-1.current > a:link,
  #primary-navigation .nav-level-1.current > a:visited,
  #primary-navigation .nav-level-1.current > a:hover,
  #primary-navigation .nav-level-1.current > a:active,
  #service-areas #primary-navigation #nav-21 > a,
  #city-landing-page #primary-navigation #nav-21 > a,
  #wp-blog #primary-navigation #nav-21 > a {
    color: #ed1c24;
  }


  /*-- DROPDOWN ICONS -----------------------*/


  /**** Arrow on the right ****/

  /* Add padding to make room for icon */
  #primary-navigation .nav-level-1:not(.contains-0) > a {
    padding-right: 20px; /* Adjust as needed */
  }

  /* Add icon */
  .nav-level-1:not(.contains-0) > a > span::before {
    content: '';
    background-image: url("/assets/templates/main/images/nav/icon-dropdown.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    height: 100%;
    width: 7px;
    right: -14px;
  }


  /**** Arrow below ****/
  /*.nav-level-1:not(.contains-0) > a::before {
  content: '';
  background-image: url("/assets/templates/main/images/nav/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  height: 6px;
  width: 100%;
  bottom: 4px;
  left: 0;
}*/

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- 2ND-LEVEL ------------------------------------------------------------ */

  /*-- 2ND-LEVEL UL -----------------------*/
  #primary-navigation .nav-level-1 > ul {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
    text-align: left;
    /*top: 50px;*/ /* Just in case top position is wonky */
    width: 300px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-top: 5px;
    padding-bottom: 10px;
  }

  /* Show dropdown ul on hover */
  #primary-navigation .nav-level-1.active > ul {
    display: block;
  }

  /* Postion dropdown ul based on position of parent */
  #primary-navigation .nav-level-1.center-position > ul {
    left: -75px;
  }
  #primary-navigation .nav-level-1.right-position > ul {
    left: auto;
    right: 0;
  }

  /*-- 2ND-LEVEL FLEXBOX UL -----------------------*/

  /* Target Desired Nav Items for Flexbox
  #primary-navigation #nav-8.active > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }*/

  /* Set up Menu Widths 
  #primary-navigation #nav-8 > ul {
    width: 700px;
  }*/

  /*#primary-navigation #nav-11 > ul {*/
  /*width: 520px;*/ /* 2 Columns */
  /*}*/

  /*-- 2ND-LEVEL FLEXBOX LI -----------------------*/

  /* Set Up Column Widths */

  /* 2 Columns */
  /*#nav-11 li.nav-level-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}*/

  /* 3 Columns 
  #nav-8 li.nav-level-2 {
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
  }*/

  /* 4 Columns */
  /*#nav-12 li.nav-level-2 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}*/


  /* Column Background Colors 
  #nav-8 li.nav-level-2:nth-child(odd) {
    background-color: #005972;
  }

  #nav-8 li.nav-level-2:nth-child(even) {
    background-color: #049aa2;
  }*/

  /*-- STYLE 2ND-LEVEL FLEXBOX COLUMN TITLES -----------------------
  #nav-8 .nav-level-2 > a {
    border-bottom: 4px solid #49becc;
    padding-top: 8px; 
    padding-bottom: 4px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  }*/


  /*-- 2ND-LEVEL A -----------------------*/
  .nav-level-2 a {
    padding: 9px 15px 9px 20px;
    line-height: 1em;
    font-weight: 400;
    text-transform: none;
    font-size: 18px;
  }

  /*.nav-level-2:first-child a {
  padding-top: 8px;
}

  .nav-level-2:last-child a {
  padding-bottom: 8px;
}*/

  /*-- 2ND LEVEL LINK COLORS -----------------------*/
  /* Default */
  #primary-navigation .nav-level-2 a:link,
  #primary-navigation .nav-level-2 a:visited {
    color: #3b3b3b;
  }

  /* Hover */
  #primary-navigation .nav-level-2 a:hover,
  #primary-navigation .nav-level-2 a:active {
    background-color: #eda352;
  }

  /* Current/Active */
  #primary-navigation .nav-level-2.current > a:link,
  #primary-navigation .nav-level-2.current > a:visited,
  #primary-navigation .nav-level-2.current > a:hover,
  #primary-navigation .nav-level-2.current > a:active,
  #service-areas #primary-navigation #nav-119 > a,
  #city-landing-page #primary-navigation #nav-119 > a,
  #wp-blog #primary-navigation #nav-88 > a {  
    background-color: #eda352;
  }

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- 3RD-LEVEL ------------------------------------------------------------ */

  /*-- 3RD LEVEL LINK COLORS -----------------------*/
  /* Default */
  #primary-navigation .nav-level-3 a:link,
  #primary-navigation .nav-level-3 a:visited {
    color: #3b3b3b;
  }

  /* Hover */
  #primary-navigation .nav-level-3 a:hover,
  #primary-navigation .nav-level-3 a:active {
    background-color: #eda352;
  }

  /* Current/Active */
  #primary-navigation .nav-level-3.current > a:link,
  #primary-navigation .nav-level-3.current > a:visited,
  #primary-navigation .nav-level-3.current > a:hover,
  #primary-navigation .nav-level-3.current > a:active {
    background-color: #eda352;
  }

  /* Border around contact link */
  /*#nav-103 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #primary-navigation #nav-103.nav-level-1 > a:link,
  #primary-navigation #nav-103.nav-level-1 > a:visited {
    border: 2px solid #fff;
    border-radius: 5px;
    margin-right: 0px;
    height: 40px;
    text-transform: uppercase;
  }
  #primary-navigation #nav-103.nav-level-1 > a:hover,
  #primary-navigation #nav-103.nav-level-1 > a:active {
    background-color: #5C8E1E;
    color: #fff;
  }*/

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- DROPDOWNS - CONTAINERS ----------------------------------------------- */

  #primary-navigation ul li.nav-level-1 > ul {
    transition: box-shadow ease 0.3s, max-height ease 0.3s;
  }

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- EXPAND NAVIGATION BUTTONS (repurposed as close megadropdown) --------- */

  /* no close button for no-touchevents devices */
  .no-touchevents div.expand-nav,
  .no-touchevents div.expand-nav span.nav-expand {
    display:none;
  }
  .nav-level-1.active > div.expand-nav {
    background-color: #00adee;
    background-image: url(/assets/templates/main/images/icons/icon-close.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    background-size: 22px;
    border-radius: 50%;
    color: #000000;
    height: 40px;
    position: absolute;
    left: 280px;
    top: 41px;
    width: 40px;
    z-index: 900;
  }

  /* Standard Button Position */
  .nav-level-1.active.center-position > div.expand-nav {
    left: 210px; 
  }

  /* Left-aligned, 3-4-column menu 
  #primary-navigation #nav-8 > div.expand-nav {
    left: 680px;
  }*/

  /* Left-aligned, 2-column menu */
  /*#primary-navigation #nav-11 > div.expand-nav {*/
  /*left: 500px; *//* Nav width - 20px */
  /*}*/

  /*#primary-navigation #nav-11.center-position > div.expand-nav {*/
  /*left: 423px;*/ /* Custom Adjustment. Not sure what the math is here... */
  /*}*/


  /*#primary-navigation #nav-12 > div.expand-nav {*/
  /*right: -20px;*/  /* This one needs to be right-aligned */
  /*}*/

  .nav-level-1.active.right-position > div.expand-nav {
    left: auto;
    right:-20px;
  }
  .nav-level-1.active > div.expand-nav:hover,
  .nav-level-1.active > div.expand-nav:active {
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0 0;
    background-color: #333333;
    color: #DADADA;
  }
  .nav-level-1.active > div.expand-nav span.nav-expand {
    display: block;
    height: 40px;
    line-height: 40px;
  }
  .mobile-nav-buttons {
    display: none;
  }

  /* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
  /* --- DROPDOWNS - NAV ITEMS ------------------------------------------------ */

} /* @media all and (min-width: 801px) */
  
/* --- PRIMARY NAVIGATION (DESKTOP) ----------------------------------------- */
/* --- TWO-LINE TEXT -------------------------------------------------------- */

/* Two-Line Text */
@media all and (min-width: 1025px) {
  #primary-navigation .nav-level-1 {
    font-size: 1.6em;
  }
}

/* --- END PRIMARY NAVIGATION (DESKTOP) ------------------------------------- */
/*----------------------------------------------------------------------------*/ 

/*----- LAYOUTS - SUBPAGE CONTENT STRUCTURE --------------------------------- */
/* Smaller Desktop */
@media all and (min-width: 801px) {
  #content-wrap {
    padding-top: 60px;
  }
  .content-left,
  .content-right {
    display: inline-block;
    max-width: 100%;
  }
  .content-left {
    width: calc(100% - 350px);
    padding-right: 45px;
  }
  .content-right {
    width: 350px;
  }
  .no-top-content #top-content-wrap > .width-limiter {
    padding-top: 40px;
    padding-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;    
  }
  /* Template Variable Layout Overrides */
  .full-width-layout .content-left,
  .exclude-sidebar .content-left {
    display: block;
    width: 100%;
    padding-right: 0px;
  }
  .full-width-layout .content-right,
  .exclude-sidebar .content-right {
    display: none;
    visibility: hidden;
  }
  #breadcrumbs-container {
    font-size: 18px;
  }
  #top-content h1 {
    margin-bottom: 25px;
  }
}
  
/* Wider Desktop / DesignDemo Size */
@media all and (min-width: 1025px) {
  .content-left {
    width: calc(100% - 510px);
  }
  .content-right {
    width: 510px;
  }
}

/*----- LAYOUTS - FEATURED IMAGE ----- */
/* Smaller Desktop */
@media all and (min-width: 801px) {
  .has-landing-page-image:not(.contact) #top-content-wrap .content-left p,
  .has-landing-page-image:not(.contact) #top-content-wrap .content-left li {
    font-size: 2.1em;
  }
}

/*----------------------------------------------------------------------------*/

/* --- BEGIN FOOTER --------------------------------------------------------- */

@media all and (min-width: 801px) {
  #container-footer .main-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #container-footer .inside-footer {
    padding: 55px 0;
  }
  .container-footer-bottom #flyup-menu, 
  p.imarket-link {
    margin: 0; 
  }
  #container-footer .footer-left,
  #container-footer .footer-right {
    width: 32%;
  }
  #container-footer .footer-center {
    width: 25%;
  }
  #container-footer .main-footer .footer-center,
  #container-footer .main-footer .footer-right {
    text-align: left;
  }
  #container-footer .main-footer .footer-center .footer-heading:first-of-type {
    margin-top: 0;
  }
  #container-footer .main-footer .footer-center .footer-hours {
    margin-bottom: 0;
  }
  #container-footer .main-footer .footer-right {
    padding-bottom: 0;
  }
  #container-footer .footer-phone a {
    text-decoration: none;
  }
  #newsletter-signup {
    box-shadow: none;
  }
  #newsletter-signup .secondary-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #newsletter-signup .secondary-tools-heading {
    margin-bottom: 0px;
    width: 47%;
  }
  #newsletter-signup form {
    margin-left: 20px;
  }
  .social-networking li {
    margin-left: 4px;
  }
  .social-networking li a {
    height: 50px;
    width: 50px;
  }
  #container-footer .cta-button a,
  #container-footer .cta-button button {
    font-size: 1.8em;
    padding: 0 20px;
  }
  #container-footer #footer-navigation {
    margin-bottom: 20px;
  }
  #container-footer .footer-heading {
    font-size: 1.8em;
  }
  #container-footer .footer-license span {
    display: inline-block;
  }
  #container-footer .copyright {
    font-size: 1.6em;
    font-style: italic;
  }
  #container-footer .ims-grecaptcha-badge {
    margin-left: 0;
  }
}
@media all and (min-width: 801px) and (max-width: 1025px) {
  #container-footer .ims-grecaptcha-badge,
  #container-footer .ims-rc-anchor-invisible {
    width: 250px;
  }
  #container-footer .ims-rc-anchor-invisible-text {
    white-space: normal;
    line-height: 11px;
    text-align: left;
    padding-left: 10px;
  }
}
@media all and (min-width: 1025px) {
  #newsletter-signup form input {
    width: 400px;
  }
  #container-footer .cta-button a,
  #container-footer .cta-button button {
    font-size: 2em;
    padding: 0 30px;
  }
}

/* --- END FOOTER --------------------------------------------------------- */

/* --- SECONDARY CONTENT ---------------------------------------------------- */
@media all and (min-width: 801px) {
  .secondary-tools-outer {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
  }
  .secondary-tools-outer:last-of-type {
    margin-bottom: 0;
  }
}

/* --- SERVICE AREAS -------------------------------------------------------- */

@media all and (min-width: 701px) {
  #service-areas #main-content #service-area-towns-list ul li:not(.view-all) {
    width: 25%;
  }
}
@media all and (min-width: 801px) {
  .webp .full-width #service-area-list {
    background-image: url("/assets/templates/main/images/backgrounds/bg-service-area.webp");
  }
  .no-webp .full-width #service-area-list {
    background-image: url("/assets/templates/main/images/backgrounds/bg-service-area.jpg");
  }
  .full-width #service-area-list {
    padding: 100px 0;
  }
  .full-width #service-area-list .secondary-tools-heading {
    font-size: 4.5em;
    max-width: 100%;
  }
  .full-width #service-area-search {
    display: inline-flex;
    padding: 20px 50px;
  }
  .full-width #service-area-search .sas-text {
    font-size: 2.4em;
    width: 216px;
    margin-right: 40px;
  }
  .full-width #service-area-search .zip-input input {
    width: 200px;
  }
  .full-width #service-area-list ul.service-cities li {
    font-size: 1.8em;
  }
  .full-width #service-area-list .sa-city-wrapper {
    max-width: 830px;
  }
  .full-width #service-area-list .view-all {
    margin-top: 30px;
  }
}

/* --- MAINTENANCE PROGRAM -------------------------------------------------- */

@media all and (min-width: 1025px) {
  .ma-points {
    width: 98%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .ma-points li {
    padding-top: 5px;
    padding-bottom: 15px;
  }
  .ma-points li::before {
    background-size: 100%;
  }
}

/* --- PROMOTIONS -------------------------------------------------------- */
@media all and (min-width: 801px) {
  #promotions-secondary {
    box-shadow: none;
    margin-bottom: 0;
  }
  #promotions-secondary .secondary-tools-heading {
    font-size: 4.5em;
  }
  .full-width #promotions-secondary .promotions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    max-width: 1080px;
  }
  .full-width #promotions-secondary .promotions li {
    width: calc(33.33% - 10px);
    margin: 0 10px;
  }
  .full-width #promotions-secondary .promotions li a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all 0.2s;
  }
  .full-width #promotions-secondary .promotions li:first-of-type {
    margin-left: 0;
  }
  .full-width #promotions-secondary .promotions li:last-of-type {
    margin-right: 0;
  }
}

/* --- PROMOTIONS V2 - Promotions Page --- */
@media all and (min-width: 571px) {
  #promotions .promotions-item .promo-image {
    width: 27%;
    height: calc(100% - 94px);
    transform: none;
    left: 25px;
    background-size: contain;
  }
  #promotions .promotions-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #promotions .promotions-item .content {
    width: calc(100% - 36%);
    text-align: left;
    padding: 0;
  }
  .promotions-item-details-wrapper .promo-image-wrapper {
    background-size: 80% auto;
  }
}
@media all and (min-width: 801px) {
  .promotions-top.top-content-upper {
    padding: 67px 0 0 0;
  }
  #details .promotions-top.top-content-upper {
    padding: 0;
  }
  #promotions .promotions-item:first-of-type {
    margin-top: 0;
  }
  #promotions .promotions-item {
    padding: 40px 100px 40px 105px;
    margin: 35px 0;
  }
  #promotions .promotions-item .content {
    padding-left: 30px;
  }
  #promotions .promotions-item::before {
    display: block;
  }
  #promotions .promotions-item .view-all {
    margin-right: 10px;
  }
  #promotions .promotions-item .promo-image {
    left: 102px;
  }
}
@media all and (min-width: 1025px) {
  #promotions .promotions-item .content {
    padding: 0;
    width: calc(100% - 400px);
  }
  #promotions .promotions-item .promo-image {
    width: 338px;
  }
}

/* --- PROMOTIONS V2 - Details Page */

@media all and (min-width: 801px) {
  .promotions-item-details-wrapper > div:first-of-type {
    padding: 25px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .promotional-item-details {
    padding: 0;
  }
  .promotions-item-details-wrapper .promotional-item-details {
    width: 69%;
    text-align: left;
    padding-right: 40px;
  }
  .webp .promotions-item-details-wrapper {
    background-image: url("/assets/templates/main/images/backgrounds/bg-promo-page-coupons.webp");
  }
  .no-webp .promotions-item-details-wrapper {
    background-image: url("/assets/templates/main/images/backgrounds/bg-promo-page-coupons.png");
  }
  .promotions-item-details-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  .promotions-item-details-wrapper .promo-image {
    width: 31%;
    padding: 0;
    margin: 0;
  }
  .promotions-item-details-wrapper .promotional-item-details h1 {
    font-size: 3em;
    text-align: left;
    margin-top: 0;
  }
}
@media all and (min-width: 1025px) {
  .promotions-item-details-wrapper > div:first-of-type {
    padding: 90px 85px 90px 105px;
  }
  .promotions-item-details-wrapper #mini-form-cta .width-limiter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* --- REVIEWS -------------------------------------------------------- */
@media all and (min-width: 801px) {
  .webp .full-width #testimonials-secondary {
    background-image: url("/assets/templates/main/images/backgrounds/bg-reviews.webp");
  }
  .no-webp .full-width #testimonials-secondary {
    background-image: url("/assets/templates/main/images/backgrounds/bg-reviews.jpg");
  }
  .full-width #testimonials-secondary {
    box-shadow: none;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .full-width #testimonials-secondary .width-limiter {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .full-width #testimonials-secondary .secondary-tools {
    width: 80%;
  }
  .full-width #testimonials-secondary .testimonials-video {
    display: inline-block;
    margin-left: 86px;
    width: 123px;
    height: 123px;
    background-image: url("/assets/templates/main/images/icons/icon-reviews-play-button.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .full-width #testimonials-secondary .testimonials-video:hover,
  .full-width #testimonials-secondary .testimonials-video:active {
    background-image: url("/assets/templates/main/images/icons/icon-reviews-play-button-active.svg");
  }
  body:not(.ims-youtube-lightbox) .full-width #testimonials-secondary .testimonials-video .ims-vid-trigger {
    display: block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
  }
  .full-width #testimonials-secondary .testimonials-inner,
  .full-width #testimonials-secondary .secondary-tools-heading {
      width: 49%; 
    text-align: right;
    margin-left: auto;
  }
  .full-width #testimonials-secondary .secondary-tools-heading {
    font-size: 4.5em;
    margin-bottom: 35px;
    max-width: 450px;
  }
  .full-width #testimonials-secondary .secondary-tools-heading::before {
    right: 0;
    left: initial;
    transform: none;
  }
  .full-width #testimonials-secondary .testimonials-inner .our-mission {
    margin-bottom: 40px;
    font-size: 2.4em;
    line-height: 30px;
  }
  .full-width #testimonials-secondary .secondary-tools .view-all {
    text-align: right;
  }
  .full-width testimonials-secondary .secondary-tools-heading::before {
    left: initial;
    right: 0;
    transform: none;
  }
  .full-width #testimonials-secondary .reviews-affiliations {
    width: 59%;
    margin-right: 0;
    max-width: 742px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* --- MAINTENANCE -------------------------------------------------- */
@media all and (min-width: 801px) {
  .webp .full-width #maintenance-secondary {
    background-image: url("/assets/templates/main/images/backgrounds/bg-maintenance.webp");
  }
  .no-webp .full-width #maintenance-secondary {
    background-image: url("/assets/templates/main/images/backgrounds/bg-maintenance.jpg");
  }
  .full-width #maintenance-secondary {
    padding: 100px 0;
    box-shadow: none;
    margin-bottom: 0;
    position: relative;
  }
  .full-width #maintenance-secondary .secondary-tools {
    width: 63%;
    text-align: left;
    position: relative;
  }
  .full-width .secondary-tools .ma-points {
    width: 100%;
    padding-top: 0;
    padding-bottom: 15px;
  }
  .full-width .ma-points li {
    margin-left: 0;
    padding: 12px 0 12px 44px;
  }
  .full-width .ma-points li:before {
    background-position: center;
    background-size: 32px auto;
  }
  .full-width #maintenance-secondary .secondary-tools-heading {
    font-size: 4.5em;
    letter-spacing: 0.45px;
    line-height: 54px;
    margin-bottom: 10px;
  }
  .full-width #maintenance-secondary .ma-subtitle {
    font-size: 2.4em;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
  }
  .full-width #maintenance-secondary .view-all {
    text-align: left;
  }
}
@media all and (min-width: 1701px) {
  .full-width #maintenance-secondary::before {
    content: '';
    position: absolute;
    left: -90px;
    top: 0;
    width: 388px;
    height: 100%;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .webp .full-width #maintenance-secondary::before {
    background-image: url("/assets/templates/main/images/backgrounds/bg-maintenance-shapes.webp");
  }
  .no-webp .full-width #maintenance-secondary::before {
    background-image: url("/assets/templates/main/images/backgrounds/bg-maintenance-shapes.png");
  }
}
@media all and (min-width: 1851px) {
  .full-width #maintenance-secondary::before {
    left: 0;
  }
}

/*----------------------------------------------------------------------------*/
/* --- PROJECTS PAGES ------------------------------------------------- */

@media (min-width: 801px) {
  .project-col-left {
    width: calc(100% - 350px);
    padding-right: 45px;
    width: 60%;
  }
  .project-col-right {
    width: 350px;
    width: 40%;
  }
  .project-col-left, .project-col-right {
    display: inline-block;
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .project-col-left {
    width: calc(100% - 420px);
    width: 66%;
  }
  .project-col-right {
    width: 420px;
    width: 34%;
  }
}

/* -------------- Project Grid View ------------------- */

@media all and (min-width: 801px) {
  .projects-grid > div:nth-child(3n) {
    /* padding-right: 0px; */
    /* margin-right: 0px; */
  }
  .projects-grid > div:nth-child(3n+1) {
    /* padding-left: 0; */
    /* margin-left: 0; */
  }
}

/*----------------------------------------------------------------------------*/
/* --- PRODUCTS PAGES ------------------------------------------------- */

/* Products Grid */
@media all and (min-width: 801px) {
  .products-grid > div:nth-child(3n) {
    /* padding-right: 0px; */
    /* margin-right: 0px; */
  }
  .products-grid > div:nth-child(3n+1) {
    /* padding-left: 0; */
    /* margin-left: 0; */
  }
}

/* --------------- End Products Landing ------------------ */

/* -------------- Product Details View ------------------- */

@media (min-width: 801px) {
  .product-col-left {
    width: calc(100% - 350px);
    padding-right: 45px;
    width: 60%;
  }
  .product-col-right {
    width: 350px;
    width: 40%;
  }
  .product-col-left, .product-col-right {
    display: inline-block;
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .product-col-left {
    width: calc(100% - 420px);
    width: 66%;
  }
  .product-col-right {
    width: 420px;
    width: 34%;
  }
}

/* ---- MAINTENANCE PAGE ----------------------------------- */
@media all and (min-width: 571px) {
  #maintenance .top-content-upper ul {
    width: 75%;
    margin: 0 auto;
  }
  #maintenance-main-content .content-left ul {
    width: 80%;
  }
}
@media all and (min-width: 660px) {
  #maintenance-service-plans .service-plans-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
  }
  #maintenance-service-plans .service-plans-outer .service-plan {
    margin: 0 20px 25px 20px;
    width: calc(50% - 20px);
  }
  #maintenance-service-plans .service-plans-outer .service-plan:first-of-type {
    margin-left: 0;
  }
  #maintenance-service-plans .service-plans-outer .service-plan:last-of-type {
    margin-right: 0;
  }
}
@media all and (min-width: 801px) {
  .webp #maintenance .top-content-upper {
    background-image: url("/assets/templates/main/images/maintenance/bg-hero.webp");
  }
  .no-webp #maintenance .top-content-upper {
    background-image: url("/assets/templates/main/images/maintenance/bg-hero.jpg");
  }
  #maintenance .top-content-upper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 117px 0;
  }
  #maintenance .top-content-upper .width-limiter {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #maintenance .top-content-upper .top-content-left {
    width: 54%;
    text-align: left;
  }
  #maintenance .top-content-upper .top-content-left ul {
    width: 100%;
  }

  .webp #maintenance-service-plans {
    background-image: url("/assets/templates/main/images/maintenance/bg-tiers.webp");
  }
  .no-webp #maintenance-service-plans {
    background-image: url("/assets/templates/main/images/maintenance/bg-tiers.jpg");
  }
  #maintenance-service-plans {
    padding: 75px 0;
  }
  #maintenance-service-plans .service-plan.most-popular::before {
    right: -45px;
    top: 35px;
  }
  #maintenance-service-plans h1 {
    margin-bottom: 50px;
  }
  #maintenance-service-plans .maintenance-service-plans-disclaimer span {
    display: inline-block;
    margin: 0 12px;
  }

  #maintenance-steps {
    padding: 75px 0;
  }
  #maintenance-steps h1 {
    margin-top: 0;
  }
  #maintenance-steps .maintenance-step h3 {
    margin-top: 10px;
  }
  #maintenance-steps .maintenance-steps-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #maintenance-steps .maintenance-step {
    width: 33.33%;
    margin-bottom: 0;
  }
  #maintenance-steps .maintenance-step p {
    margin-bottom: 0;
  }
  #maintenance-cta {
    padding: 70px 0;
  }
  #maintenance-cta .width-limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #maintenance-cta span {
    font-size: 3.6em;
  }
  #maintenance-cta .call-text-title {
    width: 100%;
  }
  #maintenance-cta .call-text {
    margin-bottom: 0;
    margin-right: 30px;
  }
  #maintenance-cta .cta-button {
    margin-bottom: 0;
    margin-right: 25px;
  }
  #maintenance-cta .cta-phone img {
    width: 49px;
    height: 49px;
    vertical-align: middle;
    margin-right: 8px;
  }
  #maintenance-cta .cta-phone a {
    text-decoration: none;
  }
  #maintenance-main-content #maintenance-cta span {
    font-size: 3em;
  }
  #maintenance-main-content #maintenance-cta .call-text-extra {
    text-transform: none;
  }
  #maintenance-main-content #maintenance-cta .cta-phone img {
    width: 37px;
    height: 37px;
  }
  #maintenance-main-content #maintenance-cta .cta-phone {
    margin-bottom: 0;
    margin-right: 30px;
  }
  #maintenance-main-content #maintenance-cta::before,
  #maintenance-main-content #maintenance-cta::after {
    display: none;
  }
  .webp #maintenance .full-width #testimonials-secondary {
    background-image: url("/assets/templates/main/images/maintenance/bg-reviews.webp");
  }
  .no-webp #maintenance .full-width #testimonials-secondary {
    background-image: url("/assets/templates/main/images/maintenance/bg-reviews.jpg");
  }
  #maintenance #testimonials-secondary .secondary-tools-heading::before {
    right: 0;
    left: initial;
    transform: none;
  }
  #maintenance .full-width #testimonials-secondary .testimonials-inner {
    width: 56%;
  }
  #maintenance-systems {
    padding: 80px 0;
  }
  #maintenance-systems .systems-outer {
    display: flex;
  }
  #maintenance-systems .h2 {
    margin-bottom: 40px;
  }
  #maintenance-systems .systems-outer .maintenance-system {
    width: 25%;
    padding: 0 10px;
  }
  #maintenance-systems .systems-outer .maintenance-system:nth-child(3) {
    padding: 0 50px;
  }
  #maintenance-systems .maintenance-system p {
    margin-bottom: 0;
  }
  .webp #maintenance-main-content {
    background-image: url("/assets/templates/main/images/maintenance/bg-plan-details.webp");
  }
  .no-webp #maintenance-main-content {
    background-image: url("/assets/templates/main/images/maintenance/bg-plan-details.jpg");
  }
  #maintenance-main-content {
    padding: 92px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #maintenance-main-content .width-limiter {
    max-width: 1045px;
  }
  #maintenance-main-content .content-left {
    padding: 60px 60px 50px 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #maintenance-main-content .content-left h3 {
    margin-top: 30px;
    margin-bottom: 35px;
    max-width: 750px;
  }
  #maintenance-main-content .content-left ul {
    width: 100%;
  }
  #maintenance-main-content .content-left ul li {
    font-size: 2.4em;
  }
  #maintenance-main-content .content-left ul li::before {
    top: 10px;
  }
  #maintenance-main-content #maintenance-cta {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media all and (min-width: 1101px) {
  #maintenance-service-plans .service-plan .plan-title-outer .plan-title {
    font-size: 4.5em;
    margin-bottom: 15px;
  }
  #maintenance-service-plans .service-plan .plan-title-outer .plan-subtitle {
    font-size: 2.4em;
  }
  #maintenance-service-plans .service-plan .plan-benefit {
    font-size: 1.8em;
    padding: 10px 30px 10px 65px;
  }
  #maintenance-service-plans .service-plan .plan-benefit::before {
    left: 35px;
  }
}
@media all and (min-width: 1290px) {
  #maintenance-cta {
    position: relative;
  }
  .webp #maintenance-cta::before {
    background-image: url("/assets/templates/main/images/maintenance/bg-shapes-left.webp");
  }
  .no-webp #maintenance-cta::before {
    background-image: url("/assets/templates/main/images/maintenance/bg-shapes-left.png");
  }
  #maintenance-cta::before {
    content: '';
    position: absolute;
    width: 231px;
    height: 100%;
    left: 23px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .webp #maintenance-cta::after {
    background-image: url("/assets/templates/main/images/maintenance/bg-shapes-right.webp");
  }
  .no-webp #maintenance-cta::after {
    background-image: url("/assets/templates/main/images/maintenance/bg-shapes-right.png");
  }
  #maintenance-cta::after {
    content: '';
    position: absolute;
    width: 231px;
    height: 100%;
    right: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media all and (min-width: 1651px) {
  #maintenance .top-content-upper {
    position: relative;
  }
  #maintenance .top-content-upper .top-content-left {
    position: relative;
  }
  .webp #maintenance .top-content-upper::before {
    background-image: url("/assets/templates/main/images/maintenance/bg-hero-shapes.webp");
  }
  .no-webp #maintenance .top-content-upper::before {
    background-image: url("/assets/templates/main/images/maintenance/bg-hero-shapes.png");
  }
  #maintenance .top-content-upper::before {
    content: '';
    position: absolute;
    width: 408px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: -160px;
  }
}
@media all and (min-width: 1801px) {
  #maintenance .top-content-upper::before {
    left: 0;
  }
}