@charset "UTF-8";
.button {
  padding: 5px 25px;
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 500ms ease-in-out;
}
.button:hover {
  text-decoration: none;
}
.button.yellow {
  background: #ECC328;
  color: #000000;
  border: 5px solid #ECC328;
}
.button.white-yellow {
  background: #FFFFFF;
  color: #000000;
  border: 5px solid #ECC328;
}
.button.blue {
  background: #4D5498;
  color: #FFFFFF;
  border: 5px solid #4D5498;
}
.button.blue:hover {
  background: #FFFFFF;
  color: #4D5498;
}
.button.white-blue {
  background: #FFFFFF;
  color: #4D5498;
  border: 5px solid #4D5498;
}
.button.white-blue:hover {
  background: #4D5498;
  color: #FFFFFF;
}

.mainNav {
  display: block;
}
.mainNav ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 0;
}
.mainNav ul li {
  text-transform: uppercase;
  position: relative;
}
.mainNav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 26px;
}
.mainNav ul li:hover ul {
  display: flex;
  opacity: 1;
}
.mainNav ul li ul {
  display: none;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  transition: all 500ms ease-in-out;
  opacity: 0;
  padding: 10px;
  width: 200px;
  border-top: 5px solid #ECC328;
}
.mainNav ul li ul li {
  text-transform: uppercase;
  width: 100%;
}
.mainNav ul li ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 18px;
}

#mobileNav {
  position: relative;
  display: none;
}
#mobileNav #mobileNavCloseButton {
  text-align: right;
  cursor: pointer;
  font-size: 20px;
}
#mobileNav #hamburger i {
  color: #FFFFFF;
  font-size: 36px;
}
#mobileNav .mobileNavList {
  display: flex;
  height: 100vh;
  width: 250px;
  background: #FFFFFF;
  position: fixed;
  right: -250px;
  top: 0;
  transition: all 500ms ease-in-out;
  z-index: 100;
  padding: 15px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
}
#mobileNav .mobileNavList ul {
  list-style-type: none;
}
#mobileNav .mobileNavList ul li {
  padding: 5px;
  box-sizing: border-box;
  transition: all 500ms ease-in-out;
  border-bottom: 1px solid #D7DFE5;
}
#mobileNav .mobileNavList ul li:hover {
  background: #ECC328;
}
#mobileNav .mobileNavList ul li:hover a {
  color: #FFFFFF;
}
#mobileNav .mobileNavList ul li a {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  width: 100%;
}
#mobileNav .mobileNavList ul li a:hover {
  text-decoration: none;
}

.locationsServiced {
  width: 100%;
  padding: 45px 15px;
  box-sizing: border-box;
  background: #383943;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.locationsServiced h2 {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}
.locationsServiced__row {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
}
.locationsServiced__county {
  width: 350px;
}
.locationsServiced__county h3 {
  color: #ECC328;
  border-bottom: 1px solid #ECC328;
  margin-bottom: 15px;
}
.locationsServiced__county ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.locationsServiced__county ul li {
  width: calc(50% - 15px);
}
.locationsServiced__county ul li a {
  color: #FFFFFF;
}

@media screen and (max-width: 900px) {
  .locationsServiced__row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 774px) {
  .locationsServiced__county {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  line-height: 1.2;
}

ul.hasPadding {
  padding-left: 20px;
}

@media screen and (max-width: 1500px) {
  .footer .companyInformation h2 {
    font-size: 40px;
  }
  .footer .officeHours h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1041px) {
  .footer .companyInformation h2 {
    font-size: 36px;
  }
  .footer .officeHours h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 850px) {
  .header {
    height: 75px;
  }
  .header .logoContainer {
    font-size: 20px;
  }
  .header .logoContainer img {
    width: 50px;
  }
  .header .logoContainer .companyName {
    max-width: 175px;
  }
}
@media screen and (max-width: 899px) {
  .header {
    padding: 0 25px;
  }

  .mainNav {
    display: none;
  }

  #mobileNav {
    display: block;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.7);
  height: 100px;
  padding: 0 15px;
  box-sizing: border-box;
  z-index: 99;
}
.header .logoContainer {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  font-size: 26px;
  text-decoration: none;
}
.header .logoContainer .companyName {
  max-width: 250px;
}

.footer {
  background: #000000;
  width: 100%;
  min-height: 50vh;
  display: flex;
  gap: 50px;
  color: #FFFFFF;
  padding: 100px 25px;
  box-sizing: border-box;
}
.footer .companyInformation {
  width: 50%;
}
.footer .companyInformation h2 {
  font-size: 48px;
  color: #ECC328;
  max-width: 75%;
  height: 3em;
}
.footer .companyInformation .address {
  font-size: 22px;
  margin-bottom: 30px;
}
.footer .companyInformation .phoneNumber {
  font-size: 22px;
  margin-bottom: 30px;
}
.footer .companyInformation .phoneNumber a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer .companyInformation .emailAddress {
  font-size: 22px;
}
.footer .companyInformation .emailAddress a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer .officeHours {
  width: 35%;
  font-size: 22px;
}
.footer .officeHours h2 {
  font-size: 48px;
  color: #ECC328;
  font-weight: 400;
  height: 3em;
}
.footer .officeHours .hoursTable {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.footer .officeHours .hoursTable .dayTime {
  display: flex;
  gap: 30px;
}
.footer .officeHours .hoursTable .dayTime .day {
  width: 30%;
  text-align: left;
}
.footer .navElements {
  width: 15%;
}
.footer .navElements .blankHeaderPlaceholder {
  font-size: 48px;
  height: 3em;
  width: 100%;
}
.footer .navElements ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  list-style-type: none;
  padding: 0;
}
.footer .navElements ul li a {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
  transition: all 500ms ease-in-out;
}
.footer .navElements ul li a:hover {
  color: #ECC328;
}
.footer .navElements ul li ul {
  display: none;
}
@media screen and (max-width: 899px) {
  .footer {
    flex-direction: column;
  }
  .footer .companyInformation {
    width: 100%;
  }
  .footer .companyInformation h2 {
    font-size: 32px;
    width: 100%;
    height: auto;
    text-align: center;
    max-width: 100%;
  }
  .footer .companyInformation .address {
    text-align: center;
  }
  .footer .companyInformation .phoneNumber {
    text-align: center;
  }
  .footer .companyInformation .emailAddress {
    text-align: center;
  }
  .footer .officeHours {
    width: 100%;
    text-align: center;
  }
  .footer .officeHours h2 {
    font-size: 32px;
    height: auto;
  }
  .footer .officeHours .hoursTable .dayTime {
    justify-content: center;
  }
  .footer .navElements {
    width: 100%;
  }
  .footer .navElements .blankHeaderPlaceholder {
    display: none;
  }
  .footer .navElements ul {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .footer .companyInformation h2 {
    font-size: 24px;
  }
  .footer .companyInformation .address, .footer .companyInformation .emailAddress, .footer .companyInformation .phoneNumber {
    font-size: 18px;
  }
  .footer .officeHours {
    font-size: 18px;
  }
  .footer .officeHours h2 {
    font-size: 24px;
  }
}

.faq {
  width: 100%;
  padding-left: max(10vw, 15px);
  padding-right: max(10vw, 15px);
  box-sizing: border-box;
}
.faq ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq ul .card {
  padding: 15px;
  border: 1px solid #000000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.faq ul .card .question {
  font-size: 18px;
  font-weight: 600;
}
.faq ul .card .answer {
  font-size: 16px;
  font-weight: 300;
  color: #6A6C6D;
}
.faq ul .card .answer ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq ul .card .answer strong {
  font-weight: 700;
}

.secondaryPage {
  width: 100%;
  min-height: 75vh;
}
.secondaryPage#fortMyersRegularCleaning .banner, .secondaryPage#babcockRanchRegularCleaning .banner {
  background-image: url("../images/banners/fort-myers-regular-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersDeepCleaning .banner {
  background-image: url("../images/banners/fort-myers-regular-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersMoveInOutCleaning .banner {
  background-image: url("../images/banners/fort-myers-move-in-move-out-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersCommercialCleaning .banner {
  background-image: url("../images/banners/fort-myers-commercial-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersConstructionCleaning .banner {
  background-image: url("../images/banners/fort-myers-construction-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersRentalCleaning .banner {
  background-image: url("../images/banners/fort-myers-regular-cleaning-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersHomeWatch .banner {
  background-image: url("../images/banners/fort-myers-home-watch-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage#fortMyersPressureWashing .banner {
  background-image: url("../images/banners/fort-myers-pressure-washing-services.jpg");
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.5);
}
.secondaryPage .banner {
  position: relative;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.secondaryPage .banner .bannerBody {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1000px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.secondaryPage .banner .bannerBody .title, .secondaryPage .banner .bannerBody h1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 55px;
}
.secondaryPage .banner .bannerBody .subtitle, .secondaryPage .banner .bannerBody h2 {
  font-weight: 400;
  font-size: 27px;
}
.secondaryPage .banner .bannerBody .buttonGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px auto 20px auto;
  gap: 30px;
}
.secondaryPage .banner .bannerBody .buttonGroup .button {
  font-size: 24px;
}
.secondaryPage .banner #bottomOfBannerMenu {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #000000;
  padding: 0 15px;
  box-sizing: border-box;
}
.secondaryPage .banner #bottomOfBannerMenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.secondaryPage .banner #bottomOfBannerMenu ul li {
  padding: 15px;
  box-sizing: border-box;
}
.secondaryPage .banner #bottomOfBannerMenu ul li.active {
  background: #FFFFFF;
}
.secondaryPage .banner #bottomOfBannerMenu ul li.active a {
  color: #000000;
}
.secondaryPage .banner #bottomOfBannerMenu ul li a {
  font-size: 27px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 500ms ease-in-out;
}
.secondaryPage .banner #bottomOfBannerMenu ul li a:hover {
  color: #ECC328;
}
.secondaryPage .banner #bottomOfBannerMenu ul li a .menuItem {
  text-align: center;
}
.secondaryPage .banner #bottomOfBannerMenu ul li a .menuItem .menuTop {
  font-size: 24px;
  text-transform: uppercase;
}
.secondaryPage .banner #bottomOfBannerMenu ul li a .menuItem .menuBottom {
  font-size: 18px;
}
.secondaryPage .aboutService {
  background: #FFFFFF;
  width: 100%;
  min-height: 50vh;
}
.secondaryPage .aboutService .twoColumn {
  display: flex;
  width: 100%;
  padding-left: max(10vw, 15px);
  padding-right: max(10vw, 15px);
  padding-top: 80px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.secondaryPage .aboutService .twoColumn .left {
  width: 70%;
  padding-right: max(10vw, 45px);
}
.secondaryPage .aboutService .twoColumn .left h2 {
  text-transform: uppercase;
  font-size: 20px;
}
.secondaryPage .aboutService .twoColumn .left h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}
.secondaryPage .aboutService .twoColumn .left section {
  margin: 30px auto;
  width: 100%;
}
.secondaryPage .aboutService .twoColumn .left section p {
  font-size: 17px;
}
.secondaryPage .aboutService .twoColumn .left ul.keepPadding {
  padding-left: 20px;
}
.secondaryPage .aboutService .twoColumn .right {
  flex-grow: 1;
}
.secondaryPage .aboutService .twoColumn .right .contactForm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  background: #FAF9F6;
  width: max(90%, 350px);
  height: 100%;
  padding: 15px;
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.15);
}
.secondaryPage .aboutService .twoColumn .right .contactForm .formSection {
  margin: 15px auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.secondaryPage .aboutService .twoColumn .right .contactForm .formSection .formTitle {
  text-align: center;
  font-weight: 700;
  color: #6E6649;
}

.button {
  padding: 5px 25px;
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 500ms ease-in-out;
}
.button:hover {
  text-decoration: none;
}
.button.yellow {
  background: #ECC328;
  color: #000000;
  border: 5px solid #ECC328;
}
.button.white-yellow {
  background: #FFFFFF;
  color: #000000;
  border: 5px solid #ECC328;
}
.button.blue {
  background: #4D5498;
  color: #FFFFFF;
  border: 5px solid #4D5498;
}
.button.blue:hover {
  background: #FFFFFF;
  color: #4D5498;
}
.button.white-blue {
  background: #FFFFFF;
  color: #4D5498;
  border: 5px solid #4D5498;
}
.button.white-blue:hover {
  background: #4D5498;
  color: #FFFFFF;
}

.mainNav {
  display: block;
}
.mainNav ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 0;
}
.mainNav ul li {
  text-transform: uppercase;
  position: relative;
}
.mainNav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 26px;
}
.mainNav ul li:hover ul {
  display: flex;
  opacity: 1;
}
.mainNav ul li ul {
  display: none;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  transition: all 500ms ease-in-out;
  opacity: 0;
  padding: 10px;
  width: 200px;
  border-top: 5px solid #ECC328;
}
.mainNav ul li ul li {
  text-transform: uppercase;
  width: 100%;
}
.mainNav ul li ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 18px;
}

#mobileNav {
  position: relative;
  display: none;
}
#mobileNav #mobileNavCloseButton {
  text-align: right;
  cursor: pointer;
  font-size: 20px;
}
#mobileNav #hamburger i {
  color: #FFFFFF;
  font-size: 36px;
}
#mobileNav .mobileNavList {
  display: flex;
  height: 100vh;
  width: 250px;
  background: #FFFFFF;
  position: fixed;
  right: -250px;
  top: 0;
  transition: all 500ms ease-in-out;
  z-index: 100;
  padding: 15px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
}
#mobileNav .mobileNavList ul {
  list-style-type: none;
}
#mobileNav .mobileNavList ul li {
  padding: 5px;
  box-sizing: border-box;
  transition: all 500ms ease-in-out;
  border-bottom: 1px solid #D7DFE5;
}
#mobileNav .mobileNavList ul li:hover {
  background: #ECC328;
}
#mobileNav .mobileNavList ul li:hover a {
  color: #FFFFFF;
}
#mobileNav .mobileNavList ul li a {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  width: 100%;
}
#mobileNav .mobileNavList ul li a:hover {
  text-decoration: none;
}

.locationsServiced {
  width: 100%;
  padding: 45px 15px;
  box-sizing: border-box;
  background: #383943;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.locationsServiced h2 {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}
.locationsServiced__row {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
}
.locationsServiced__county {
  width: 350px;
}
.locationsServiced__county h3 {
  color: #ECC328;
  border-bottom: 1px solid #ECC328;
  margin-bottom: 15px;
}
.locationsServiced__county ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.locationsServiced__county ul li {
  width: calc(50% - 15px);
}
.locationsServiced__county ul li a {
  color: #FFFFFF;
}

@media screen and (max-width: 900px) {
  .locationsServiced__row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 774px) {
  .locationsServiced__county {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  line-height: 1.2;
}

ul.hasPadding {
  padding-left: 20px;
}

@media screen and (max-width: 1500px) {
  .footer .companyInformation h2 {
    font-size: 40px;
  }
  .footer .officeHours h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1041px) {
  .footer .companyInformation h2 {
    font-size: 36px;
  }
  .footer .officeHours h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 850px) {
  .header {
    height: 75px;
  }
  .header .logoContainer {
    font-size: 20px;
  }
  .header .logoContainer img {
    width: 50px;
  }
  .header .logoContainer .companyName {
    max-width: 175px;
  }
}
@media screen and (max-width: 899px) {
  .header {
    padding: 0 25px;
  }

  .mainNav {
    display: none;
  }

  #mobileNav {
    display: block;
  }
}
.customerTestimonials {
  padding: 60px 30px;
  box-sizing: border-box;
  background: #D7DFE5;
  width: 100%;
  min-height: 50vh;
}
.customerTestimonials .title {
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.customerTestimonials .subtitle {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  font-family: "Great Vibes", serif;
  margin-bottom: 60px;
}
.customerTestimonials .testimonialCarousel {
  background: #FFFFFF;
  width: 60%;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 650px;
}
.customerTestimonials .testimonialCarousel .rating {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.customerTestimonials .testimonialCarousel .rating img {
  width: 50px;
}
.customerTestimonials .testimonialCarousel .carousel .carousel-inner .carousel-item .testimonial .quote {
  color: #6A6C6D;
}
.customerTestimonials .testimonialCarousel .carousel .carousel-inner .carousel-item .name {
  color: #000000;
  font-weight: 700;
  text-align: right;
}

.customerProcess {
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/home/woman-smiling.png");
  background-position: center right -200px;
  background-size: contain;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.customerProcess .title {
  padding-top: 100px;
  box-sizing: border-box;
  width: 45%;
  margin-bottom: 125px;
}
.customerProcess .title .top {
  width: 100%;
  font-size: 100px;
  font-weight: 700;
  color: #000000;
  text-align: right;
  text-transform: uppercase;
}
.customerProcess .title .bottom {
  position: relative;
  background: #ECC328;
  height: 150px;
}
.customerProcess .title .bottom span {
  font-family: "Great Vibes", serif;
  position: absolute;
  left: 0;
  top: -40px;
  padding-right: 20px;
  font-size: 225px;
  width: 100%;
  text-align: right;
  letter-spacing: 15px;
}
.customerProcess .processItems {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
}
.customerProcess .processItems > .item {
  width: 25%;
  box-sizing: border-box;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.customerProcess .processItems > .item:nth-child(odd) {
  background-image: url("../images/home/background_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.customerProcess .processItems > .item .processTitle {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}
.customerProcess .processItems > .item .processDescription {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
.customerProcess .processButtons {
  width: 100%;
  padding: 100px 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.customerProcess .processButtons .button {
  width: 500px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cleaningChecklist {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  background-color: #383943;
  color: #FFFFFF;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 30px auto;
}
.cleaningChecklist .checklistRow {
  display: flex;
  gap: 20px;
}
.cleaningChecklist .checklistRow .checklistArea {
  width: 50%;
  border: 1px solid #808588;
  padding: 10px;
  box-sizing: border-box;
}
.cleaningChecklist .checklistRow .checklistArea.noBorder {
  border: 1px solid transparent;
}
.cleaningChecklist .checklistRow .checklistArea .areaName {
  margin-bottom: 20px;
}
.cleaningChecklist .checklistRow .checklistArea ul {
  list-style-type: none;
}
.cleaningChecklist .checklistRow .checklistArea ul li:before {
  content: "✓";
  margin-right: 10px;
  color: #ECC328;
}
.cleaningChecklist .checklistRow .checklistArea ul li.heading {
  font-size: 18px;
  font-weight: 600;
  color: #ECC328;
}
.cleaningChecklist .checklistRow .checklistArea ul li.heading:before {
  content: "";
  margin-right: 0;
}
.cleaningChecklist .checklistRow .checklistArea ul li.heading ul {
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cleaningChecklist .checklistRow .checklistArea ul li.heading ul li {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 15px;
}

.regularCleaningDetails {
  padding-left: max(10vw, 15px);
  padding-right: max(10vw, 15px);
}
.regularCleaningDetails h2 {
  text-transform: uppercase;
  font-size: 20px;
}
.regularCleaningDetails h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}

.faq {
  width: 100%;
  padding-left: max(10vw, 15px);
  padding-right: max(10vw, 15px);
  box-sizing: border-box;
}
.faq ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq ul .card {
  padding: 15px;
  border: 1px solid #000000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.faq ul .card .question {
  font-size: 18px;
  font-weight: 600;
}
.faq ul .card .answer {
  font-size: 16px;
  font-weight: 300;
  color: #6A6C6D;
}
.faq ul .card .answer ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq ul .card .answer strong {
  font-weight: 700;
}

.secondaryPage .aboutService ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.secondaryPage .aboutService ul li {
  font-size: 18px;
}
.secondaryPage .aboutService .whyPressureWashingMatters {
  margin: 45px auto;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: max(10vw, 15px);
  padding-right: max(10vw, 15px);
  box-sizing: border-box;
}
.secondaryPage .faq {
  margin: 45px auto;
}
