html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
}

:root {
  --primaryColor: #006B94;
  --secondaryColor: #EFEFEF;
  --thirdColor: #4DAF4F;
  --white: #FDFDFD;
  --whiteHex: rgba(253, 253, 253, 1);
  /* Add specific alpha values for masking */
  --maskTransparent: rgba(253, 253, 253, 0);
  --maskSemiTransparent: rgba(253, 253, 253, 0.3);
  --maskOpaque: rgba(253, 253, 253, 1);
  --black: #151515;
  --maxWidth: 80rem;
  --transSpeed: .25s;
  --wrapPad: clamp(1.5rem, 4vw, 2.5rem);
}

/*************/
/*ANIMATIONS**/
/*************/

.sparkle-animation {
  animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: scale(0.8) rotate(10deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2) rotate(-10deg);
    opacity: 1;
  }
  75% {
    transform: scale(0.8) rotate(10deg);
    opacity: 0.7;
  }
}

/* Gentle Bounce Animation */
.gentle-bounce {
  animation: gentlebounce 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes gentlebounce {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Slide in from the left */
.box.slide-in-left {
  opacity: 0;
  transform: translateX(-100%); /* start off-screen to the left */
  animation: slideInLeft 1s forwards ease-in-out;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from the right */
.box.slide-in-right {
  opacity: 0;
  transform: translateX(100%); /* start off-screen to the right */
  animation: slideInRight 1s forwards ease-in-out;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


a, a:visited, a:focus {
  color: inherit;
}

.bg-primary a, .bg-primary a:visited, .bg-primary a:focus {
  color: var(--white);
}

/*************/
/****FONTS****/
/*************/

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/montserrat-v26-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/montserrat-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/montserrat-v26-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/montserrat-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('/fonts/montserrat-v26-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/montserrat-v26-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.2em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 2.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
}

h3,
#hps-hero-overlap h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4,
.faq h3 {
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
}

h5 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1em;
}



/*************/
/**END FONTS**/
/*************/

/******************/
/****SITE WIDE*****/
/******************/

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-color: var(--white);
  color: var(--black);
}

a:not(.button):hover {
  text-decoration: none;
  opacity: .8;
}

.logo a:hover {
  opacity: 1;
}

ul {
  line-height: 1.5;
}

ul > li {
  margin-bottom: 1em;
}

main {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

img {
  height: auto;
  max-width: 100%;
}

section {
  position: relative;
  display: block;
}

details {
  border-bottom: 1px solid lightgray;
}

details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}

.faq details:not(:last-child) {
  margin-bottom: 1.5rem;
}

.faq details:last-child {
  margin-bottom: 0;
}

.content-width {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wrapPad);
  padding-right: var(--wrapPad);
}

.content-width picture img {
  border-radius: 27px;
  width: 100%;
}

.content-width h1,
.content-width h2,
.content-width h3,
.content-width h4,
.content-width h5,
section h1,
section h2,
section h3,
section h4,
section h5 {
  color: var(--primaryColor);
}

.content-width .bg-primary,
.content-width .bg-primary h1,
.content-width .bg-primary h2,
.content-width .bg-primary h3,
.content-width .bg-primary h4,
.content-width .bg-primary h5 {
  color: var(--white);
}

section > .content-width {
  padding-top: calc(3* var(--wrapPad));
  padding-bottom: calc(3* var(--wrapPad));
}

a.button:visited, a.button:focus {
  color: var(--white);
}

.button {
  background: var(--primaryColor);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: .8rem 3rem;
  display: inline-block;
  margin-top: 1em;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.button:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--thirdColor);
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  transition: width 0.3s;
}

.button:hover:before {
  width: 100%;
}

.hero .button {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1.3rem 3rem;
  margin-top: 0;
}

a.button {
  text-decoration: none;
}

.box {
  border-radius: 27px;
  background: var(--white);
  padding: var(--wrapPad);
  border-top: 5px solid var(--thirdColor);
}

.home .box {
  opacity: 0;
}

.box-shadow {
  box-shadow: 2px 4px 14.7px 0px rgba(0, 0, 0, 0.09);
}

.bg-white {
  background: var(--white);
}

.bg-primary {
  background: var(--primaryColor);
}

.bg-secondary {
  background: var(--secondaryColor);
}

/******************/
/**END SITE WIDE***/
/******************/

/******************/
/****REUSEABLES****/
/******************/

.aria-invisible {
  border: 0; 
  clip: rect(0 0 0 0); 
  height: 1px;  
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 5rem);
}

.flex > * {
  flex: unset;
  width: 100%;
}

.hero-overlap {
  margin-top: -13.6rem;
}

.hero-overlap .content-width {
  padding-bottom: 0;
}

.hero-overlap .box .flex {
  gap: .625rem;
  align-items: center;
  margin-bottom: .6em;
}

.hero-overlap .box .flex > * {
  flex: unset;
}

.hero-overlap h2,
.hero-overlap h3 {
  margin-bottom: 0;
  text-transform: none;
}

.hero-overlap .box p {
  margin: 0;
}

.wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.align-flex-end {
  align-items: flex-end;
}

.pos-abs {
  position: absolute;
}

.abs-center-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contain {
  object-fit: contain;
}

.cover {
  object-fit: cover;
}

.card-group {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0;
  padding: 0;
  gap: 2rem;
} 

.home .attention-text {
  font-weight: 400;
  text-transform: none;
  line-height: 1.4;
}

.home h1.attention-text {
  color: var(--black);
  line-height: 1.2;
}

.home .attention-text span {
  color: var(--primaryColor);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.home h1.attention-text span.sparkle1:before,
.home h1.attention-text span.sparkle1:after,
.home h1.attention-text span.sparkle2:before,
.home h1.attention-text span.sparkle3:before,
.home .attention-text span.sparkle:before,
.home .attention-text span.sparkle-two:before,
.home .attention-text span.sparkle-two:after,
ul.sparkle li::before {
  animation: sparkle 7.5s infinite;
}

.home h1.attention-text span.sparkle1:before {
  content: url('/images/maid_to_order_sparkle_group.png');
  position: absolute;
  left: -16px;
  top: -18px;
  animation: sparkle 7.5s infinite;
}

.home h1.attention-text span.sparkle1:after {
  content: url('/images/maid_to_order_sparkle_light.png');
  position: absolute;
  right: -9px;
  top: -28px;
}

.home h1.attention-text span.sparkle2:before {
  content: url('/images/maid_to_order_sparkle_right.png');
  position: absolute;
  right: -11px;
  top: -37px;
}

.home h1.attention-text span.sparkle3:before {
  content: url('/images/maid_to_order_sparkle_light.png');
  position: absolute;
  left: 67px;
  top: -31px;
}

.home .attention-text span.sparkle:before {
  content: url('/images/maid_to_order_sparkle_left.png');
  position: absolute;
  left: -9px;
  top: -18px;
}

.home .attention-text span.sparkle-two:before {
  content: url('/images/maid_to_order_sparkle_right.png');
  position: absolute;
  top: -21px;
  left: -5px;
}

.home .attention-text span.sparkle-two:after {
  content: url('/images/maid_to_order_sparkle_right2.png');
  position: absolute;
  top: -22px;
  right: -5px;
}

picture.home {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 100%;
  height: clamp(20%, 80vw, 100%);
  min-height: 34.25rem;
  display: block;
}

picture.home img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 0;
  mask: linear-gradient(90deg, 
    var(--maskTransparent) 0%,
    var(--maskSemiTransparent) 35%,
    var(--maskOpaque) 65%,
    var(--maskSemiTransparent) 85%,
    var(--maskTransparent) 100%);
  -webkit-mask: linear-gradient(90deg, 
    var(--maskTransparent) 0%,
    var(--maskSemiTransparent) 35%,
    var(--maskOpaque) 65%,
    var(--maskSemiTransparent) 85%,
    var(--maskTransparent) 100%);
}

.home .hero {
  /*padding: clamp(15rem, 30vw, 30rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem) 1rem;*/
  position: relative;
  padding-top: 6rem;
  padding-bottom: 13rem;
}

/* .home .hero::before {
  content: "";
  width: 100%;
  height: 100%;
  min-height: 34.25rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to left, rgba(253, 253, 253, 0) 46.75%, rgba(253, 253, 253, .1) 61.25%, #FDFDFD 100%);
  background: var(--white);
  opacity: .6;
}

.home .hero::after {
  content: "";
  width: 100%;
  height: 100%;
  min-height: 34.25rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to right, rgba(253, 253, 253, .1) 70.75%, rgba(253, 253, 253, 1) 98.25%, #FDFDFD 100%);
  opacity: 0;
} */

.hero h1 {
  max-width: 25rem;
}

.hero h1,
.hero .button {
  position: relative;
  z-index: 1;
}

#home-services .item {
  grid-column: span 12;
  list-style: none;
}

ul.sparkle {
  list-style: none;
}

ul.sparkle li {
  position: relative;
}

ul.sparkle li::before {
  content: '';
  position: absolute;
  left:-1.8em;
  top: .1em;
  width: 1.3em;
  height: 1.3em;
  background-repeat: no-repeat;
  background-image: url('/images/maid_to_order_sparkle_list_light-bg_icon.svg');
  background-image: url('/images/maid_to_order_sparkle_list_green_icon.svg');
  transition: transform .3s ease-in-out;
}

ul.sparkle li:hover::before {
  transform: scale(1.3);
}

.bg-primary ul.sparkle li::before {
  background-image: url('/images/maid_to_order_sparkle_list_icon.svg');
}

.service-title {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  gap: 1rem;
}

.service-title h3,
.service-title h2 {
  margin-bottom: 0;
}

.commercial-top .box.bg-secondary,
.residential-top .box.bg-secondary {
  flex: unset;
}

.commercial-top h2,
.commercial-bottom h2,
.residential-top h2,
.residential-bottom h2 {
  padding-bottom: 0;
}

/* HPS CTA1 */
#hps-cta1 {
  padding: var(--wrapPad);
}

#hps-cta1 .hps-picture {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#hps-cta1 .hps-picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#hps-cta1 .hps-picture::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 1;
}

#hps-cta1 h2 {
  color: var(--white);
  /*font-weight: 600;*/
}

#hps-cta1 p {
  color: var(--white);
  font-weight: 500;
}
/* END CTA1 */

/* HPS CTA2 */
#hps-cta2 {
  max-width: calc(var(--maxWidth) - (2* var(--wrapPad)));
  margin-left: var(--wrapPad);
  margin-right: var(--wrapPad);
  height: 463px;
  overflow: hidden;
  border-radius: 27px;
}

#hps-cta2 .hps-picture {
  position: absolute;
  width: 100%;
  height: 463px;
  left: 0;
  top: 0;
  z-index: -1;
}

#hps-cta2 .hps-picture img {
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
  height: 100%;
  transition: transform .7s ease-in-out;
}

#hps-cta2:hover .hps-picture img {
  transform: scale(1.1);
}

#hps-cta2 .hps-picture::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 27px;
}

#hps-cta2 .hps-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hps-cta2 h2 {
  color: var(--white);
  /*font-weight: 600;*/
}

#hps-cta2 p {
  color: var(--white);
  font-weight: 500;
}

@media only screen and (min-width: 1300px) {
  #hps-cta2 {
    margin-left: auto;
    margin-right: auto;
  }
}
/* END CTA2 */

.text-center {
  text-align: center;
}

.num-circle {
  background: var(--primaryColor);
  border-radius: 50%;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: white;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

ul.values {
  padding-left: 1rem;
}

ul.faq {
  list-style: none;
  padding: 0;
}

.faq span {
  display: block;
  color: var(--primaryColor);
  font-weight: 700;
}

.faq summary {
  display: flex;
  justify-content: space-between;
}

.faq summary span {
  width: 90%;
}

.faq summary img {
  max-height: 23px;
  width: auto;
  transition: transform .15s ease-in-out;
}

details[open] summary img {
  transform: rotate(180deg);
}

.mobile-hide {
  display: none;
}

.color-black {
  color: var(--black);
}

.gap-2rem {
  gap: 2rem;
}

.pt-0,
section > .pt-0 {
  padding-top: 0;
}

.pt-1rem {
  padding-top: 1rem;
}

.pt-3rem {
  padding-top: 3rem;
}

.pt-5rem {
  padding-top: 5rem;
}

.pb-0,
section > .content-width.pb-0 {
  padding-bottom: 0;
}

.pb-1rem {
  padding-bottom: 1rem;
}

.pb-3rem {
  padding-bottom: 3rem;
}

.pb-5rem {
  padding-bottom: 5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mw-50rem {
  max-width: 50rem;
  width: 100%;
}

/*************/
/***HEADER****/
/*************/

header {
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
  box-shadow: 2px 4px 14.7px 0px rgba(0, 0, 0, 0.3);
}

header a {
  text-decoration: none;
}

header .logo {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: var(--wrapPad);
  top: 4px;
  z-index: 3;
}

header .flex {
  gap: 1rem;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

header .flex > * {
  flex: unset;
  width: unset;
}

header .nav-links .button {
  background: var(--white);
  color: var(--primaryColor);
  text-transform: uppercase;
  margin: 1rem 0 0 0;
  font-weight: 700;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: color .3s;
}

header .nav-links .button:hover {
  color: var(--white);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/*************/
/*****NAV*****/
/*************/

/*.topnav {
  overflow: hidden;
  background-color: var(--primaryColor);
  margin-left: auto;
  margin-right: auto;
}*/

nav {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 60px;
}

.nav-list {
  list-style-type: none;
  padding-left: 0;
}

.nav-links,
.nav-links.last {
  display: inline-block;
  margin-left: .8rem;
  margin-right: .8rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
  margin-bottom: 0;
}

/*.nav-links:nth-child(3) {
  margin-right: 0;
}*/

/* Style the topnav links */
.nav-links a {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  position: relative;
}

.nav-links.sparkle a:before {
  content: url('/images/maid_to_order_text_sparkle.png');
  position: absolute;
  left: -16px;
  top: -9px;
}

.nav-links.phone {
  margin-left: 0;
}

.nav-links.active {
  border-bottom: 1px solid;
  border-color: var(--secondaryColor);
}

.nav-links.active a {
  color: var(--secondaryColor);
}

/* Change color on hover */
.topnav a:hover {
  color: var(--secondaryColor);
  transition: color var(--transSpeed) ease-in-out;
}

/* Mobile Menu */
#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 22px;
  right: 0px;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 4;
  right: 19px;
  top: -12px;
}

#menuToggle span
{
  margin-left: auto;
  margin-right: 25px;
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: var(--white);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: var(--secondaryColor);
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px #85888C;
  margin: -50px -50px 0 0;
  padding: 50px;
  padding-top: 125px;
  background-color: var(--primaryColor);
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(110%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(.5rem, 2vw, 2rem);
}

#menu li
{
  padding: 10px 0;
  padding-bottom: 0;
  margin-bottom: 1rem;
  /*transition-delay: 2s;*/
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

/* End Mobile */

/*************/
/***END NAV***/
/*************/

/* Style the content */


/*************/
/****FOOTER***/
/*************/

section.copyright {
  padding-left: var(--wrapPad);
  padding-right: var(--wrapPad);
}

.footer {
  background-color: var(--primaryColor);
  color: var(--white);
}

footer .flex {
  gap: 1rem;
}

footer .logo {
  flex: unset;
}

footer hr {
  color: var(--white);
  opacity: .2;
  margin-top: .5rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

.footer .socials img {
  max-width: clamp(2rem, 2vw, 3.4rem);
}

.socials.flex {
  gap: 1rem;
}

.copyright.flex {
  justify-content: center;
}

.copyright.flex p,
.copyright.flex span {
  flex: unset;
  width: auto;
}

.copyright p {
  font-size: .85rem;
  margin-bottom: 0;
}

/*************/
/**END FOOTER*/
/*************/

/*************/
/**HOMEPAGE***/
/*************/

.homepage-logo {
  max-width: clamp(15rem, 32vw, 34rem);
  padding: var(--wrapPad);
}


/***************/
/**END HOMEPAGE*/
/***************/

/*************/
/**CONTACT****/
/*************/

.content.contact h2 {
  margin-bottom: 1rem;
}

.content.contact p {
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.content.contact picture {
  max-width: 43.9rem;
  min-width: 0;
  height: 100%;
}

form label {
  display: block;
  margin-bottom: 1rem;
}

form input {
  height: 3rem;
}

form input, form textarea {
  background: var(--white);
  max-width: 100%;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid var(--black);
  padding: .5rem;
}

form textarea::-webkit-input-placeholder {
  font-size: 1rem;
}

form textarea::-moz-placeholder {
  font-size: 1rem;
}

form textarea::-ms-placeholder {
  font-size: 1rem;
}

form textarea::placeholder {
  font-size: 1rem;
}

form input::placeholder {
  font-size: 1rem;
}

form textarea::placeholder {
  font-size: 1rem;
}

form input[type="email"] {
  height: 2rem;
}

form textarea {
  height: 10rem;
}

form button {
  cursor: pointer;
  color: var(--white);
  background: var(--primaryColor);
  padding: .8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background var(--transSpeed) ease-in-out;
  border-radius: 10px;
  border: none;
  position: relative;
  z-index: 1;
  overflow: clip;
}

form button:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--thirdColor);
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  transition: width 0.3s;
}

form button:hover:before {
  width: 100%;
}

/***************/
/**END CONTACT**/
/***************/


@media only screen and (min-width: 768px) {
    /* tablets and desktop */
    .flex {
      flex-wrap: nowrap;
    }
    .flex > * {
      flex: 1;
    }
    .wrap {
      flex-wrap: wrap;
    }
    header.flex {
      gap: 2rem;
    }
    header .logo {
      margin-left: unset;
      margin-right: unset;
    }
    #home-services .item {
      grid-column: span 4;
    }
    .commercial-top .box.bg-secondary,
    .residential-top .box.bg-secondary {
      height: 100%;
    }
      header {
      height: unset;
    }
    #menuToggle {
      top: 0;
    }
    #menuToggle input,
    #menuToggle span {
      display: none;
    }
    #menu {
      position: relative;
      opacity: 1;
      z-index: 99;
      transform: unset;
      padding: 0;
      flex-direction: row;
      margin: 0;
      top: 0;
      box-shadow: none;
      align-items: center;
      justify-content: flex-end;
    }
    #menu li {
      margin-bottom: 0;
    }
    .nav-links {
      padding-bottom: 0;
      margin-left: .5rem;
      margin-right: .5rem;
    }
    .nav-links a {
      font-size: clamp(.8rem, 1.6vw, 1rem);
    }
    .nav-links.last {
      margin-right: var(--wrapPad);
    }
    header .nav-links .button {
      margin: 0;
      font-weight: 700;
    }
    /*.home .hero::before {
      content: "";
      width: 100%;
      height: 100%;
      min-height: 34.25rem;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      background: linear-gradient(to left, rgba(253, 253, 253, 0) 46.75%, rgba(253, 253, 253, .1) 61.25%, #FDFDFD 100%);
      opacity: 1;
    }

    .home .hero::after {
      content: "";
      width: 100%;
      height: 100%;
      min-height: 34.25rem;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      background: linear-gradient(to right, rgba(253, 253, 253, .1) 70.75%, rgba(253, 253, 253, 1) 98.25%, #FDFDFD 100%);
      opacity: 1;
    }*/

    .mobile-hide {
      display: inline-block;
    }
  }

  @media only screen and (min-width: 1280px) {
    .nav-links.phone {
      margin-left: clamp(1rem, 5.5vw, 4.5rem);
    }
  }

/*@media only screen and (min-width: 991px) {
  header {
      height: unset;
    }
    #menuToggle {
      top: 0;
    }
    #menuToggle input,
    #menuToggle span {
      display: none;
    }
    #menu {
      position: relative;
      opacity: 1;
      z-index: 99;
      transform: unset;
      padding: 0;
      flex-direction: row;
      margin: 0;
      top: 0;
      box-shadow: none;
      align-items: center;
      justify-content: flex-end;
    }
    .nav-links a {
      font-size: 1rem;
    }
    .nav-links.phone {
      margin-left: clamp(1rem, 5vw, 7rem);
    }
    header .nav-links .button {
      margin: 0;
      font-weight: 700;
    }
  }*/