:root {
  --white-smoke: #f3f3f3;
  --light-color: white;
  --royal-blue: #21598c;
  --dark-slate-grey: #373c44;
  --white-2: white;
  --light-grey: #ddd;
  --primary-brand-color: #3b83f7;
  --secondary-brand-color: #89b6ff;
  --mid-grey: #727272;
  --dark-slate-blue: #721c26;
  --dark-color: black;
  --dark-slate-blue-2: #324e7e;
  --white: white;
  --dark-slate-blue-3: #324e7e;
  --indian-red: #995b6a;
  --dark-slate-blue-4: #324e7e;
  --orange: #fdb83b;
  --royal-blue-2: #21598c;
  --white-smoke-2: #f3f3f3;
  --royal-blue-3: #21598c;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--white-smoke);
  color: #333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  color: var(--light-color);
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: lato, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 69.5px;
}

h2 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: lato, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 60.5px;
}

h3 {
  color: var(--royal-blue);
  text-align: center;
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: lato, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 47px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  color: var(--dark-slate-grey);
  margin-bottom: 25px;
  font-family: lato, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
}

a {
  color: var(--white-2);
  text-decoration: none;
}

.section-padding {
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  flex: 1;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 41px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.style-guide-category {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 5px;
  font-weight: 700;
}

.style-guide-edit {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.light-text {
  color: var(--light-color);
}

.style-guide-element {
  color: #fff;
  background-color: #3b83f7;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class {
  color: #fff;
  background-color: #3b83f7;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class.tag-class {
  background-color: #cc55b8;
}

.style-guide-edit-wrap {
  opacity: .4;
}

.style-guide-edit-wrap:hover {
  opacity: 1;
}

.small-p {
  font-size: 14px;
  line-height: 18px;
}

.large-p {
  color: var(--dark-slate-grey);
  font-size: 18px;
  line-height: 25px;
}

.style-guide-color-wrap {
  background-color: var(--light-grey);
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  margin-top: 30px;
  padding: 15px 30px;
  display: flex;
}

.style-guide-color-wrap.primary-color-background {
  background-color: var(--primary-brand-color);
}

.style-guide-color-wrap.secondary-color-background {
  background-color: var(--secondary-brand-color);
}

.style-guide-color-wrap.mid-grey-color-background {
  background-color: var(--mid-grey);
}

.style-guide-color-wrap.light-color-background {
  background-color: var(--light-color);
}

.style-guide-color-wrap.white-background {
  background-color: var(--mid-grey);
}

.style-guide-color-wrap.light-grey-color-background {
  background-color: var(--light-grey);
}

.button {
  border: 1px solid var(--light-color);
  background-color: var(--dark-slate-blue);
  outline-offset: 0px;
  color: #fff;
  letter-spacing: .8px;
  border-radius: 10px;
  outline: 1px #fff;
  margin-top: 0;
  padding: 11px 51px;
  font-family: lato, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  transition: opacity .2s;
}

.button:hover {
  background-color: var(--dark-color);
}

.button.ghost-button {
  border: 2px solid var(--primary-brand-color);
  color: var(--primary-brand-color);
  background-color: #0000;
}

.button.ghost-button.invese-ghost {
  border-color: var(--light-color);
  color: var(--light-color);
}

.button.inverse-button {
  background-color: var(--light-color);
  outline-color: var(--dark-slate-blue-2);
  outline-offset: 0px;
  color: var(--dark-slate-blue-2);
  border: 1px solid #324e7e;
  outline-width: 1px;
  outline-style: none;
  margin-right: 5px;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
}

.button.inverse-button:hover {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.button.form-submit {
  margin-top: 15px;
}

.button.herobutton {
  outline-offset: 0px;
  outline: 1px #fff;
  font-size: 25px;
  line-height: 37px;
}

.button.herobutton:hover {
  outline-offset: 0px;
  outline: 1px #fff;
}

.button.herobutton.servicebutton {
  background-color: #721c26;
  outline-width: 1px;
  margin-right: 20px;
}

.button.herobutton.servicebutton:hover {
  background-color: var(--light-color);
  color: var(--dark-slate-blue-3);
}

.button.herobutton.servicebutton.blue {
  background-color: #324e7e;
}

.button.herobutton.servicebutton.blue:hover {
  background-color: var(--indian-red);
  color: var(--white-2);
}

.button.servicesbutton {
  padding: 32px;
}

.style-guide-grid-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start stretch;
  padding-top: 10px;
  display: grid;
}

.list {
  padding-left: 15px;
}

.list-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-field.form-select {
  background-color: var(--light-color);
}

.form-lable {
  margin-top: 20px;
}

.form-checkbox {
  width: 20px;
}

.style-guide-layout-demo {
  background-color: #d3d3d3;
  border: 1px solid #d3d3d3;
}

.style-guide-layout-demo.section-padding {
  margin-top: 30px;
}

.style-guide-white-div {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.popup-background-wrap {
  z-index: 100;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-card {
  background-color: var(--light-color);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  padding: 30px;
  display: flex;
  position: relative;
}

.style-guide-wrap {
  padding-top: 20px;
}

.close-popup-button {
  color: var(--dark-color);
  padding: 15px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -5px -5px auto auto;
}

.style-guide-popup-wrap {
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 22px;
  display: flex;
}

.delete-this {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.herosection {
  background-image: linear-gradient(77deg, #cecececc, #721c264d 30%), url('../images/Rectangle-14_1.avif');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  height: 1120px;
}

.herosection.about {
  background-image: linear-gradient(77deg, #324e7eb3, #cecece47), url('../images/ssssss_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.herosection.about.interiorhero {
  background-image: linear-gradient(47deg, #324e7ecc, #cecece80), url('../images/Rectangle-231_1.avif');
}

.herosection.about.interiorhero.flooringhero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/flooring2_1flooring2.webp');
}

.herosection.about.interiorhero.flooringhero.c-rhero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/cr_1cr.webp');
}

.herosection.about.interiorhero.hardwood {
  background-image: linear-gradient(47deg, #324e7ecc, #cecece80), url('../images/Rectangle-23_2.avif');
}

.herosection.about.interiorhero.vinyl {
  background-image: linear-gradient(47deg, #324e7ecc, #cecece80 10%), url('../images/vinylhero.png');
}

.herosection.about.interiorhero.tile {
  background-image: linear-gradient(47deg, #324e7ecc, #cecece80), url('../images/tile23_1.avif');
}

.herosection.about.reviewshero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/Reviewshero.jpg');
}

.herosection.about.reviewshero.galleryhero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/gallery_1gallery.webp');
}

.herosection.exteriorhero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/ex_1ex.webp');
}

.herosection.contactherosection {
  background-image: linear-gradient(23deg, #721c26b3, #0e2f6047);
  background-position: 0 0;
}

.herosection.refiinishhero {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/cabinet_1cabinet.avif');
  background-position: 0 0, 50%;
}

.herosection.powerwashing {
  background-image: linear-gradient(77deg, #995b6a73, #324e7e33), url('../images/exterior2.jpg');
}

.container-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-1200.formsection {
  margin-top: 300px;
}

.nav-menu {
  flex-direction: row;
  align-items: center;
  padding: 43px;
  display: flex;
}

.navbar {
  background-color: #0000;
}

.navlinkstyle {
  color: var(--light-color);
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s;
}

.navlinkstyle:hover {
  color: var(--dark-slate-blue-4);
}

.navlinkstyle.w--current {
  color: var(--light-color);
}

.navlinkstyle.w--current:hover {
  color: var(--dark-slate-blue-3);
}

.hero-content {
  margin-top: 145px;
  padding-right: 496px;
}

.hero-content.abouthero {
  padding-right: 486px;
}

.hero-textblock {
  color: var(--light-color);
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: lato, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  line-height: 33px;
}

.text-span {
  color: #fdb83b;
}

.heading {
  text-transform: uppercase;
}

.hero-textblock2 {
  color: var(--light-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 50px;
  font-family: lato, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
}

.mysection {
  margin-top: 100px;
  padding: 20px;
}

.mysection.servicesection {
  background-image: linear-gradient(300deg, var(--indian-red), var(--dark-slate-blue-3));
  margin-top: 0;
}

.mysection.extrareview {
  background-image: linear-gradient(230deg, #995b6a30, #324e7eba), url('../images/rose_1rose.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 900px;
}

.mysection.bottompage {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/Rectangle-17_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  height: 760px;
}

.mysection.bottompage.newbottom {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/carpeo.jpg');
  margin-top: 0;
}

.mysection.bottompage.newbottom.exteriorbottom {
  background-image: linear-gradient(190deg, #eebc2f33, #995b6a73), url('../images/ex5_1ex5.webp');
}

.mysection.bottompage.newbottom.flooringbottom {
  background-image: linear-gradient(190deg, #995b6a1f, #324e7e87), url('../images/flooring6_1flooring6.webp');
}

.mysection.bottompage.newbottom.hardbottom {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/bgfloor_1.avif');
}

.mysection.bottompage.newbottom.vinylbottom {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/v2vback_1.avif');
  background-position: 0 0, 0 0;
}

.mysection.bottompage.newbottom.tilebottom {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/endtile_1.avif');
}

.mysection.bottompage.nogaponbottom {
  margin-top: 0;
}

.mysection.bottompage.aboutbottom {
  background-image: linear-gradient(190deg, #721c2666, #0e2f6080), url('../images/aboutb_1.avif');
}

.mysection.footer {
  background-color: #0e2f6066;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mysection.linear {
  background-image: linear-gradient(60deg, #995b6ab3, #324e7e82);
  height: 800px;
}

.mysection.linear.interiorsstyle {
  background-image: none;
  height: 630px;
  margin-top: 0;
}

.mysection.linear.nogap {
  margin-top: 0;
}

.mysection.interiorcolor {
  background-color: var(--white-2);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mysection.interiorcolor.navybluesection {
  background-color: #324e7e;
}

.mysection.morespacesection {
  margin-bottom: 100px;
}

.mysection.white {
  background-color: var(--white-2);
}

.mysection.lineargradiant {
  background-image: linear-gradient(#995b6ab3, #324e7e47);
  margin-top: 0;
  padding: 110px 85px;
}

.mysection.yellowsectionreviewswrapper {
  background-color: #fdb83b;
  padding-top: 100px;
  padding-bottom: 100px;
}

.homepage_grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
}

.homepageh2 {
  letter-spacing: -1.3px;
  width: 640px;
  margin-bottom: 60px;
  padding: 0;
  font-size: 55px;
}

.text-span-2 {
  color: var(--orange);
}

.text-span-3 {
  color: var(--royal-blue-2);
}

.grid {
  grid-row-gap: 16px;
  grid-template-rows: 114px minmax(auto, .25fr);
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  padding: 20px;
}

.services_wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto auto auto;
  padding: 40px;
}

.services_h2 {
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 40px;
  font-size: 60px;
  line-height: 66px;
}

.services_h2.solutionsh2 {
  text-align: right;
  padding-left: 51px;
  padding-right: 51px;
}

.greyroundbackground {
  background-color: var(--white-smoke-2);
  border: 3px solid #fff;
  border-radius: 15px;
  width: 544px;
  height: 435px;
  box-shadow: 0 1px 10px 2px #00000080;
}

.text_wrapper {
  text-align: center;
  padding: 25px;
}

.textblockpro {
  color: var(--royal-blue-3);
  letter-spacing: -.3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: lato, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 47px;
}

.paragraphservice {
  text-align: center;
  margin-bottom: 0;
  line-height: 23.8px;
}

.h2service_wrapper {
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 40px;
  display: flex;
}

.image {
  margin-bottom: 20px;
}

.h2style {
  color: #324e7e;
  font-size: 60px;
  font-weight: 900;
  line-height: 70px;
}

.herocustomerswrapper {
  text-align: center;
  padding-left: 273px;
  padding-right: 273px;
}

.image-2, .customerreviewswrapper {
  margin-top: 25px;
}

.customerreviewswrapper.reviewspacingwrapper {
  margin-top: 60px;
}

.customerreviewsgrid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.reviewbox {
  background-color: #fff;
  border-radius: 15px;
  height: 549px;
  padding-right: 0;
  transition: all .2s;
  box-shadow: 0 4px 10px 4px #00000036;
}

.reviewbox:hover {
  background-color: var(--orange);
}

.peoplecolorbackground {
  background-color: #995b6a;
  border: 3px solid #fff;
  border-radius: 15px 15px 0 0;
  height: 176px;
  padding: 15px;
  transition: all .2s;
  position: relative;
}

.peoplecolorbackground:hover {
  background-color: var(--dark-slate-blue-3);
}

.div-block {
  height: 100%;
}

.customernamesstyle {
  color: #fff;
  flex-flow: column wrap;
  align-content: center;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  font-family: lato, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
  position: absolute;
  top: auto;
  left: 135px;
}

.starwrapper {
  display: inline-block;
  position: absolute;
  top: 87px;
}

.div-block-2 {
  display: inline-block;
  position: absolute;
  inset: 46% -49% 0% auto;
}

.textblockreviewsstyle {
  color: #373c44;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: lato, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}

.div-block-3 {
  text-align: center;
  margin-top: 25px;
  padding: 20px 32px;
}

.reviewparagraph {
  text-align: left;
  margin-top: 40px;
}

.solutionsgridwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: flex-start;
  margin-top: 100px;
  padding: 0;
  display: grid;
}

.solutionsboxwrapper {
  border: 2px solid var(--light-color);
  outline-offset: 0px;
  background-color: #f7f7f7;
  border-radius: 15px;
  outline: 3px #fff;
  width: 444px;
  height: 588px;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px 4px #00000036;
}

.imagewrapper {
  border-radius: 15px;
  width: auto;
  height: 275px;
}

.image-3 {
  border-radius: 15px 15px 0 0;
}

.solutionofferswrappers {
  text-align: center;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

.solutionsstyletext {
  color: var(--dark-slate-blue-4);
  text-transform: uppercase;
  margin-top: 10px;
  font-family: lato, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.solutionspstyle {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 22px;
}

.button-2 {
  color: var(--dark-slate-blue-4);
  background-color: #fff;
  border: 3px solid #324e7e;
  border-radius: 10px;
  font-family: lato, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 17px;
  transition: opacity .2s;
}

.button-2:hover {
  border-color: var(--orange);
  background-color: var(--indian-red);
  color: var(--light-color);
}

.paintingsolutionswrapper {
  position: relative;
}

.image-4 {
  position: relative;
  top: -99px;
  left: -54px;
}

.benefits_wrapper {
  margin-top: 40px;
}

.beneftisgridwrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.whiteblock {
  border: 3px solid var(--light-color);
  background-color: #fff;
  border-radius: 15px;
  width: 369.99px;
  height: 314.33px;
  box-shadow: 0 4px 10px 4px #00000036;
}

.benefitsblockscontent {
  text-align: center;
  padding: 20px;
}

.paragraph {
  margin-top: 15px;
}

.extracontentwrapper {
  margin-top: 158px;
  padding-right: 592px;
}

.extrah2 {
  color: #fff;
  text-transform: none;
  font-size: 47px;
  line-height: 51px;
}

.text-span-4 {
  color: #fdb83b;
}

.extraparagraphstyle {
  color: var(--white-2);
  letter-spacing: -.4px;
  margin-top: 30px;
  margin-bottom: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.custombutton {
  border: 3px solid var(--white-2);
  letter-spacing: 1px;
  background-color: #0000;
  border-radius: 10px;
  padding: 13px 71px;
  font-family: lato, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  transition: opacity .2s;
}

.custombutton:hover {
  background-color: var(--orange);
  color: var(--dark-slate-blue-4);
}

.paragraph-2 {
  letter-spacing: 1px;
  margin-top: 35px;
  line-height: 30px;
}

.contentwrapper {
  text-align: center;
  padding: 212px 57px;
}

.contentwrapper.aboutbottomwrapper {
  padding-left: 0;
  padding-right: 0;
}

.letusdoh3 {
  color: var(--white-2);
  text-transform: uppercase;
  font-size: 68px;
  line-height: 79px;
}

.text-span-5 {
  color: #fdb83b;
}

.footergrid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.socialmediawrapper {
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.socialmediawrapper.morespace {
  margin-top: 150px;
}

.footertextblock {
  color: var(--white-2);
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s;
}

.footertextblock:hover {
  color: #000000c2;
}

.image-5 {
  margin-right: 5px;
}

.socialmedicaicons {
  margin-right: 20px;
  transition: opacity .3s;
}

.socialmedicaicons:hover {
  opacity: .81;
  transform: scale(1.2);
}

.numberonfooter {
  color: var(--white-2);
  margin-right: 5px;
  text-decoration: none;
}

.titlefooterstyle {
  color: var(--white-2);
  letter-spacing: .1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.footertextlinkstyle {
  color: var(--white-2);
  margin-bottom: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 0;
  text-decoration: none;
  transition: all .2s;
}

.footertextlinkstyle:hover {
  color: var(--dark-slate-blue-4);
  text-align: left;
}

.footermain {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  display: flex;
}

.map {
  display: block;
}

.text-span-6 {
  color: var(--orange);
}

.heading-2 {
  margin-bottom: 20px;
}

.grid-2 {
  grid-column-gap: 49px;
  grid-template-rows: auto;
}

.blockwrapper {
  background-image: url('../images/jsjsj.png');
  background-position: 50%;
  background-size: cover;
  width: 480px;
  height: 384px;
}

.blockwrapper._1pic {
  background-image: url('../images/about4_1about4.webp');
}

.blockwrapper._2pic {
  background-image: url('../images/House-Cleaning-Service-in-Nashville-Tennessee-2.jpg_2.avif');
}

.blockwrapper._2pic.exteriorpic {
  background-image: url('../images/saircase_1saircase.webp');
  background-position: 5% 17%;
}

.blockwrapper._2pic.exteriorpic.refinish {
  background-image: url('../images/House-Cleaning-Service-in-Nashville-Tennessee-2.jpg_1House-Cleaning-Service-in-Nashville-Tennessee-2.jpg.avif');
}

.blockwrapper._2pic.flooringpic {
  background-image: url('../images/6pics_16pics.webp');
}

.blockwrapper._2pic.c-rpic {
  background-image: url('../images/tvstand_1tvstand.webp');
  background-position: 50% 63%;
}

.blockwrapper._2pic.powerwashingpic {
  background-image: url('../images/ex3_1ex3.avif');
}

.blockwrapper.pic3 {
  background-image: url('../images/ibji_1.avif');
}

.blockwrapper.pic3.ext1pic {
  background-image: url('../images/090_1090.avif');
}

.blockwrapper.pic3.flooringpic1 {
  background-image: url('../images/shinyfloor_1shinyfloor.webp');
}

.blockwrapper.pic3.powerwash45 {
  background-image: url('../images/p1_1p1.avif');
}

.blockwrapper.hardwoodpick {
  background-image: url('../images/wq.png');
}

.blockwrapper.hard2pick {
  background-image: url('../images/hd.png');
}

.blockwrapper.vinylpoc {
  background-image: url('../images/v2.avif');
}

.blockwrapper.tilepick {
  box-shadow: none;
  outline-offset: 0px;
  background-image: url('../images/til33.avif');
  outline: 0 #324e7e;
}

.blockwrapper.tile2pick {
  background-image: url('../images/tile4_1.avif');
}

.blockwrapper.vinyl3pick {
  background-image: url('../images/vin5_1.avif');
}

.heading-3 {
  color: #324e7e;
  letter-spacing: -1.3px;
  font-size: 55px;
}

.heading-3.yellow, .text-span-7 {
  color: var(--orange);
}

.image-6 {
  margin-top: 15px;
}

.paragraph-3 {
  margin-top: 20px;
}

.paragraph-3.yellowparagraph {
  color: var(--orange);
}

.contentwewantwrapper {
  text-align: center;
  padding: 100px 1px 58px;
}

.heading-4 {
  color: #324e7e;
  text-transform: capitalize;
  font-size: 60px;
}

.text-span-8 {
  color: var(--orange);
}

.textsuper {
  color: #324e7e;
  letter-spacing: -.5px;
  text-transform: capitalize;
  font-family: lato, sans-serif;
  font-size: 32px;
  line-height: 70px;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.whatdoweoffer {
  background-color: #f3f3f3;
  border-radius: 15px;
  width: 241px;
  height: 221px;
  box-shadow: 0 4px 10px 4px #00000036;
}

.whatdoweoffer.colorchange {
  background-color: #0e2f60;
}

.icontextstyle {
  color: #21598c;
  text-transform: uppercase;
  font-family: lato, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 47px;
}

.icontextstyle.whitestyle {
  color: var(--white-2);
}

.iconcontentwrapper {
  text-align: center;
  padding: 31px 15px;
}

.text-span-9, .text-span-10, .text-span-11, .text-span-12 {
  color: var(--orange);
}

.longbutton {
  text-transform: uppercase;
  background-color: #721c26;
  border-radius: 10px;
  margin-top: 40px;
  padding: 11px 200px;
  font-size: 23px;
  transition: opacity .2s;
}

.longbutton:hover {
  background-color: var(--dark-color);
}

.longbutton.whiteborderbutton {
  border: 3px solid var(--white-2);
}

.body {
  font-family: lato, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 37px;
}

.text-span-13 {
  color: var(--orange);
}

.contentinteriorwrapper {
  text-align: center;
}

.avoidwrapper {
  margin-top: 60px;
}

.avoidgrid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.hiringbox {
  background-color: #721c26;
  border-radius: 15px;
  width: 349px;
  height: 250px;
  transition: all .2s;
  box-shadow: 0 4px 10px 4px #0003;
}

.hiringbox.blue {
  background-color: #0e2f60;
}

.hirincontentwrapper {
  padding: 44px 50px;
}

.hiringtextblock {
  color: var(--white-2);
  text-align: center;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 900;
  line-height: 45px;
}

.enhancewrapper_content {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.html-embed {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 60px;
}

.beforeafterwrapper {
  background-color: #995b6ad6;
  border-radius: 20px;
  width: 380px;
  height: 240px;
  margin-top: 60px;
  padding: 15px 33px 0;
}

.text-span-14 {
  color: var(--orange);
}

.text-span-15, .text-span-16 {
  color: #324e7e;
}

.text-span-17 {
  color: var(--orange);
}

.reviewcontent {
  text-align: center;
}

.reviewh3 {
  color: #324e7e;
  font-size: 60px;
  line-height: 70px;
}

.image-7 {
  margin-top: 20px;
}

.reviewpicturewrapper {
  margin-top: 60px;
  padding-left: 32px;
  padding-right: 32px;
}

.reviewtextblock {
  color: #324e7e;
  margin-top: 40px;
  font-size: 55px;
  line-height: 60px;
}

.longreviewstyle {
  color: #324e7e;
  letter-spacing: 1px;
  margin-top: 40px;
  font-size: 40px;
  line-height: 53.2px;
}

.previewswrapper {
  margin-top: 100px;
  padding: 20px;
}

.yellowpstyle {
  color: #324e7e;
  text-align: center;
  font-size: 40px;
  line-height: 128%;
}

.reviewstylefontp {
  color: #324e7e;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  margin-right: 20px;
  font-size: 29px;
  font-weight: 700;
}

.names_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.linestyle {
  background-color: #324e7e;
  width: 3px;
}

.linepic {
  margin-right: 20px;
}

.paintingrewviewwrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.seemorereviewsbutton {
  color: #324e7e;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #324e7e;
  border-radius: 10px;
  margin-top: 30px;
  padding: 12px 72px;
  font-size: 20px;
  line-height: 30px;
  transition: opacity .2s;
}

.seemorereviewsbutton:hover {
  background-color: var(--light-grey);
  color: var(--dark-slate-blue-4);
}

.image-8 {
  margin-top: 30px;
}

.gallerypstyle {
  color: #324e7e;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 40px;
  line-height: 61px;
}

.beforeaftertextblock {
  color: #324e7e;
  letter-spacing: -.5px;
  text-transform: capitalize;
  font-family: lato, sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 70px;
}

.b-a_wrapper {
  text-align: center;
  margin-top: 160px;
}

.gallerygrid {
  grid-column-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.text-span-18 {
  color: var(--orange);
}

.mycontain-2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.success-message {
  background-color: #e7e1d3;
  border-radius: 9px;
}

.formsection {
  margin-top: 120px;
}

.contactheading {
  color: #324e7e;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}

.form {
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.error-message {
  color: #fff;
  background-color: #eb4814;
  border-radius: 10px;
}

.submit-button {
  background-color: #324e7e;
  border-radius: 5px;
  align-self: flex-end;
  width: 130px;
  margin-top: 15px;
  transition: all .2s;
}

.submit-button:hover {
  background-color: var(--indian-red);
}

.contactparagraph {
  color: #324e7e;
}

.grid-16 {
  grid-template-rows: auto;
}

.form-block {
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 11px 10px #00000036;
}

.field-label-2 {
  color: #324e7e;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.googlelink {
  transition: all .3s;
}

.googlelink:hover {
  opacity: .81;
  transform: scale(1.2);
}

.dropdown-toggle {
  color: #fff;
  padding-right: 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.dropdown-toggle.w--open:hover {
  color: var(--dark-slate-blue-3);
}

.text-block {
  font-size: 15px;
  line-height: 20px;
}

.dropdown-link {
  color: var(--light-color);
  background-color: #995b6a;
  padding: 25px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: opacity .2s;
}

.dropdown-link:hover {
  background-color: var(--light-grey);
  color: var(--dark-slate-blue-3);
}

.dropdown-link.w--current {
  color: var(--light-color);
}

.dropdown-link.w--current:hover {
  color: var(--dark-slate-blue-3);
}

.hiddengrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 49px;
  display: none;
}

.newhidegrid {
  grid-template-rows: auto auto auto;
  display: none;
}

.dennisguerrerowebdesign {
  color: #000000bf;
  font-weight: 500;
}

.div-block-4 {
  margin-top: 20px;
}

.text-span-19 {
  text-decoration: underline;
}

.text-block-2, .text-block-3 {
  margin-top: 10px;
}

.text-block-4 {
  color: var(--white-2);
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.locationstex {
  color: var(--white-2);
  margin-top: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.locationstex.npspace {
  margin-top: 0;
}

.text-span-20, .text-span-21 {
  color: #721c26;
}

.link-block, .link-block-2 {
  display: flex;
}

.grid-18 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-7 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.div-block-8 {
  text-align: center;
  font-size: 40px;
}

.text-span-22 {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .button.inverse-button {
    margin-right: 40px;
  }

  .button.herobutton {
    padding-left: 32px;
    padding-right: 32px;
  }

  .button.herobutton.servicebutton {
    margin-bottom: 20px;
  }

  .herosection {
    background-position: 0 0, 72%;
  }

  .herosection.about.interiorhero {
    background-position: 0 0, 80%;
  }

  .container-1200.formsection {
    padding: 25px;
  }

  .nav-menu {
    background-color: var(--dark-slate-blue-3);
    padding: 20px;
  }

  .navbar {
    padding: 20px;
  }

  .navlinkstyle:hover {
    background-color: var(--indian-red);
    color: var(--light-color);
  }

  .navlinkstyle.menulink:hover {
    color: var(--light-color);
  }

  .hero-content {
    margin-top: 84px;
    padding-left: 40px;
    padding-right: 167px;
  }

  .hero-content.abouthero {
    margin-top: 148px;
    padding-right: 142px;
  }

  .mysection.extrareview {
    background-position: 0 0, 60%;
  }

  .mysection.linear, .mysection.linear.interiorsstyle {
    height: auto;
  }

  .homepage_grid {
    flex-direction: column;
    display: flex;
  }

  .services_wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 65px;
    padding-right: 65px;
    display: flex;
  }

  .services_text {
    margin-bottom: 40px;
  }

  .services_h2.solutionsh2 {
    padding-left: 76px;
    padding-right: 76px;
  }

  .image {
    display: none;
  }

  .herocustomerswrapper {
    padding-left: 105px;
    padding-right: 104px;
  }

  .customerreviewsgrid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .reviewbox {
    width: 490px;
    height: 510px;
  }

  .solutionsgridwrapper {
    align-items: center;
    display: flex;
  }

  .solutionsboxwrapper {
    outline-offset: 0px;
    outline: 3px #fff;
  }

  .image-4 {
    display: none;
  }

  .beneftisgridwrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .whiteblock {
    outline-color: var(--white);
    outline-offset: 0px;
    outline-width: 3px;
    outline-style: none;
  }

  .extracontentwrapper {
    margin-top: 124px;
    padding-right: 222px;
  }

  .custombutton {
    margin-top: 20px;
  }

  .contentwrapper {
    padding: 169px 20px;
  }

  .letusdoh3 {
    font-size: 55px;
    line-height: 63px;
  }

  .grid-2 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .heading-4 {
    font-size: 50px;
    line-height: 40px;
  }

  .grid-3, .avoidgrid, .grid-4 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .gallerypstyle {
    font-size: 30px;
    line-height: 50px;
  }

  .dropdown-toggle:hover {
    background-color: var(--indian-red);
    color: var(--light-color);
  }

  .text-block:hover, .icon {
    color: var(--light-color);
  }

  .menu-button, .menu-button.w--open {
    background-color: #0000;
  }

  .heading-5 {
    font-size: 50px;
    line-height: 50px;
  }

  .youtube-2 {
    background-image: none;
    background-size: cover;
    padding-left: 358px;
    padding-right: 358px;
  }

  .grid-17 {
    flex-flow: column;
    display: flex;
  }

  .div-block-8 {
    text-align: center;
  }

  .text-block-5 {
    font-size: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 50px;
    line-height: 54px;
  }

  .style-guide-color-wrap {
    height: auto;
  }

  .button.herobutton {
    margin-bottom: 40px;
  }

  .button.herobutton.servicebutton {
    margin-top: 40px;
  }

  .herosection.about.interiorhero.hardwood, .herosection.about.interiorhero.vinyl {
    height: auto;
  }

  .container-1200.formsection {
    margin-top: 140px;
  }

  .hero-content {
    margin-top: 61px;
    padding-right: 19px;
  }

  .hero-content.abouthero {
    margin-top: 60px;
    padding-right: 30px;
  }

  .hero-textblock2 {
    font-size: 25px;
    line-height: 40px;
  }

  .mysection.bottompage {
    height: auto;
  }

  .homepageh2 {
    width: auto;
    margin-right: 0;
    font-size: 36px;
    line-height: 42px;
    overflow: visible;
  }

  .text-span-3 {
    font-size: 36px;
  }

  .services_h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .services_h2.solutionsh2 {
    padding-left: 58px;
    font-size: 50px;
    line-height: 52px;
  }

  .greyroundbackground {
    width: auto;
    height: auto;
  }

  .h2style {
    font-size: 50px;
    line-height: 60px;
  }

  .herocustomerswrapper {
    padding-left: 57px;
    padding-right: 57px;
  }

  .extracontentwrapper {
    margin-top: 73px;
    padding-right: 70px;
  }

  .contentwrapper {
    padding: 102px 8px 100px;
  }

  .letusdoh3 {
    font-size: 45px;
    line-height: 50px;
  }

  .footergrid {
    flex-direction: column;
    display: flex;
  }

  .footerfirstcolumn {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .socialmediawrapper.morespace {
    margin-top: 63px;
  }

  .footertextblock, .numberonfooter {
    color: var(--white-2);
    text-decoration: none;
  }

  .footermain {
    align-items: center;
    margin-top: 20px;
  }

  .heading-2 {
    font-size: 40px;
    line-height: 48px;
  }

  .heading-4 {
    line-height: 50px;
  }

  .longbutton {
    padding-left: 165px;
    padding-right: 165px;
  }

  .reviewpicturewrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .longreviewstyle {
    font-size: 37px;
    line-height: 37px;
  }

  .yellowpstyle {
    font-size: 35px;
    line-height: 120%;
  }

  .gallerygrid {
    flex-direction: column;
    display: flex;
  }

  .youtube-2 {
    padding-left: 252px;
    padding-right: 252px;
  }

  .dennisguerrerowebdesign {
    font-size: 16px;
    line-height: 20px;
  }

  .locationstex, .locationstex.npspace {
    font-size: 15px;
    line-height: 23px;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .button {
    margin-top: 20px;
  }

  .button.inverse-button {
    margin-right: 20px;
  }

  .button.herobutton {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 19px;
    padding-right: 19px;
    font-size: 16px;
    line-height: 20px;
  }

  .button.herobutton.servicebutton {
    margin-top: 0;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 20px;
    line-height: 20px;
  }

  .style-guide-grid-item-wrap {
    grid-template-columns: 1fr;
  }

  .herosection {
    height: auto;
  }

  .herosection.about.reviewshero.galleryhero {
    background-position: 0 0, 100% 0;
  }

  .container-1200.formsection {
    margin-top: 100px;
  }

  .nav-menu {
    padding-left: 0;
  }

  .hero-content {
    margin-top: 40px;
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content.abouthero {
    margin-top: 60px;
    padding-right: 14px;
  }

  .hero-textblock {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 31px;
  }

  .hero-textblock2 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .homepageh2 {
    font-size: 30px;
    line-height: 33px;
  }

  .services_wrapper {
    padding: 5px;
  }

  .services_h2 {
    font-size: 44px;
    line-height: 45px;
  }

  .services_h2.solutionsh2 {
    text-align: center;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 40px;
    line-height: 48px;
  }

  .text_wrapper {
    padding: 10px;
  }

  .textblockpro {
    font-size: 22px;
    line-height: 30px;
  }

  .paragraphservice {
    font-size: 13px;
    line-height: 20px;
  }

  .h2style {
    font-size: 30px;
    line-height: 32px;
  }

  .herocustomerswrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .reviewbox {
    width: auto;
    height: auto;
  }

  .div-block-2 {
    top: 86%;
    right: 13%;
  }

  .textblockreviewsstyle, .reviewparagraph {
    font-size: 15px;
    line-height: 20px;
  }

  .solutionsboxwrapper {
    outline-offset: 0px;
    outline: 3px #fff;
    width: auto;
  }

  .imagewrapper {
    width: auto;
    height: auto;
    padding: 10px;
  }

  .solutionofferswrappers {
    padding-left: 27px;
    padding-right: 27px;
  }

  .solutionsstyletext {
    font-size: 18px;
  }

  .solutionspstyle {
    font-size: 15px;
  }

  .whiteblock {
    outline-color: var(--white);
    outline-offset: 0px;
    outline-width: 3px;
    outline-style: none;
    width: auto;
    height: auto;
  }

  .extracontentwrapper {
    padding-right: 18px;
  }

  .extrah2 {
    font-size: 30px;
    line-height: 40px;
  }

  .custombutton {
    padding-left: 36px;
    padding-right: 36px;
  }

  .paragraph-2 {
    font-size: 15px;
    line-height: 20px;
  }

  .contentwrapper {
    padding: 54px 33px;
  }

  .contentwrapper.aboutbottomwrapper {
    padding-top: 57px;
    padding-bottom: 57px;
  }

  .letusdoh3 {
    font-size: 25px;
    line-height: 30px;
  }

  .footertextblock {
    color: var(--white-2);
  }

  .numberonfooter {
    color: var(--white-2);
    text-decoration: none;
  }

  .heading-2 {
    font-size: 24px;
    line-height: 28px;
  }

  .blockwrapper {
    outline-offset: 0px;
    border: 1px solid #324e7e;
    outline: 2px #324e7e;
    width: 270px;
    height: 250px;
  }

  .aboutmewrapper {
    overflow: visible;
  }

  .heading-3 {
    font-size: 40px;
    line-height: 40px;
  }

  .paragraph-3 {
    font-size: 14px;
    line-height: 20px;
  }

  .heading-4 {
    font-size: 30px;
    line-height: 30px;
  }

  .textsuper {
    font-size: 26px;
    line-height: 30px;
  }

  .longbutton {
    padding-left: 38px;
    padding-right: 38px;
    font-size: 20px;
    line-height: 30px;
  }

  .hiringbox {
    width: auto;
  }

  .hiringtextblock {
    font-size: 29px;
    line-height: 45px;
  }

  .grid-4 {
    display: block;
  }

  .beforeafterwrapper {
    width: auto;
    height: auto;
    padding: 0;
    display: none;
  }

  .reviewh3 {
    font-size: 30px;
    line-height: 42px;
  }

  .reviewpicturewrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .reviewtextblock {
    font-size: 32px;
    line-height: 42px;
  }

  .longreviewstyle {
    font-size: 19px;
    line-height: 22px;
  }

  .yellowpstyle {
    font-size: 31px;
    line-height: 110%;
  }

  .reviewstylefontp {
    font-size: 24px;
    line-height: 29px;
  }

  .names_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .linepic {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .seemorereviewsbutton {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contactheading {
    font-size: 30px;
    line-height: 40px;
  }

  .contactparagraph {
    font-size: 16px;
    line-height: 21px;
  }

  .grid-16 {
    flex-direction: column;
    display: flex;
  }

  .heading-5 {
    font-size: 28px;
    line-height: 38px;
  }

  .youtube-2 {
    padding-left: 145px;
    padding-right: 145px;
  }

  .hiddengrid {
    flex-direction: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    padding: 9px;
    display: flex;
  }

  .newhidegrid {
    flex-direction: column;
    display: flex;
  }

  .image-9, .image-10, .image-11, .image-12, .image-13, .image-14, .image-15, .image-16, .image-17, .image-18, .image-19, .image-20, .image-21, .image-22, .image-23, .image-24, .image-25, .image-26, .image-27, .image-28, .image-29, .image-30, .image-31, .image-32 {
    height: auto;
  }

  .dennisguerrerowebdesign {
    font-size: 16px;
    line-height: 20px;
  }

  .div-block-5 {
    text-align: center;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .grid-18 {
    flex-flow: column;
    display: flex;
  }
}

#w-node-cfe42187-6c3b-0efd-6784-d1f2a9fd8ed5-4990f6e3, #w-node-_0ef61ead-d596-fa2b-eb12-145dadc0bce4-4990f6e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fc888098-d5d9-f0d1-d28a-4fc3229b5d56-4990f6e3 {
  grid-area: span 4 / span 1 / span 4 / span 1;
}

#w-node-_14f1542e-7060-c71d-4579-971762a95522-4990f6e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aabf972a-a2d5-f102-c6dd-22497d78a2ec-4990f6e3 {
  grid-area: span 4 / span 1 / span 4 / span 1;
}

#w-node-_35d5cbe7-4300-e3d3-49d4-1c4ed9f6776d-4990f6e3, #w-node-aa967987-18b7-df19-0801-a7eff3314259-4990f6e3, #w-node-d23870c1-87b6-fadb-ef5d-60ab4c20a86f-4990f6e3, #w-node-_7bbaf092-9941-3cb5-268b-2fa87af1fe13-4990f6e3, #w-node-_88f5287a-e8bc-a22e-d4e1-9340ead1e397-4990f6e3, #w-node-_8ba2a192-ee84-902d-d2ef-1ab63a1317c3-4990f6e3, #w-node-_6fb90d56-6678-b97e-3ade-4555cf1f4fb7-4990f6e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b98144a1-85e3-8535-f814-497d1f6c7e3b-1f6c7e38, #w-node-b98144a1-85e3-8535-f814-497d1f6c7e54-1f6c7e38, #w-node-b98144a1-85e3-8535-f814-497d1f6c7e61-1f6c7e38 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b98144a1-85e3-8535-f814-497d1f6c7e6a-1f6c7e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-4990f6e9, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-4990f6e9, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-4990f6e9, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-4990f6e9, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-4990f6e9, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-4990f6e9, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-4990f6e9, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-4990f6e9, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-4990f6e9, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-4990f6e9, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-4990f6e9, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-4990f6e9, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-4990f6e9, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-4990f6e9, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-4990f6e9, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-4990f6e9, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-4990f6e9, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-4990f6e9, #w-node-_40d4d6df-e38b-f778-5115-ea8f93d0542e-4990f6e9, #w-node-c9d7c3ab-d31b-4fe2-e290-666f73a76a6a-4990f6e9, #w-node-_1cb2eaff-c085-9ab3-df4a-1725ee4f484b-4990f6e9, #w-node-_1229091c-99d0-b728-5727-37785a9996e2-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-4990f6e9, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-4990f6e9, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55db6e40-b97b-9254-09df-2929df1b67ad-4990f6e9, #w-node-_8a96fce1-c74f-35f2-c6f4-3587e7d0e79a-4990f6e9, #w-node-bfdc7d70-2863-8331-b4f9-ad395f381310-4990f6e9, #w-node-_8219438d-b20e-01aa-f124-d537d0821573-4990f6e9, #w-node-df52a5df-cf6e-cd43-ccd8-20633efad3fb-4990f6e9, #w-node-cd8a551e-24bb-f985-80c2-ed654c7036ec-4990f6e9, #w-node-c73ec5c5-9d1c-c71a-647d-93fd71def3a3-4990f6e9, #w-node-b28db8fa-48cc-0fc7-f454-c90e65fa4e38-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18765f94-c4e6-c755-ac1d-a3de06ce4dbc-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91cfe370-0245-0733-cc80-e0128461d2a5-4990f6e9, #w-node-_983a314a-baad-360b-c27c-560bd790abd0-4990f6e9, #w-node-dec986e8-2989-ac3d-9697-51959cdb817b-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_539debc5-c3bf-e500-5373-a3259d80206f-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aecd07ed-cd8b-1716-e906-11a45aa52757-4990f6e9, #w-node-_432c5549-5a58-4527-4926-71dbf8e6a1d1-4990f6e9, #w-node-_165d79eb-b2a5-28c4-eb36-16dde57c961e-4990f6e9, #w-node-c962fc9a-3fcf-08e3-bdf2-4ecd4a9701dd-4990f6e9, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554aa-4990f6e9, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554ab-4990f6e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bca97c44-ed2a-c4d2-234a-6c62ee4dc6b5-4990f6e9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65cb131a-038a-ef25-ea34-fb9ed9c178b0-4990f6e9, #w-node-_50c4eecd-635c-c0cb-6b83-c35774246b79-4990f6e9, #w-node-_52927ecf-a802-ab11-7e8a-a5c734059023-4990f6ea, #w-node-a6212b96-f174-0b3e-12aa-9097ccd2f1f9-4990f6ea, #w-node-_8bbbc8c3-9be4-7d5f-2b9a-71dde4666336-4990f6ea, #w-node-_4072ef2e-a8ac-4e38-7f0a-1b10a16a1b83-4990f6ea, #w-node-bef88b39-cf13-cbf9-c520-80b54cd8bd41-4990f6ea, #w-node-fb80d5a0-5421-aad9-6129-e35ebb0141cb-4990f6ea, #w-node-_835e86b2-129f-fd76-9697-e940cd241f21-4990f6ea, #w-node-_835e86b2-129f-fd76-9697-e940cd241f23-4990f6ea, #w-node-_52927ecf-a802-ab11-7e8a-a5c734059023-4990f6eb, #w-node-a6212b96-f174-0b3e-12aa-9097ccd2f1f9-4990f6eb, #w-node-_8bbbc8c3-9be4-7d5f-2b9a-71dde4666336-4990f6eb, #w-node-cfca425b-2578-c601-72d8-94ee1b02b71c-4990f6eb, #w-node-b79a8a47-469e-4221-9c92-690c3f1102f6-4990f6eb, #w-node-_8ff1fb9c-72d4-89d7-61f1-f4d4d8c5aa8d-4990f6eb, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3a9-4990f6eb, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3ab-4990f6eb, #w-node-_81e429b5-9be2-5ba6-6371-aae32216f8af-4990f6eb, #w-node-c19950a2-7f7e-f5af-d9e5-492de3cb1c0b-4990f6eb, #w-node-_53869a3a-9489-cb3f-c754-4aa6e0c2b629-4990f6eb, #w-node-c9de4d07-58af-ed1c-bbb8-64b7059d88af-4990f6f1, #w-node-c9de4d07-58af-ed1c-bbb8-64b7059d88b3-4990f6f1, #w-node-bac07d1a-77cb-e215-eeeb-3cf53323d08a-4990f6f1, #w-node-_52927ecf-a802-ab11-7e8a-a5c734059023-3b3dbb12, #w-node-a6212b96-f174-0b3e-12aa-9097ccd2f1f9-3b3dbb12, #w-node-_8bbbc8c3-9be4-7d5f-2b9a-71dde4666336-3b3dbb12, #w-node-cfca425b-2578-c601-72d8-94ee1b02b71c-3b3dbb12, #w-node-b79a8a47-469e-4221-9c92-690c3f1102f6-3b3dbb12, #w-node-_8ff1fb9c-72d4-89d7-61f1-f4d4d8c5aa8d-3b3dbb12, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3a9-3b3dbb12, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3ab-3b3dbb12, #w-node-_81e429b5-9be2-5ba6-6371-aae32216f8af-3b3dbb12, #w-node-c19950a2-7f7e-f5af-d9e5-492de3cb1c0b-3b3dbb12, #w-node-_53869a3a-9489-cb3f-c754-4aa6e0c2b629-3b3dbb12, #w-node-_52927ecf-a802-ab11-7e8a-a5c734059023-16a48823, #w-node-a6212b96-f174-0b3e-12aa-9097ccd2f1f9-16a48823, #w-node-_8bbbc8c3-9be4-7d5f-2b9a-71dde4666336-16a48823, #w-node-cfca425b-2578-c601-72d8-94ee1b02b71c-16a48823, #w-node-b79a8a47-469e-4221-9c92-690c3f1102f6-16a48823, #w-node-_8ff1fb9c-72d4-89d7-61f1-f4d4d8c5aa8d-16a48823, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3a9-16a48823, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3ab-16a48823, #w-node-_81e429b5-9be2-5ba6-6371-aae32216f8af-16a48823, #w-node-c19950a2-7f7e-f5af-d9e5-492de3cb1c0b-16a48823, #w-node-_53869a3a-9489-cb3f-c754-4aa6e0c2b629-16a48823, #w-node-_52927ecf-a802-ab11-7e8a-a5c734059023-999eb965, #w-node-a6212b96-f174-0b3e-12aa-9097ccd2f1f9-999eb965, #w-node-_8bbbc8c3-9be4-7d5f-2b9a-71dde4666336-999eb965, #w-node-cfca425b-2578-c601-72d8-94ee1b02b71c-999eb965, #w-node-b79a8a47-469e-4221-9c92-690c3f1102f6-999eb965, #w-node-_8ff1fb9c-72d4-89d7-61f1-f4d4d8c5aa8d-999eb965, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3a9-999eb965, #w-node-_2f10eee3-d878-008c-7343-38c8d713a3ab-999eb965, #w-node-_81e429b5-9be2-5ba6-6371-aae32216f8af-999eb965, #w-node-c19950a2-7f7e-f5af-d9e5-492de3cb1c0b-999eb965, #w-node-_53869a3a-9489-cb3f-c754-4aa6e0c2b629-999eb965 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


