html {
  font-size: 62.5%; }
  html *::after,
  html *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box; }

body {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
  background-color: #f7f7f7; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 2.5rem 4rem;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  font-size: 1.8rem; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  transform: translateY(-1px);
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: white !important;
  color: black !important;
  font-size: 2.5rem !important;
  font-weight: 500 !important; }
  .btn--white::after {
    background-color: white !important; }

.btn--black {
  background-color: black !important;
  color: white !important;
  font-size: 3rem !important;
  letter-spacing: 3px;
  font-weight: 700 !important;
  width: 100%; }
  .btn--black::after {
    background-color: black !important; }

.btn--blue {
  background-color: #1f5ea8;
  color: white;
  font-weight: 700; }
  .btn--blue::after {
    background-color: #1f5ea8; }
  .btn--blue:hover {
    color: white; }

.btn--blue-mobile {
  background-color: #c1322c;
  color: white;
  font-weight: 700;
  padding: 2rem 2rem;
  width: 100%;
  bottom: 0; }
  .btn--blue-mobile::after {
    background-color: #c1322c; }
  .btn--blue-mobile:hover {
    color: white; }

.btn--red {
  background-color: #c1322c;
  color: white;
  font-weight: 700; }
  .btn--red::after {
    background-color: #c1322c; }
  .btn--red:hover {
    color: white; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: black;
  position: relative; }

.uwrg-logo {
  width: 200px;
  position: absolute;
  top: 0%; }
  @media all and (max-width: 768px) {
    .uwrg-logo {
      left: 0; } }

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 86%; }

.nav-links li {
  list-style: none;
  position: relative;
  transition: all .6s; }
  .nav-links li:hover .nav-dropdown {
    display: block;
    width: 400%;
    transition: all .6s; }
    @media all and (max-width: 768px) {
      .nav-links li:hover .nav-dropdown {
        display: none; } }

.nav-links a {
  color: #f7f7f7;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 2rem;
  transition: all 0.5s; }
  .nav-links a:hover {
    color: #c1322c; }

.nav-dropdown {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  position: absolute;
  width: 100%;
  left: -25%;
  animation: navDropdownFade .8s ease-in-out;
  transition: all .6s;
  z-index: 100; }

.nav-dropdown li {
  margin-bottom: 2rem; }
  .nav-dropdown li:first-of-type {
    margin-top: 1rem; }
  @media all and (max-width: 768px) {
    .nav-dropdown li {
      display: none; } }

.burger {
  display: none;
  cursor: pointer; }

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease; }

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden; }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 10000; }
  .nav-links li {
    opacity: 0; }
  .burger {
    display: block; } }

.nav-active {
  transform: translateX(0%); }

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }

@keyframes navDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-50px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px); }

.toggle .line2 {
  opacity: 0; }

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px); }

.hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 5%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.45) 78%), url(../img/hero.jpg);
  background-position: center;
  background-size: cover; }

.hero-2 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 5%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.45) 78%), url(../img/customer.png);
  background-position: center;
  background-size: cover; }

.heading-text {
  color: white;
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 1px 0 2px #141414; }

.heading-text-2 {
  color: white;
  font-size: 8.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 1px 0 2px #141414; }

.water {
  text-decoration: underline #1f5ea8;
  transition: all .5s; }

.fire {
  text-decoration: underline #c1322c; }

.mold {
  text-decoration: underline #29be29; }

.hero-text-spacing {
  padding-top: 6rem; }

.hero-badges {
  padding-top: 10rem; }

.hero-bottom-padding {
  padding-bottom: 6rem; }

.top-section-spacing {
  padding-top: 4rem; }

.section-heading {
  font-size: 5rem;
  font-weight: 300; }

.section-heading-white {
  font-size: 5rem;
  font-weight: 600;
  color: white;
  transition: all 0.5s; }

.section-text {
  font-size: 2.5rem;
  font-weight: 300; }

.section-text-white {
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  transition: all 0.5s; }

.box-shadow {
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3); }

.water-parallax {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.6) 78%), url(../img/waterParallax.PNG);
  min-height: 55vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.6);
  transition: all 0.5s; }
  .water-parallax:hover {
    transform: scale(1.05);
    box-shadow: 0 3rem 6.5rem rgba(0, 0, 0, 0.6);
    cursor: pointer; }

.water-ul {
  list-style: none; }

.water-ul li {
  font-size: 2.2rem;
  color: white;
  font-weight: 400; }

.water-ul li::before {
  content: "";
  background-image: url(../img/water-outline.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.water-ul-black {
  list-style: none; }

.water-ul-black li {
  font-size: 2.2rem;
  color: black;
  font-weight: 400; }

.water-ul-black li::before {
  content: "";
  background-image: url(../img/water-outline.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.fire-parallax {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.6) 78%), url(../img/fire.PNG);
  min-height: 55vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.6);
  transition: all 0.5s; }
  .fire-parallax:hover {
    transform: scale(1.05);
    box-shadow: 0 3rem 6.5rem rgba(0, 0, 0, 0.6);
    cursor: pointer; }

.fire-ul {
  list-style: none; }

.fire-ul li {
  font-size: 2.2rem;
  color: white;
  font-weight: 400; }

.fire-ul li::before {
  content: "";
  background-image: url(../img/fire-list.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.fire-ul-black {
  list-style: none; }

.fire-ul-black li {
  font-size: 2.2rem;
  color: black;
  font-weight: 400; }

.fire-ul-black li::before {
  content: "";
  background-image: url(../img/fire-list.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.mold-parallax {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.6) 78%), url(../img/moldDamage2.png);
  min-height: 55vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.6);
  transition: all 0.5s; }
  .mold-parallax:hover {
    transform: scale(1.05);
    box-shadow: 0 3rem 6.5rem rgba(0, 0, 0, 0.6);
    cursor: pointer; }

.mold-ul {
  list-style: none; }

.mold-ul li {
  font-size: 2.2rem;
  color: white;
  font-weight: 400; }

.mold-ul li::before {
  content: "";
  background-image: url(../img/mold-list.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.mold-ul-black {
  list-style: none; }

.mold-ul-black li {
  font-size: 2.2rem;
  color: black;
  font-weight: 400; }

.mold-ul-black li::before {
  content: "";
  background-image: url(../img/mold-list.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.cleaning-parallax {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 5%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.45) 78%), url(../img/cleaning.png);
  min-height: 55vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.4); }

.cleaning-ul {
  list-style: none; }

.cleaning-ul li {
  font-size: 2.2rem;
  color: white;
  font-weight: 400; }

.cleaning-ul li::before {
  content: "";
  background-image: url(../img/cleaning-list.png);
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem; }

.content-spacing {
  padding-top: 10rem; }

.form-margin {
  transition: all 0.4s; }
  @media all and (max-width: 1900px) {
    .form-margin {
      margin: 2rem 10rem; } }
  @media all and (max-width: 1200px) {
    .form-margin {
      margin: 2rem 2rem; } }

.form-label {
  font-size: 2.5rem;
  transition: all 0.4s;
  font-weight: 300; }

.form-input {
  width: 100%;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  height: 4.5rem;
  font-size: 2rem;
  transition: all 0.4s !important; }
  .form-input:focus {
    outline: none;
    border-bottom: 2px solid #c1322c; }
  @media all and (max-width: 1900px) {
    .form-input {
      height: 4rem; } }
  @media all and (max-width: 600px) {
    .form-input {
      border: solid 2px black; } }

.form-input-textarea {
  width: 100%;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-size: 2rem;
  transition: all 0.4s; }
  .form-input-textarea:focus {
    outline: none;
    border-bottom: 2px solid #c1322c; }
  @media all and (max-width: 1900px) {
    .form-input-textarea {
      height: 4rem; } }
  @media all and (max-width: 600px) {
    .form-input-textarea {
      border: solid 2px black; } }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 2rem 4rem !important;
  display: inline-block;
  transition: all 0.6s !important;
  position: relative;
  font-size: 2rem !important;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.6); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  transform: translateY(-1px);
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: #141414 !important;
  color: white !important;
  font-size: 2rem;
  font-weight: 700; }
  .btn--white::after {
    background-color: #141414 !important; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.footer {
  background-color: #141414; }

.uwrg-logo-footer {
  width: 100px; }

.footer-heading {
  font-size: 2rem;
  color: white;
  font-weight: 300; }

.footer-a-tag {
  text-decoration: none;
  font-size: 2.5rem;
  color: white;
  font-weight: 300;
  transition: all 0.5s; }
  .footer-a-tag:hover {
    color: #c1322c; }

.footer-ul {
  list-style: none; }

.social-media-badges {
  margin: 0 2rem; }

.social-media-badges img {
  transition: all 0.5s; }
  .social-media-badges img:hover {
    transform: scale(1.1); }
