@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-moz-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-o-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes loading {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes loading {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.cards-wrapper .cards .card .content .card-link a::before,
.cards-wrapper .cards .card .content .card-link p::before {
  background-repeat: no-repeat;
  -moz-background-size: contain;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}

.image-text-wrapper .image-text .content,
.single-page-content article {
  position: relative;
}
.image-text-wrapper .image-text .content::after,
.single-page-content article::after {
  content: '';
  height: 1px;
  width: 55px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f1c400;
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text .content::after,
  .single-page-content article::after {
    width: 55px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  margin: 0;
  -webkit-font-smoothing: auto;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
}

main > div:not(:first-of-type) {
  max-width: 1080px;
  margin: 0 auto 3em auto;
}

.logo {
  text-decoration: none;
}

a {
  cursor: pointer;
}
a:hover {
  color: #58a7af;
}

.a-phone-number:hover {
  text-decoration: none;
}

h1 {
  margin: 20px auto;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
}

h1 a {
  color: #4d4d4f;
  font-size: 20px;
  text-decoration: none;
}

h1 a:hover {
  color: #4d4d4f;
}

.yellow-button {
  background-color: #f1c400;
  color: #3c3e41;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Gotham', sans-serif;
  padding: 15px 50px;
  width: 260px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: uppercase;
}
.yellow-button:hover {
  text-decoration: none;
  background-color: #ffdd48;
}
.yellow-button:active {
  background-color: #ddb300;
}

.blue-button {
  background-color: #58a7af;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Gotham', sans-serif;
  padding: 15px 50px;
  width: 260px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blue-button:hover {
  text-decoration: none;
  background-color: #70bec6;
}
.blue-button:active {
  background-color: #46929a;
}

.hero {
  position: relative;
}

.page-id-345 .step-circle {
  margin: 20px 0;
}

/* Header code removed and pasted in +header.scss */
.btn-custom-green {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  font-size: 16px;
  color: #58a7af;
  text-transform: uppercase;
  border: 1px solid #58a7af;
}

.btn-phone-number-green {
  width: 168px;
  cursor: pointer;
  color: #58a7af;
  padding: 4px 15px;
  font-weight: 700;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  margin: 0 0 0 0.5em;
}

.btn-phone-number-green span {
  font-size: 10px;
}

.btn-phone-number-green p {
  color: #58a7af;
}

.btn-phone-number-green-fill {
  cursor: pointer;
  background-color: #58a7af;
  color: #fff;
  padding: 4px 15px;
  font-weight: 700;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  margin: 0 0.5em;
}

.btn-phone-number-green-fill span {
  font-size: 12px;
}

.btn-phone-number-green-fill p {
  color: #fff;
  line-height: 1.1;
  margin: 0.5em 0.5em;
  font-size: 15px;
}

.a-phone-number-fill {
  display: none;
  margin-left: auto;
  height: 42px;
}

.btn-custom-white {
  cursor: pointer;
  color: #70132b;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-size: 24px;
  text-align: center;
  background-color: #fff;
}

.btn-phone-number {
  width: 276px;
  padding: 18px 0px;
  margin: 0 auto 15px auto;
  font-weight: 700;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
}

.green-phone-number {
  white-space: initial;
}

.btn-phone-number-green p {
  font-size: 15px;
  margin: 0 0 0 10px;
  line-height: 1.1;
  text-align: center;
}

.full-width-logo {
  padding: 60px 0px 0 4em;
}

div a.lnk-privacy-policy {
  color: #fff !important;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  text-decoration: underline !important;
}

.btn-custom-yellow {
  max-width: 20%;
  margin: 0 auto 25px auto;
  padding: 25px;
  background-color: #fac809;
}

.btn-custom-yellow h3 {
  margin: 0 -webkit-calc(0em * -1) 0 0;
  margin: 0 -moz-calc(0em * -1) 0 0;
  margin: 0 calc(0em * -1) 0 0;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  color: white;
}

textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
.uneditable-input {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s,
    -moz-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s,
    -webkit-box-shadow linear 0.2s, -moz-box-shadow linear 0.2s;
}

.page-body {
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
}

.homepage-body {
  padding: 8em 0;
  background-image: url(/wp-content/uploads/2020/11/hero-image.jpg);
}

.homepage-body h1 {
  width: 12em;
  margin: 0;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0em;
  text-align: left;
  text-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5em;
}

.homepage-body p {
  font-size: 30px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}

.homepage-body-hero {
  height: 438px;
  padding-left: 2em;
  margin-top: 4em;
}

.homepage-body-hero p {
  text-align: left;
}

.homepage-body-hero h1 sup {
  font-size: 35%;
  top: -1.3em;
}

.homepage-body-2 {
  padding: 0em 0 0 0;
}

.homepage-body-2-details p {
  padding: 0em 2em;
}

.homepage-body-2-container {
  padding: 0 2em;
}

.homepage-body-2-details-image {
  margin-bottom: 1em;
  max-width: 62px;
}

.homepage-body-2-details-image:nth-of-type(2) {
  margin-right: 5px;
}

.homepage-body-2 h2 {
  font-size: 22px;
  text-transform: uppercase;
  padding: 0 30px;
}

.homepage-body-2-details h2 {
  margin-top: 0;
}

main > div.homepage-body-6 {
  background-color: #53565a;
  max-width: initial;
  margin: 0 -15px;
}

.homepage-body-7 {
  padding: 4em 0em 2em 0em;
}

.number-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 100px;
  max-height: 100px;
  padding: 8px !important;
  background: #1b777c;
  color: #32abaa;
  text-align: center;
  font-weight: bolder;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
}

.hero-grey-box {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  opacity: 0.95;
  padding: 2em 1em 1em 1em;
  width: 470px;
  margin-top: 1em;
}

.hero-grey-box h2 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 1.5em;
}

.hero-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent -webkit-gradient(
      linear,
      right top,
      left top,
      from(transparent),
      to(#1c1111b7)
    ) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(
      right,
      transparent 0%,
      #1c1111b7 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent -moz-linear-gradient(
      right,
      transparent 0%,
      #1c1111b7 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(
      right,
      transparent 0%,
      #1c1111b7 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent
    linear-gradient(-90deg, transparent 0%, #1c1111b7 100%) 0% 0% no-repeat
    padding-box;
}

.btn-get-quote {
  width: 342px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  background-color: #58a7af;
  padding: 13px;
  display: inline-block;
  margin: 1em auto;
  cursor: pointer;
  text-align: center;
}

.btn-get-quote span {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  color: white;
}

.btn-get-quote i {
  color: #fff;
  padding-right: 0.5em;
}

.step-circle-container {
  text-align: left;
  background-color: #fff;
  margin-bottom: 3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.step-circle-container div {
  padding: 0em 4em 0 4em;
  text-align: center;
}

div.step-circle-image-container {
  padding: 0em;
  height: 450px;
}

img.step-image-desktop:nth-of-type(2) {
  -o-object-position: left;
  object-position: left;
}

.step-circle {
  background-color: #58a7af;
  color: #fff;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 1em auto;
}

.step-image-desktop {
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
}

.carousel-control-next-icon {
  background-image: url(/wp-content/themes/wp-bootstrap-starter/src/img/chevron_right.svg);
}

.carousel-control-prev-icon {
  background-image: url(/wp-content/themes/wp-bootstrap-starter/src/img/chevron_left.svg);
}

/* Utility */
.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.no-padding {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.clear-both {
  clear: both;
}

/* Bootstrap overrides */
.carousel {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-indicators {
  position: initial;
}

.carousel-indicators li {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #d6d6d6;
}

.carousel-indicators li.active {
  background-color: #58a7af;
}

.modal-dialog {
  max-width: 690px;
}

.modal-footer {
  border-top: 0;
  display: inline;
}

.modal-logo {
  width: 130px;
  padding: 20px 0 0 20px;
}

.modal-body {
  padding: 1em 6em;
}

.modal-form-container {
  display: none;
}

div.footerControls-free-quote,
div.footerControls-call-now {
  padding-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.clipboard-check,
.call-now-phone {
  width: 14px;
  margin: 0 5px;
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991px) {
  h1 {
    font-size: 22px;
    margin: 0em auto 0.5em auto;
  }
  h1 a {
    font-size: 18px;
  }
  .homepage-body p {
    font-size: 22px;
  }
  .wizard-modal .wizard-modal-container {
    margin: 70px auto 0 auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .homepage-body {
    -moz-background-size: cover;
    background-size: cover;
    background-position: 60% 0px;
  }
  .homepage-body-2-container {
    padding: 0 1em;
  }
  .step-circle {
    margin: 1em auto;
  }
  /* Code moved from here to header, header-desktop */
  .btn-get-quote {
    width: 260px;
  }
  .footerControls-free-quote i {
    padding-right: 10px;
  }
  .footer-container p:first-of-type {
    margin: 3em 0 0 0;
  }
  div.footer-container p {
    margin: 1em 0;
  }
  .footer-container img {
    margin: 3em 0;
  }
  img.trg-switch {
    margin: 1em 0 2em 0;
  }
}

@media (max-width: 991px) {
  .homepage-body-hero {
    text-align: left;
  }
  .homepage-body-2-details p {
    padding: 0em 1em;
  }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 768px) {
  h1 {
    margin: 0.5em auto;
  }
  h2 {
    line-height: 1;
  }
  h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .homepage-body {
    padding: 6em 0;
  }
  .step-circle-text-container {
    padding: 0em 1em;
  }
  .step-circle-container div {
    padding: 0em;
  }
  .step-circle-container .homepage-body-2b {
    padding: 0em 1em 0 0;
  }
  .step-circle-container .homepage-body-2b p {
    margin-bottom: 2em;
  }
  .homepage-body-2-container {
    padding: 0 0.5em;
  }
  .homepage-savings-container {
    max-width: 680px;
  }
  div.homepage-savings-header h2 {
    padding: 1em 0 0.25em 0;
  }
  div.homepage-savings-header h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }
  div.homepage-savings-container {
    max-width: 680px;
  }
  .btn-phone-number-green p {
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 668px) {
  h1 {
    font-size: 22px;
  }
  h1 a {
    font-size: 13px;
  }
  h3 {
    padding: 0em 1em;
  }
  sub,
  sup {
    font-size: 60%;
  }
  .homepage-body {
    padding: 0;
    -moz-background-size: cover;
    background-size: cover;
    background-position: 82% 110%;
  }
  .homepage-body h1 {
    font-size: 31.5px;
    width: 100%;
    padding: 6.9em 1em 0em 20px;
  }
  .homepage-body-2-details {
    margin-bottom: 4em;
  }
  .homepage-body-2-details h3 {
    padding: 0 3em;
  }
  .homepage-body-2-details p {
    padding: 0 2.8em;
  }
  .homepage-body-hero {
    height: auto;
    margin-left: 0em;
  }
  .homepage-body p {
    font-size: 18px;
    padding: 0.5em 5em 1em 20px;
    font-weight: 500;
  }
  .homepage-body-6 {
    padding: 20px;
  }
  .homepage-body-6 h1 {
    font-size: 30px;
  }
  .homepage-body .btn-get-quote {
    margin-bottom: 4em;
    width: 85%;
  }
  .btn-get-quote {
    width: 90%;
    height: 60px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* code movedd to header.scss */
  .btn-custom-yellow h3 {
    font-size: 25px;
  }
  .btn-phone-number {
    width: 220px;
    padding: 10px 0px;
  }
  .full-width-logo {
    padding: 17px 0px;
  }
  .btn-custom-yellow {
    max-width: 65%;
  }
  div.btn-phone-number-green {
    text-align: center;
    padding: 8px 15px;
    margin: 0 0 0 1em;
    width: 149px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  div.btn-phone-number-green span,
  div.btn-phone-number-green p {
    font-size: 14px;
    margin: 0;
    line-height: 1;
  }
  .btn-phone-number-green-fill {
    margin: 1em 0.5em;
  }
  .btn-phone-number-green-fill p {
    margin: 0.5em 0;
    padding-left: 5px;
  }
  p span.span-dnis-number {
    font-size: 12px;
  }
  .green-phone-number {
    white-space: nowrap;
  }
  .header-top-banner p {
    font-size: 13px;
  }
  .step-circle-container {
    text-align: center;
    background-color: transparent;
    padding: 0;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    margin: 1.15em auto 1em;
  }
  .step-circle-container .homepage-body-2b {
    padding: 0 15px;
  }
  .step-circle-container div {
    padding: 0 15px;
  }
  .step-circle-container p {
    padding: 0 1.5em;
  }
  .homepage-body-2-details-image {
    margin-bottom: 2em;
  }
  .homepage-body {
    background-position: 82% 110%;
  }
}

/*SALES REP & INSTALLER*/
.page-template-page-sales-rep main > div:not(:first-of-type),
.page-template-page-installers main > div:not(:first-of-type) {
  margin: 0 auto;
  max-width: 100%;
}

.gb-form {
  padding: 4.4em 5em;
}

.sales-rep-header {
  background-repeat: no-repeat;
  background-image: url('/wp-content/uploads/2021/04/desktop_salesRep_hero.png');
  -moz-background-size: 34% auto;
  background-size: 34% auto;
  margin-top: 100px;
}

.installer-header {
  background-repeat: no-repeat;
  background-image: url('/wp-content/uploads/2021/04/desktop_installer_hero.png');
  -moz-background-size: 34% auto;
  background-size: 34% auto;
  margin-top: 100px;
}

.mobile-cta a {
  display: none;
}

.hero-blue {
  background-image: url('/wp-content/uploads/2021/04/waterdroplet_header.png');
  -moz-background-size: cover;
  background-size: cover;
  border-left: 6px solid #fac716;
  min-height: 363px;
}

.hero-blue h1 {
  max-width: 510px;
  margin-left: 0px;
  color: #fff;
  text-align: left;
  line-height: 1.1em;
  font-weight: 700;
  font-size: 34px;
  text-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
}

/* Gravity Forms*/
/* GForms css moved to gravityforms.scss */
/*CAREER PAGE*/
.career-hero {
  margin-top: 100px;
  padding: 0.8em 0em;
  background-image: url('/wp-content/uploads/2021/05/desktop_hero_1.png');
  background-repeat: no-repeat;
  background-position: 30% 40%;
  -moz-background-size: cover;
  background-size: cover;
  min-height: 450px;
}

.careers-header h1 {
  text-align: left;
  color: #fff;
}

.gb-ty {
  text-align: center;
  margin-top: 140px;
}

.gb-ty h3 {
  padding: 0em 1em;
  margin: 0em 0em;
}

.gb-banner h1 {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.8em;
  text-align: left;
  color: #fff;
  font-size: 50px;
  text-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
}

.gb-main {
  max-width: 1080px;
  margin: 0 auto 3em auto;
}

.gb-yellow-button,
#gform_submit_button_4 {
  background-color: #f1c400;
  color: #3c3e41;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-family: 'Gotham', sans-serif;
  padding: 18px 40px;
  width: 260px;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gform_wrapper
  input:not([type='radio']):not([type='checkbox']):not([type='image']):not(
    [type='file']
  ) {
  line-height: 1.5 !important;
  min-height: 1rem;
}

.gb-yellow-button:hover,
#gform_submit_button_4:hover {
  background-color: #ffdd48;
  color: #3c3e41;
  text-decoration: none;
}

/* file upload */
input#input_4_10 {
  width: -webkit-calc(100% - 8px);
  width: -moz-calc(100% - 8px);
  width: calc(100% - 8px);
  font-size: 16px;
}

.gb-title-overlay {
  display: none;
}

.title {
  padding: 4.4em 5em;
}

.padding-small {
  padding: 4rem 4rem 0.8rem 4rem;
}

.padding-small p:last-of-type {
  margin-bottom: 0px;
}

/*Tablet to Desktop*/
@media (min-width: 993px) and (max-width: 1250px) {
  .hero-blue {
    min-height: 280px;
  }
}

/* Tablet*/
@media (max-width: 992px) {
  .career-hero,
  .sales-rep-header,
  .installer-header {
    margin-top: 0px;
  }
  .hero-blue {
    min-height: 230px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  main > div:not(:first-of-type) {
    margin: 0 auto 2.4em auto;
  }
  .row.careers_content {
    max-width: initial !important;
    margin: 0px -15px !important;
  }
  .padding-small {
    padding: 3rem 2.4rem 2.4rem 2.4rem;
  }
  .padding-small-top {
    padding: 1rem 2.4rem 1rem 2.4rem !important;
  }
  .career-hero {
    margin-top: 0px;
    padding: 20em 0em 0em 0em;
    background-image: url('/wp-content/uploads/2021/05/mobile_hero.png');
    background-repeat: no-repeat;
    background-position: 30% 40%;
    -moz-background-size: cover;
    background-size: cover;
  }
  .career-hero:after {
    display: block;
    position: relative;
    background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0.8))
    );
    background-image: -webkit-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: -moz-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    margin-top: -145px;
    height: 150px;
    width: 100%;
    content: '';
  }
  .gb-form {
    padding: 3em 1em;
  }
  .title {
    padding: 4em 25px;
  }
  .gb-banner h1 {
    font-size: 34px;
    padding: 0px 0px;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    margin-left: 0px;
  }
  .gb-hidden {
    padding: 1em 0em;
    position: relative;
  }
  .gb-title-overlay {
    position: absolute;
    display: block !important;
    bottom: 0px;
    background: #7f7384;
    width: 100%;
    color: #fff;
    padding: 0.5em;
  }
  .hero-blue {
    background: rgba(255, 255, 255, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    min-height: 415px;
  }
  .hero-blue h1 {
    font-size: 34px;
    font-weight: 700;
  }
  .sales-rep-header,
  .installer-header {
    background-repeat: no-repeat;
    min-height: 350px;
    -moz-background-size: cover;
    background-size: cover;
  }
  .mobile-cta {
    position: absolute;
    bottom: 20px;
    z-index: 1;
  }
  .mobile-cta a {
    display: block;
  }
  .sales-rep-header:after,
  .installer-header:after {
    display: block;
    position: relative;
    background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0.8))
    );
    background-image: -webkit-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: -moz-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.8) 100%
    );
    margin-top: -200px;
    width: 100%;
    content: '';
  }
  h2.gb-title-overlay {
    font-size: 1.7em;
    letter-spacing: 0.01em;
    font-weight: 600;
  }
  .gb-title-overlay img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
  }
  .title-hidden h2 {
    display: none;
  }
  .title-hidden h3,
  .title h3 {
    padding: 0.3em 0em;
  }
  /* 	Center buttons on mobile */
  .gb-yellow-button {
    margin: 0 auto;
  }
  .gb-list-items {
    font-size: 14px;
  }
  li.checkmark-bullet {
    margin-top: 2.4em;
  }
  .gb-ty {
    margin: 50px auto;
  }
  .installer {
    margin-bottom: 1em;
  }
}

/*checkmark ty animation*/
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #15b400;
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  -moz-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  -o-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 0px auto 40px auto;
  -webkit-box-shadow: inset 0px 0px 0px #7ac142;
  -moz-box-shadow: inset 0px 0px 0px #7ac142;
  box-shadow: inset 0px 0px 0px #7ac142;
  -webkit-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  -moz-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  -o-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  -moz-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  -o-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-o-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
}

@-moz-keyframes scale {
  0%,
  100% {
    -moz-transform: none;
    transform: none;
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
}

@-o-keyframes scale {
  0%,
  100% {
    -o-transform: none;
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    -moz-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
}

@-webkit-keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 50px #15b400;
    box-shadow: inset 0px 0px 0px 50px #15b400;
  }
}

@-moz-keyframes fill {
  100% {
    -moz-box-shadow: inset 0px 0px 0px 50px #15b400;
    box-shadow: inset 0px 0px 0px 50px #15b400;
  }
}

@-o-keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px #15b400;
  }
}

@keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 50px #15b400;
    -moz-box-shadow: inset 0px 0px 0px 50px #15b400;
    box-shadow: inset 0px 0px 0px 50px #15b400;
  }
}

.join-md-5 {
  padding: 3rem 3rem 0rem 3rem;
}

.gb-list-items {
  padding: 0;
  margin: 10px 0px 20px 0px;
  list-style-type: none;
  color: #2d3540;
  font-size: 16px;
}

.gb-list-items li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.3em;
}

.checkmark-bullet {
  background: url('/wp-content/uploads/2021/04/check_thankYou.svg') no-repeat
    left top;
  height: 23px;
  margin: 1.3em 0em;
  padding-top: 0px;
  padding-left: 35px;
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  -moz-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
  position: relative;
}

.checkmark-bullet sup {
  margin-left: 0.4em;
}

.checkmark-bullet2 {
  background: url('/wp-content/uploads/2021/04/check_thankYou.svg') no-repeat
    left top;
  height: 23px;
  font-size: 16px;
  color: #707070;
  margin: 1.2em 0em;
  padding-top: 0px;
  padding-left: 35px;
}

@media (max-width: 768px) {
  /* moved to products-styles.scss */
  /*Process */
  .page-id-326 .homepage-body {
    background-position: 57% 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
  }
}

@media all and (max-width: 768px) and (max-width: 668px) {
  .page-id-326 .homepage-body {
    background-image: url('/wp-content/uploads/2021/08/as-processpage-header.png') !important;
  }
}

@media (max-width: 768px) {
  /* moved to offers-styles.scss */
  /* moved to home-styles.scss */
}

/* display noned code moved to header.scss */
/*Advertorial*/
.single-format-standard .header-elem.header-menu.btn-main-menu-mobile {
  display: none;
}

.single-format-standard .entry-content {
  margin-top: 0px;
}

.gb-advertorial {
  max-width: 1250px;
  margin: 0 auto;
}

.single-format-standard h1.entry-title {
  color: #161717;
  letter-spacing: 0.05rem;
  margin-bottom: 5px;
  font-size: 1.7rem;
  border-bottom: 0px solid #fff;
  text-transform: none;
  text-align: left;
}

.single-format-standard figcaption {
  font-size: 0.7rem;
  font-family: arial;
  margin-top: 8px;
}

.single-format-standard .gb-advertorial p {
  font-family: 'times';
  font-size: 1rem;
}

.single-format-standard h2 {
  font-size: 1.25rem;
  color: #161717;
}

.single-format-standard h4 {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.2em;
}

.single-format-standard ol {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-family: 'times';
  border-left: solid 3px #f1c400;
}

.single-format-standard ol.carousel-indicators {
  border-left: none !important;
}

.single-format-standard a {
  font-weight: 700;
  text-decoration: none;
}

.single-format-standard .header-elem.header-menu ul {
  display: none;
}

.single-format-standard .header-top-banner {
  display: none;
}

.single-format-standard h3.widget-title {
  color: #161717;
  font-weight: 700;
  font-size: 1.26rem;
  line-height: 1.2em;
}

.single-format-standard .header-desktop {
  margin-top: 0px;
}

.gb-popup {
  display: none;
  -webkit-transition: opacity 0.15s linear 0s;
  -o-transition: opacity 0.15s linear 0s;
  -moz-transition: opacity 0.15s linear 0s;
  transition: opacity 0.15s linear 0s;
}

.gb-popup.open {
  display: block;
}

.close-pop {
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #949494;
}

.single-format-standard div#gbForm {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  -webkit-border-radius: 10px 10px;
  -moz-border-radius: 10px 10px;
  border-radius: 10px 10px;
  border: solid 1px #6ba5ad;
  -webkit-box-shadow: 0px 0px 10px #00000029;
  -moz-box-shadow: 0px 0px 10px #00000029;
  box-shadow: 0px 0px 10px #00000029;
}

.single-format-standard .gform_page_footer {
  margin: 0px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.single-format-standard #gbForm .ginput_container input {
  width: 100%;
  padding: 5px 5px;
}

.single-format-standard .gb_directions {
  color: #5eb0b8;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 0px;
}

.single-format-standard .gform_wrapper .gform_page_footer {
  border-top: 0px;
}

.single-format-standard .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0px;
}

li#field_7_6.zip .ginput_container input {
  background: url(/wp-content/uploads/2021/06/noun_Map_1953158.svg) no-repeat
    scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
}

li#field_7_3.name .ginput_container input,
li#field_7_10.name .ginput_container input {
  background: url('/wp-content/uploads/2021/06/noun_person_1993836.svg')
    no-repeat scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
}

li#field_7_11.phone .ginput_container input {
  background: url('/wp-content/uploads/2021/06/noun_Phone_1829926.svg')
    no-repeat scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
}

li#field_7_13.mail .ginput_container input {
  background: url('/wp-content/uploads/2021/06/noun_Email_503866.svg') no-repeat
    scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
}

li#field_7_6.zip .charleft.ginput_counter.warningTextareaInfo {
  display: none;
}

p.gb_terms {
  font-size: 0.3rem;
}

.gform_wrapper .gform_page_footer .button.gform_button,
.gform_wrapper .gform_page_footer .button.gform_next_button {
  margin-right: 0px;
}

.single-format-standard .gform_next_button,
.gform_button {
  width: 50% !important;
  font-size: 16px !important;
  background: #f1c400;
  padding: 12px 10px;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  font-weight: 700;
  border: 0px;
  margin: 0px 5px 8px 0px !important;
}

.single-format-standard .gform_previous_button {
  width: 50% !important;
  font-size: 16px !important;
  background: #fff;
  padding: 12px 10px;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  font-weight: 700;
  color: #494c50;
  border: 1px solid #adadad;
  margin: 0px 5px 8px 0px !important;
}

input#gform_next_button_7_9 {
  width: 100% !important;
  font-size: 16px;
}

.single-format-standard .gb-ad-content-container {
  padding: 0rem 2rem 0rem 2rem;
}

h2.gb_article--title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

h2.gb_article--title::after {
  content: '';
  display: block;
  margin-left: 0px;
  position: relative;
  width: 55%;
  height: 3px;
  background: #58a7af;
}

.gb_article--image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100px;
  margin-right: 8px;
}

.gb_article--image img {
  -o-object-fit: cover;
  object-fit: cover;
}

.gb_article--text {
  font-size: 0.8rem;
  font-weight: 700;
}

.gb_article--wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.single-format-standard .entry-header {
  padding: 2rem 2rem 0rem 2rem;
}

.single-format-standard .gform_wrapper div.validation_error {
  font-size: 0.5em;
}

.single-format-standard .gform_wrapper .validation_message {
  font-size: 0.5em;
}

.gform_ajax_spinner {
  display: none;
}

@media (min-width: 769px) {
  .widget-area {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
  }
  #secondary {
    padding: 0rem 1.5rem;
  }
  .single-format-standard div#primary {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .single-format-standard .header-mobile .col-8.d-flex.align-items-center {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .single-format-standard .gb-advertorial p {
    font-size: 22px;
  }
  .single-format-standard .gb-advertorial ol {
    font-size: 22px;
  }
  .single-format-standard .entry-header h1 {
    font-size: 26px;
  }
  .single-format-standard h2 {
    line-height: 1.2em;
    font-size: 25px;
  }
  .single-format-standard figcaption {
    font-size: 0.9rem;
  }
  .single-format-standard h4 {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }
  .single-format-standard .gb_article--text {
    font-size: 1.2rem;
  }
  .single-format-standard div#gbForm {
    opacity: 0;
    max-width: 100% !important;
    bottom: 20%;
    right: 0px;
    left: 0px;
  }
  .gb-advertorial {
    width: 100%;
  }
  .single-format-standard .gb-ad-content-container {
    padding: 0px 5px;
  }
  .single-format-standard .entry-header {
    padding: 1rem 5px;
  }
  .single-format-standard h3.widget-title {
    padding: 0px 0px;
    font-size: 23px;
  }
  .single-format-standard .widget-area {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 5px;
  }
  .single-format-standard .header-mobile {
    margin-top: 0px;
  }
}

/*Advertorial 2*/
.gb-advertorial .wp-block-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* align-items: center; */
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-family: times;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Envisionmybath */
/* moved to EMB template */
/* privacy policy */
#post-505 {
  margin-top: 100px;
}

#post-505 li,
#post-505 tr {
  font-size: 16px;
}

/* nav highlight moved to header.scss */
/*404 page*/
.error404 {
  background: #fcfcfc;
}

section.error-404.not-found {
  padding-top: 190px;
  padding-bottom: 90px;
}

h1.four-o-page-header {
  font-size: 40px;
  color: #8296c5;
  text-transform: none;
}

.four-o-page-header span {
  display: block;
  color: #53565a;
}

.four-o-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

h1.four-o-page-header {
  text-align: left;
  line-height: 1.1em;
  margin-bottom: 20px;
}

h2.four-o-text {
  color: #53565a;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 0.8em;
}

.four-o-gif img,
.four-o-gif video {
  max-width: 430px;
}

.four-o-gif {
  text-align: center;
}

@media (max-width: 768px) {
  section.error-404.not-found {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  h1.four-o-page-header {
    font-size: 24px;
  }
  .four-o-gif img,
  .four-o-gif video {
    max-width: 250px;
    margin: 0 auto;
  }
  .four-o-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* Inspo css moved to inspiration-styles.scss*/
@media (max-width: 975px) {
  .cp-popup-container.cp-popup-live-wrap
    .cp-popup-wrapper.cp-auto
    .cp-popup.cpro-animate-container.cp-top {
    position: absolute !important;
  }
}

.page-id-650 #page #primary #main #heroImage {
  background-image: url(https://amstnshwrstag.wpengine.com/wp-content/uploads/2021/09/hero_inspiration.png);
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-top: 5em;
}
@media only screen and (max-width: 991px) {
  .page-id-650 #page #primary #main #heroImage {
    margin-top: 0em;
  }
}

.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  div.page-body
  div.col-md-6 {
  margin: 0 auto;
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  div.page-body
  div.col-md-6
  h2 {
  margin-top: 3em;
}

.page-id-650 #page #primary #main .inspiration-page-body button {
  margin: 3em auto 12em;
}

.page-id-650 #page #primary #main .inspiration-page-body div.col-12 {
  margin-top: 3em;
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  div.col-12
  .imageMobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-id-650
    #page
    #primary
    #main
    .inspiration-page-body
    div.col-12
    .imageBig {
    display: none;
  }
  .page-id-650
    #page
    #primary
    #main
    .inspiration-page-body
    div.col-12
    .imageMobile {
    display: block;
    margin: 0 auto;
  }
}

.page-id-650 #page #primary #main .inspiration-page-body div.cards-wrapper {
  margin: 0 auto;
  border-bottom: none;
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  div.cards-wrapper
  .cards
  .card {
  background: #fbfbfb;
}

.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  #cardSection
  .card-columns {
  margin: 0 auto;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  #cardSection
  .card-columns
  .card
  .card-body
  hr {
  width: 25%;
  background-color: #f1c400;
  border: none;
  height: 1px;
  margin-bottom: 0;
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  #cardSection
  .card-columns
  .card
  .card-body
  .card-title {
  color: #53565a;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
}
@media only screen and (max-width: 1352px) {
  .page-id-650
    #page
    #primary
    #main
    .inspiration-page-body
    #cardSection
    .card-columns
    .card
    .card-body
    .card-title {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 1068px) {
  .page-id-650
    #page
    #primary
    #main
    .inspiration-page-body
    #cardSection
    .card-columns
    .card
    .card-body
    .card-title {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 1024px) {
  .page-id-650
    #page
    #primary
    #main
    .inspiration-page-body
    #cardSection
    .card-columns
    .card
    .card-body
    .card-title {
    font-size: 1rem;
  }
}
.page-id-650
  #page
  #primary
  #main
  .inspiration-page-body
  #cardSection
  .card-columns
  .card
  .card-body
  p {
  min-height: 4rem;
}

#cardSection .card-columns {
  margin: 0 auto;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
#cardSection .card-columns .card .card-body hr {
  width: 25%;
  background-color: #f1c400;
  border: none;
  height: 1px;
  margin-bottom: 0;
}
#cardSection .card-columns .card .card-body .card-title {
  color: #53565a;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
}
@media only screen and (max-width: 1352px) {
  #cardSection .card-columns .card .card-body .card-title {
    font-size: 0.7rem !important;
  }
}
@media only screen and (max-width: 1068px) {
  #cardSection .card-columns .card .card-body .card-title {
    font-size: 0.65rem !important;
  }
}
@media only screen and (max-width: 1024px) {
  #cardSection .card-columns .card .card-body .card-title {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 450px) {
  #cardSection .card-columns .card .card-body .card-title {
    font-size: 0.7rem !important;
  }
}
@media only screen and (max-width: 360px) {
  #cardSection .card-columns .card .card-body .card-title {
    font-size: 0.45rem !important;
  }
}
#cardSection .card-columns .card .card-body p {
  min-height: 4rem;
}

@media only screen and (max-width: 768px) {
  .page-id-5 #cp_popup_id_576 .cp-auto .cp-animated .cp-popup-content {
    margin-bottom: 60px !important;
  }
}

#page .col-12 .header-modal {
  z-index: 999999;
}

.header-mobile {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  body:is(.page-id-5, .page-id-228, .page-id-293, .page-id-326, .page-id-612)
    #page
    #primary
    #main
    .hero {
    height: 600px;
  }
  body:is(.page-id-5, .page-id-228, .page-id-293, .page-id-326, .page-id-612)
    #page
    #primary
    #main
    .hero
    div
    div
    h1 {
    padding-top: 1.3em;
  }
}

.hiring-info a {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  color: #3c3e41;
}

/* We're hiring styling */
.cp-custom-html a {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  color: #3c3e41;
}

#topMenu {
  display: none;
  height: 60px;
  position: fixed;
  z-index: 9;
  width: 100%;
  bottom: 0;
  background-color: rgba(88, 167, 175, 0.95);
  padding: 0px 30px;
}

#topMenu span {
  color: #fff;
  font-size: 16px;
  font-family: 'Gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
}

#topMenu i {
  color: #fff;
  font-size: 16px;
}

.topMenu-banner {
  width: 100%;
}

.header .header-elem {
  display: inline-block;
  vertical-align: middle;
}

.header .row div.header-column {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.header .header-logo {
  width: 24%;
  padding: 0 0px 0 3%;
  margin: 20px 0px;
}

.header .header-logo img {
  max-width: 316px;
}

.header .header-logo img {
  width: 100%;
}

.header .header-menu {
  width: 51%;
}

.btn-menu-packages i {
  padding: 3px 0px 0px 7px;
  font-size: 14px;
}

.header .header-contact {
  font-size: 18px;
  padding: 0;
  width: 24%;
  text-align: right;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header .header-menu ul {
  list-style-type: none;
  margin: 0 auto;
}

.header .header-menu ul li {
  float: left;
}

.header .header-menu ul li a {
  display: block;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #495056;
  margin: 0 15px;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

.header .header-menu ul li a.menu-packages-active {
  color: #36a9a8;
}

.header .header-menu ul li a.menu-packages-active {
  color: #36a9a8;
}

.header-mobile {
  height: 70px;
  color: #495056;
  z-index: 8;
  position: relative;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.header-mobile .col-4 {
  padding: 0 0 0 5px;
}

.header-mobile .col-8 {
  padding: 0;
}

.header-mobile #as-logo {
  max-height: 60px;
}

.submenu-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  padding: 10px 5px;
  z-index: 1;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.submenu-products {
  display: none;
}

.submenu-header a {
  font-weight: 600;
  margin-left: 0.5em;
}

.header-modal .submenu-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.header-modal .submenu-content a {
  margin-left: 1.5em;
}

.header .header-menu .submenu-content a {
  text-align: left;
}

.footerControls-free-quote,
.footerControls-call-now {
  width: 50%;
  text-align: center;
  height: 60px;
  padding-top: 17px;
}

.footerControls-free-quote {
  border-right: 1px solid #a7d6da;
}

.wizard-modal {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
}

.wizard-modal .wizard-modal-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 600px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.btn-wizard-modal-close {
  cursor: pointer;
  color: #3b3b3b;
  float: right;
  margin: 20px;
}

.wizard-step {
  display: none;
  padding: 0em 0em 0.5em 0em;
  text-align: center;
}

.wizard-step h3 {
  font-size: 22px;
  border-bottom: 2px solid #58a7af;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

.wizard-progress img {
  width: 21px;
  margin: 0 auto;
}

.wizard-progress {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  margin: 0 auto 1em auto;
}

.wizard-progress span {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 2px solid #36a9a8;
  margin: 5px 0;
  max-width: 30px;
}

.wizard-step-4 p:first-of-type {
  margin-top: 1.5em;
}

.wizard-step h2 {
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.wizard-bottom {
  text-align: center;
  padding-bottom: 2em;
}

.wizard-bottom h3 {
  font-size: 16px;
  color: #36a9a8;
  margin: 0 auto;
}

.wizard-input-container {
  position: relative;
  max-width: 300px;
  margin: 0.5em auto 0 auto;
  padding: 9px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #adadad;
}

.wizard-input-container i {
  position: absolute;
  left: 15px;
  top: 14px;
  color: #949494;
}

.wizard-input-container input,
.wizard-input-container input:focus {
  border: transparent;
  outline: 0;
}

.hero-grey-box .wizard-input-container {
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  border-radius: 35px;
  max-width: 342px;
}

.wizard-disclaimer {
  font-size: 10px;
  margin: 4em 2em 0 2em;
}

.wizard-input-container input {
  margin: 0 auto;
  padding-left: 30px;
  border: transparent;
  font-size: 16px;
  width: 90%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.wizard-step label {
  text-align: left;
  width: 300px;
  margin: 10px auto 0 auto;
  font-weight: bold;
  font-size: 17px;
}

.wizard-step-term-2 img,
.wizard-step-term-3 img,
.wizard-step-term-4 img {
  max-width: 64px;
  margin: 0 0.5em 1em 0.5em;
}

.btn-wizard {
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  border-radius: 27px;
  width: 148px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  height: 54px;
  border: 0;
  background-color: transparent;
  font-weight: bold;
  float: left;
  margin: 0 2em;
}

.btn-wizard:focus {
  outline: 0;
}

.btn-wizard-back {
  display: none;
  color: #2d3540;
}

img.btn-wizard-back {
  width: 26px;
  height: 20px;
  margin: 1em 0 0 0;
}

.btn-wizard-next {
  background-color: #aeaeae;
  float: right;
}

.btn-wizard-next-continue {
  background-color: #58a7af;
}

div.wizard-step .btn-wizard-contact {
  background-color: #58a7af;
  width: 314px;
  float: none;
  margin-top: 2em;
  display: table-cell;
  vertical-align: middle;
}

.load-icon {
  position: absolute;
  top: 40%;
  left: 43%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 4px solid;
  border-color: #58a7af #fff;
  -webkit-animation: loading infinite 1s linear;
  -moz-animation: loading infinite 1s linear;
  -o-animation: loading infinite 1s linear;
  animation: loading infinite 1s linear;
  display: none;
}

.modal-content {
  position: relative;
}
.modal-content.submitting {
  width: 690px;
  height: 567px;
}
@media all and (max-width: 720px) {
  .modal-content.submitting {
    width: 90%;
    margin: 0 auto;
    height: 400px;
  }
}

.header-modal {
  display: none;
}

.header-modal .submenu-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@media (max-width: 1700px) {
  .header .header-menu ul li a,
  .header .contact-phone a,
  .header .contact-label,
  .header .header-contact {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .header .header-logo {
    width: 23%;
  }
  .header .header-menu {
    width: 51%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .header .header-menu ul li a,
  .header .contact-phone a,
  .header .contact-label,
  .header .header-contact {
    font-size: 16px;
  }
  .btn-phone-number-green {
    width: 132px;
    padding: 4px 10px;
  }
  .btn-phone-number-green p {
    font-size: 12px;
  }
}

@media (max-width: 1300px) {
  .header .header-menu ul {
    padding: 0;
  }
  .header .header-menu ul li a,
  .header .contact-phone a,
  .header .contact-label,
  .header .header-contact {
    font-size: 14px;
  }
  .btn-phone-number-green p {
    font-size: 11px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .header .header-logo {
    width: 65%;
    margin: 10px 0px;
  }
  .header .header-logo img {
    max-width: 125px;
  }
  .header .header-menu {
    width: 15%;
    text-align: center;
    font-size: 14px;
    padding-top: 5px;
  }
  .header-menu i {
    font-size: 22px;
  }
  .header-modal {
    position: fixed;
    /* top: 107px; */
    height: 100%;
    width: 100%;
    right: 0;
    background-color: #fff;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header-modal div {
    width: 80%;
    margin-left: auto;
    background-color: #fff;
    height: 100%;
  }
  .header-modal ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
  }
  .header-modal ul li {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5em 1em;
    display: block;
  }
  .header-modal ul li a {
    color: #495056 !important;
    text-decoration: none;
    font-size: 16px;
  }
  .topmenu-content a {
    font-weight: 600;
  }
  .header-modal ul li.has-submenu a:after {
    content: '';
    background: url(/wp-content/uploads/2021/01/chevron.png);
    background-repeat: no-repeat;
    width: 10px;
    height: 16px;
    position: absolute;
    right: 1em;
    margin-top: 5px;
  }
  .header-desktop .btn-request-free-quote {
    display: none;
  }
  .topMenu-banner {
    width: 100%;
  }
  .header-desktop .a-phone-number {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  body div#topMenu {
    width: 100%;
    padding: 0px;
    height: 60px;
  }
  .header .header-menu {
    display: none;
  }
  .header .header-logo {
    width: 50%;
  }
  .modal-dialog {
    padding: 0px 15px;
  }
  .modal-content {
    padding: 0px 20px;
  }
  .btn-wizard {
    margin: 0;
  }
  .wizard-modal {
    position: fixed;
  }
  .wizard h3 {
    font-size: 20px;
  }
  div.btn-wizard-next {
    float: none;
    margin: 1em 0 0 0;
    width: 100%;
  }
  .hero-gradient {
    top: 0px;
    background: transparent -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(transparent),
        to(#1c1111b7)
      ) 0% 0% no-repeat padding-box;
    background: transparent -webkit-linear-gradient(
        top,
        transparent 0%,
        #1c1111b7 100%
      ) 0% 0% no-repeat padding-box;
    background: transparent -moz-linear-gradient(
        top,
        transparent 0%,
        #1c1111b7 100%
      ) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(
        top,
        transparent 0%,
        #1c1111b7 100%
      ) 0% 0% no-repeat padding-box;
    background: transparent
      linear-gradient(180deg, transparent 0%, #1c1111b7 100%) 0% 0% no-repeat
      padding-box;
  }
  .header-mobile {
    padding: 0 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .modal-dialog {
    margin: 0;
    padding: 0;
  }
  .modal-body {
    padding: 3em 0em;
  }
  .modal-logo {
    padding: 15px 0 0 20px;
  }
  .wizard-step h3 {
    font-size: 20px;
  }
  .wizard-input-container i {
    position: absolute;
    left: 15px;
    top: 9px;
    color: #949494;
    font-size: 18px;
  }
}

@media (max-width: 668px) {
  .header .header-logo img {
    max-width: 300px;
  }
  .mobile-back-container {
    display: none;
    margin-bottom: 0;
    padding-top: 1em;
  }
  .mobile-back-container a.mobile-menu-back {
    font-size: 16px;
    font-weight: 600;
    color: #58a7af;
    margin: 1em 1em 1em 1.75em;
  }
  .mobile-menu-back:before {
    content: '';
    background: url(/wp-content/themes/wp-bootstrap-starter/src/img/chevron_left_teal.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 20px;
    position: absolute;
    left: 5em;
    margin: 3px 0px 0px 5px;
  }
}

/* New Theme Styles */
.header-desktop {
  height: 70px;
  padding: 0 1em;
  position: fixed;
  z-index: 9;
  width: 100%;
  margin-top: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media all and (max-width: 720px) {
  .header-desktop {
    display: none;
  }
}

.header-top-banner {
  background-color: #f1c400;
  height: 30px;
  position: fixed;
  width: 100%;
  z-index: 9;
  margin: 0;
}

.header-top-banner p {
  margin: auto 0;
  font-weight: 600;
  font-size: 14px;
  color: #3c3e41;
}

.header-top-banner-icon {
  height: 13px;
  width: 13px;
  margin: auto 5px auto 0;
}

.header-mobile .full-width-logo {
  padding: 10px;
  max-height: 80px;
  max-width: 150px;
}

.btn-main-menu-mobile {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin: 0 auto;
}

.page-template-page-careers div#topMenu,
.page-template-page-sales-rep div#topMenu,
.page-template-page-installers div#topMenu {
  display: none !important;
}

/* Navbar selection highlight */
body.page-id-228
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(1)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-326
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(2)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-612
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(3)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-293
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(4)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-422
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(5)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-544
  #page
  div.header.header-desktop.d-none.d-lg-block
  > div
  > div
  > div.header-elem.header-menu
  > ul
  > li:nth-of-type(6)
  a:nth-of-type(1) {
  font-weight: 700;
  color: #58a7af;
}

body.page-id-326
  > div#page
  > div#primary
  > main#main
  > section.single-page-content
  > div.cards-wrapper
  > div.cards
  > div.card
  > div.content
  > div.card-link
  > p.btn-request-free-quote {
  display: none;
}

.footer-container {
  padding: 1em 3em;
  background-color: #53565a;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-container img {
  margin: 2em 0 3em 0;
}

.footer-container p {
  font-size: 10px;
  margin: 3em 0;
}

.footer-container .footer-copyright {
  font-size: 14px;
  margin-bottom: 10em;
}

@media (max-width: 767.98px) {
  .footer-container img {
    width: 110px;
  }
}

@media (max-width: 668px) {
  .footer-mobile-logo {
    width: 300px;
  }
  div.footer-container p {
    text-align: justify;
  }
}

@media (max-width: 991px) {
  div.footer-container {
    padding: 0 1em;
  }
  .footer-container p {
    padding: 0em;
  }
  .footer-container .footer-copyright {
    text-align: center;
  }
}

/* Cards Block
_________________________________ */
.cards-wrapper {
  padding: 60px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
.cards-wrapper .cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto 40px;
}
@media all and (max-width: 720px) {
  .cards-wrapper .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto 45px auto;
  }
}
.cards-wrapper .cards .card {
  border: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 5px;
}
@media all and (max-width: 900px) {
  .cards-wrapper .cards .card {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 40%;
    padding-bottom: 0px;
  }
}
@media all and (max-width: 720px) {
  .cards-wrapper .cards .card {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .cards-wrapper .cards .card:last-of-type .content {
    padding: 20px 20px 30px;
  }
}
.cards-wrapper .cards .card .content {
  padding: 20px 20px 60px;
}
.cards-wrapper .cards .card .content p {
  margin-bottom: 5px;
  color: #53565a;
}
@media all and (max-width: 720px) {
  .cards-wrapper .cards .card .content p {
    line-height: 20px;
  }
}
.cards-wrapper .cards .card .content h2 {
  font-size: 18px;
}
.cards-wrapper .cards .card .content ul {
  padding-left: 15px;
  list-style: none;
}
.cards-wrapper .cards .card .content ul li {
  font-size: 16px;
  position: relative;
  margin: 10px 0;
  color: #53565a;
}
.cards-wrapper .cards .card .content ul li:last-of-type {
  margin: 10px 0 0;
}
.cards-wrapper .cards .card .content ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #58a7af;
  position: absolute;
  left: -3%;
  top: 10px;
}
.cards-wrapper .cards .card .content .card-link {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media all and (max-width: 720px) {
  .cards-wrapper .cards .card .content .card-link {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    margin-top: 15px;
  }
}
.cards-wrapper .cards .card .content .card-link::after {
  content: '';
  height: 1px;
  width: 55px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f1c400;
}
.cards-wrapper .cards .card .content .card-link a,
.cards-wrapper .cards .card .content .card-link p {
  position: relative;
  font-size: 16px;
  color: #58a7af;
  display: inline;
  text-decoration: underline;
  cursor: pointer;
}
.cards-wrapper .cards .card .content .card-link a::before,
.cards-wrapper .cards .card .content .card-link p::before {
  content: '';
  background-image: url('/wp-content/themes/wp-bootstrap-starter/src/img/blue-arrow.svg');
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}
.cards-wrapper .cards .card img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 255px;
}

/* Image and Text 
_________________________________ */
.image-text-wrapper {
  padding: 60px 0;
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
@media all and (max-width: 720px) {
  .image-text-wrapper {
    width: 100%;
  }
}
.image-text-wrapper .image-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 60px 0;
  background-color: #fff;
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text {
    margin: 30px 0;
  }
}
.image-text-wrapper .image-text:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.image-text-wrapper .image-text .content {
  width: 30%;
  margin: 0 auto;
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text .content {
    width: 100%;
    padding: 20px;
  }
}
.image-text-wrapper .image-text .content p {
  margin-bottom: 0;
  color: #2d3540;
}
.image-text-wrapper .image-text img {
  width: 60%;
}
@media all and (max-width: 720px) {
  .image-text-wrapper .image-text img {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* icon blocks
_________________________________ */
.icon-blocks-wrapper {
  padding: 60px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
.icon-blocks-wrapper .icon-block {
  width: 80%;
  margin: 0 auto;
}
.icon-blocks-wrapper .icon-block .intro-copy {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 720px) {
  .icon-blocks-wrapper .icon-block .intro-copy {
    width: 100%;
  }
}
.icon-blocks-wrapper .icon-block .intro-copy::after {
  content: '';
  height: 1px;
  width: 55px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f1c400;
}
.icon-blocks-wrapper .icon-block .icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 60px 0;
}
@media all and (max-width: 720px) {
  .icon-blocks-wrapper .icon-block .icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.icon-blocks-wrapper .icon-block .icons .icon-copy {
  width: 20%;
}
@media all and (max-width: 720px) {
  .icon-blocks-wrapper .icon-block .icons .icon-copy {
    width: 100%;
    margin-bottom: 20px;
  }
}
.icon-blocks-wrapper .icon-block .icons .icon-copy img {
  width: 55px;
  margin: 0 auto 20px;
  display: block;
}
.icon-blocks-wrapper .icon-block .icons .icon-copy .content p {
  margin-bottom: 10px;
}
@media all and (max-width: 720px) {
  .icon-blocks-wrapper .icon-block .icons .icon-copy .content p {
    font-size: 18px;
  }
}
.icon-blocks-wrapper .icon-block .icons .icon-copy .content p strong {
  color: #53565a;
}
@media all and (max-width: 720px) {
  .icon-blocks-wrapper .icon-block .icons .icon-copy .content p strong {
    font-size: 22px;
  }
}

/* Single Image 
_________________________________ */
.single-image-block {
  padding: 60px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
.single-image-block img {
  width: 50%;
  margin: 40px auto;
  display: block;
}

/* Slider
_________________________________ */
.slider-block {
  padding: 60px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
.slider-block .intro-copy {
  width: 80%;
  margin: 0 auto 60px;
  position: relative;
}
.slider-block .intro-copy p {
  margin: 0;
}
.slider-block .intro-copy::after {
  content: '';
  height: 1px;
  width: 55px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f1c400;
}
.slider-block #carousel a {
  background: #53565a;
  bottom: auto;
  top: 42%;
  width: 4%;
  height: 9%;
  opacity: 1;
}

/* Video and Text
_________________________________ */
.video-text-block-wrapper {
  padding: 60px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.4);
}
.video-text-block-wrapper .video-text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
}
@media all and (max-width: 720px) {
  .video-text-block-wrapper .video-text-block {
    width: 90%;
  }
}
.video-text-block-wrapper .video-text-block .text {
  width: 50%;
  padding: 40px;
}
@media all and (max-width: 720px) {
  .video-text-block-wrapper .video-text-block .text {
    width: 100%;
    padding: 0px;
  }
}
@media all and (max-width: 720px) {
  .video-text-block-wrapper .video-text-block .text h2 {
    text-align: center;
  }
}
.video-text-block-wrapper .video-text-block .text ol {
  counter-reset: item;
  padding-left: 0px;
}
.video-text-block-wrapper .video-text-block .text ol li {
  display: block;
  font-size: 16px;
}
.video-text-block-wrapper .video-text-block .text ol li::before {
  content: counter(item) '. ';
  counter-increment: item;
  color: #58a7af;
  padding-right: 12px;
}
.video-text-block-wrapper .video-text-block .video-wrapper {
  width: 50%;
}
@media all and (max-width: 720px) {
  .video-text-block-wrapper .video-text-block .video-wrapper {
    width: 100%;
    padding: 0px 0 20px 0;
  }
}
.video-text-block-wrapper .video-text-block .video-wrapper video {
  width: 100%;
  height: 100%;
}

.single-page-content {
  padding: 60px 0;
}
.single-page-content article {
  width: 80%;
  margin: 40px auto;
}
@media all and (max-width: 720px) {
  .single-page-content article {
    width: 90%;
    margin: 20px auto;
  }
  .single-page-content article p {
    text-align: left !important;
  }
}

#gform_8 h2 {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  text-align: center;
  letter-spacing: 0px;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0px;
}

#gform_8 h2 span {
  font-family: 'Gotham Black', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 800;
}

#gform_8 h3 {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  text-align: center;
  letter-spacing: 0px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}

.home .gform_legacy_markup_wrapper ul li.gfield {
  margin-top: 0px !important;
}

.home .gform_legacy_markup_wrapper li.gfield.gfield_error {
  margin-bottom: 3px !important;
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}

#gform_8 p {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

#gform_8 .name .ginput_container input {
  background: url('https://amstnshwrstag.wpengine.com/wp-content/uploads/2021/06/noun_person_1993836.svg')
    no-repeat scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  background-color: #fff;
}

#gform_8 .phone .ginput_container input {
  background: url('https://amstnshwrstag.wpengine.com/wp-content/uploads/2021/06/noun_Phone_1829926.svg')
    no-repeat scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  background-color: #fff;
}

#gform_8 .email .ginput_container input {
  background: url('https://amstnshwrstag.wpengine.com/wp-content/uploads/2021/06/noun_Email_503866.svg')
    no-repeat scroll 0 1px transparent;
  background-position: 5px 50%;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 12px 0px 12px 33px;
  display: block;
  font-size: 15px;
  border: 1px solid #adadad;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  background-color: #fff;
}

#gform_next_button_8_12 {
  width: 100%;
  font-size: 16px !important;
  background: #f1c400;
  padding: 12px 10px;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  font-weight: 500;
  border: 0px;
  font-family: 'gb-gotham';
}

#gform_previous_button_8 {
  font-family: 'gb-gotham';
  width: 50% !important;
  font-size: 16px !important;
  background: #07a7af;
  padding: 12px 10px;
  -webkit-border-radius: 8px 8px;
  -moz-border-radius: 8px 8px;
  border-radius: 8px 8px;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid #fff;
  margin: 0px 5px 8px 0px !important;
}

#gform_8 .gform_page_footer {
  margin: 0px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 0px dotted #ccc;
}

.home
  .gform_legacy_markup_wrapper
  .field_description_below
  .gfield_description {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.home
  .gform_legacy_markup_wrapper
  li.gfield.gfield_error.gfield_contains_required
  div.ginput_container,
.home .gform_legacy_markup_wrapper li.hidden_label input {
  margin-top: 0px !important;
}

#gform_8 .gform_legacy_markup_wrapper .top_label div.ginput_container {
  margin-top: 0px;
}

@media only screen and (min-width: 641px) {
  .home
    .gform_legacy_markup_wrapper.gform_validation_error
    .gform_body
    ul
    li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
  }
}

.home .gform_validation_errors > h2:before {
  display: none;
}

#gform_8 input[type='file'] {
  width: 100%;
}

#gform_8 input[type='file']::file-selector-button {
  width: 100%;
  border: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #e2e2e2;
  line-height: 2em;
  cursor: pointer;
}

span#gfield_upload_rules_8_10 {
  display: none;
}

.hiring-info a {
  font-family: 'gb-gotham', 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  color: #3c3e41;
}

#gform_wrapper_8.gform_validation_errors > h2:before {
  opacity: 0;
}

#gform_wrapper_8.gform_legacy_markup_wrapper div.validation_error {
  position: absolute;
  padding: 2px 0 2px 0;
  top: -50px;
  background: white;
}

.home .gform_next_button,
.home .gform_button {
  font-weight: 500 !important;
}

#gform_8 #gfield_description_8_10 {
  font-size: 13px;
}

.home .gform_legacy_markup_wrapper .description,
.home .gform_legacy_markup_wrapper .gfield_description,
.home .gform_legacy_markup_wrapper .gsection_description {
  padding: 8px 16px 0 0;
}

#gform_wrapper_8 > .gform_validation_errors > h2 {
  font-size: 10px !important;
}

#gform_wrapper_8 .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 5px;
}

.gb-ty-popup h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  font-family: 'gb-gotham';
}

.gb-ty-popup h4 {
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
  font-family: 'gb-gotham';
}

.cp-popup-container .cp-target p,
.cp-popup-container .cp-target strong {
  font-family: 'gb-gotham';
}

.gb-ty-popup .checkmark2 {
  width: 79px;
  height: 79px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #07a7af;
  stroke-miterlimit: 10;
  margin: 0px auto 0px auto;
  -webkit-box-shadow: inset 0px 0px 0px #fff;
  -moz-box-shadow: inset 0px 0px 0px #fff;
  box-shadow: inset 0px 0px 0px #fff;
  -webkit-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  -moz-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  -o-animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

#gform_8 p.gb-pop-terms {
  margin: 10px auto 0px auto;
  text-align: left;
  color: #fff;
  text-align: left;
  font-size: 6px;
  line-height: 1.2em;
}

.home .cp-target.cp-field-element.cp-custom-html {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0px;
}

.home .gform_legacy_markup_wrapper .gform_page_footer .button.gform_button,
.home
  .gform_legacy_markup_wrapper
  .gform_page_footer
  .button.gform_next_button {
  margin-right: 0px;
  font-family: 'gb-gotham';
}

.cpro-form-container
  > #cp_heading-0-590
  > div.cp-rotate-wrap
  > div.cp-target
  > p
  > a {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.popup-hider {
  opacity: 0 !important;
}

.gb-form h3 {
  padding: 0px 0px;
  font-size: 20px;
  line-height: 24px;
  max-width: 350px;
  margin: 0 auto;
}

.gb-form .gfield_label {
  font-size: 16px !important;
  color: #495056;
  margin-bottom: 0rem;
}

#gform_wrapper_4 .gform_body .gform_fields .gfield input[type='text'] {
  border: 1px solid #ced4da;
  font-size: 12px;
  padding: 10px;
}

div#gform_wrapper_4 {
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.gb-form {
  background: #f5f5f5;
}

input#gform_submit_button_4 {
  margin: 0 auto;
}

/* Process page arrow */

@media screen and (min-width: 2400px) {
  #next-step-process {
    bottom: -770px;
  }
}

@media screen and (max-width: 2399px) and (min-width: 1471px) {
  #next-step-process {
    bottom: -790px;
  }
}
@media screen and (max-width: 1470px) and (min-width: 1035px) {
  #next-step-process {
    bottom: -815px;
  }
}

@media screen and (max-width: 1034px) and (min-width: 1010px) {
  #next-step-process {
    bottom: -840px;
  }
}

@media screen and (max-width: 1009px) and (min-width: 992px) {
  #next-step-process {
    bottom: -865px;
  }
}

@media screen and (max-width: 991px) and (min-width: 862px) {
  #next-step-process {
    bottom: -890px;
  }
}

@media screen and (max-width: 862px) and (min-width: 728px) {
  #next-step-process {
    bottom: -915px;
  }
}

@media screen and (max-width: 727px) and (min-width: 720px) {
  #next-step-process {
    bottom: -940px;
  }
}

@media screen and (max-width: 719px) and (min-width: 669px) {
  #next-step-process {
    bottom: -1800px;
  }
}

@media screen and (max-width: 668px) and (min-width: 511px) {
  #next-step-process {
    bottom: -1750px;
  }
}

@media screen and (max-width: 510px) and (min-width: 460px) {
  #next-step-process {
    bottom: -1765px;
  }
}

@media screen and (max-width: 459px) and (min-width: 446px) {
  #next-step-process {
    bottom: -1785px;
  }
}
