@charset "UTF-8";
/*1024px;*/
*,
*::before,
*::after {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", serif;
}

.container {
  padding: 4rem 2rem;
}

.container-heading {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.25px;
  grid-column: 1/-1;
}

.container-subheading {
  font-size: 1.5rem;
  text-align: center;
}

.row {
  padding: 1rem;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.25);
  z-index: 1;
}

.overlay > * {
  position: relative;
  z-index: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hide {
  opacity: 0 !important;
  visibility: hidden;
}

.mobile-menu-display {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: 250ms all ease;
}

.text-content .container {
  max-width: 1200px;
  margin: 0 auto;
}
.text-content .container h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  border-bottom: 4px solid hsl(39, 52%, 64%);
  border-left: 4px solid hsl(39, 52%, 64%);
  padding: 0 0 0.25rem 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(60, 5%, 19%);
}
.text-content .container p {
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  cursor: pointer;
  background-color: hsl(0, 0%, 96%);
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  color: hsl(0, 0%, 7%);
}

.btn-primary {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(39, 52%, 64%);
  color: hsl(60, 5%, 19%);
}
.btn-primary:hover {
  border: 2px solid hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(39, 52%, 64%);
  transition: 250ms all ease;
}

.btn-secondary {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(60, 5%, 19%);
  color: hsl(0, 0%, 100%);
}
.btn-secondary:hover {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(39, 52%, 64%);
  color: hsl(60, 5%, 19%);
  transition: 250ms all ease;
}

.btn-tertiary {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(39, 52%, 64%);
  color: hsl(60, 5%, 19%);
}
.btn-tertiary:hover {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(39, 52%, 64%);
  transition: 250ms all ease;
}

.btn-primary-arrow {
  border: 2px solid hsl(39, 52%, 64%);
  background-color: hsl(39, 52%, 64%);
  color: hsl(60, 5%, 19%);
}
.btn-primary-arrow::after {
  content: "\f061";
  margin-left: 0.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.btn-primary-arrow:hover::after {
  margin-left: 0.75rem;
  transition: 125ms margin-left ease;
}

nav {
  z-index: 9999;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsl(60, 5%, 19%);
  box-shadow: 0 2px 5px rgba(18, 18, 18, 0.25);
}
nav .nav-logo-contact {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  nav .nav-logo-contact {
    padding: 1rem 1.5rem;
  }
}
nav .nav-logo-contact .logo img {
  height: 75px;
}
nav .nav-logo-contact .logo img:hover {
  transform: scale(1.03);
  transform-origin: center;
  transition: 250ms transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav .nav-logo-contact .contact {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
@media (max-width: 991px) {
  nav .nav-logo-contact .contact {
    display: none;
  }
}
nav .nav-logo-contact .contact .number {
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 1px;
  color: #fff;
}
nav .nav-logo-contact .contact .number i {
  margin-right: 0.25rem;
  color: hsl(39, 52%, 64%);
}
nav .nav-logo-contact .contact .btn {
  font-size: 0.95rem;
}
nav .nav-logo-contact .mobile-group {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  nav .nav-logo-contact .mobile-group {
    display: flex;
  }
}
@media (max-width: 575px) {
  nav .nav-logo-contact .mobile-group {
    gap: 1rem;
  }
}
nav .nav-logo-contact .mobile-group .number {
  font-size: 1.3rem;
  font-weight: 400;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
nav .nav-logo-contact .mobile-group .number i {
  margin-right: 0.25rem;
  color: hsl(39, 52%, 64%);
}
@media (max-width: 575px) {
  nav .nav-logo-contact .mobile-group .number i {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  nav .nav-logo-contact .mobile-group .number span {
    display: none;
  }
}
nav .nav-logo-contact .mobile-group #mobile-toggle {
  display: none;
  border: 1px solid hsl(39, 52%, 64%);
  border-radius: 6px;
  padding: 0.65rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  nav .nav-logo-contact .mobile-group #mobile-toggle {
    display: inline-block;
  }
}
nav .nav-logo-contact .mobile-group #mobile-toggle.open .toggle-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
nav .nav-logo-contact .mobile-group #mobile-toggle.open .toggle-line:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}
nav .nav-logo-contact .mobile-group #mobile-toggle.open .toggle-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
nav .nav-logo-contact .mobile-group #mobile-toggle .toggle-line {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background-color: hsl(0, 0%, 100%);
  transition: 250ms all ease;
}
nav .nav-logo-contact .mobile-group #mobile-toggle .toggle-line + .toggle-line {
  margin-top: 7px;
}
nav .nav-logo-contact .mobile-group #mobile-toggle i {
  font-size: 1.75rem;
  color: hsl(0, 0%, 100%);
}
nav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 2rem;
  padding: 0.75rem 1rem;
  background-color: #2e2e29;
}
@media (max-width: 991px) {
  nav ul {
    display: unset;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 110.89px;
    left: 0;
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
}
@media (max-width: 991px) {
  nav ul li a {
    font-size: 1.25rem;
  }
}
nav ul li a:hover > i {
  transform: rotate(360deg);
  transform-origin: center;
  transition: 333ms transform ease;
}
nav ul li a i {
  margin-right: 0.5rem;
  color: hsl(39, 52%, 64%);
}
nav ul li .active {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
nav ul li .back {
  color: hsl(39, 52%, 64%) !important;
}

#hero-image {
  z-index: -9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/hero-background.webp");
  background-color: hsl(0, 0%, 7%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#page-banner {
  width: 100%;
  height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  background-color: hsl(0, 0%, 7%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 2.25rem;
  text-align: center;
  color: hsl(0, 0%, 100%);
}

.residential {
  background-image: url("../images/service-residential.webp");
}

.commercial {
  background-image: url("../images/service-commercial.webp");
}

.construction {
  background-image: url("../images/service-construction.webp");
}

.thank-you {
  background-image: url("../images/hero-background.webp");
}

#cta {
  height: calc(100vh - 153.77px); /* nav height */
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.01);
  color: hsl(0, 0%, 100%);
}
@media (max-width: 991px) {
  #cta {
    height: calc(100vh - 110.89px);
  }
}
#cta h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 3px rgba(18, 18, 18, 0.25);
}
#cta h2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 3px rgba(18, 18, 18, 0.25);
}
#cta .btn {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

#services {
  background-color: rgba(18, 18, 18, 0.75);
}
#services .container {
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #services .container {
    grid-template-columns: 1fr;
  }
}
#services .container .service {
  min-height: 300px;
  position: relative;
  border-radius: 1rem;
  padding: 4.5rem 1.5rem 1.5rem 1.5rem;
  background-color: hsl(0, 0%, 100%);
  overflow: hidden;
}
#services .container .service h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: hsl(0, 0%, 100%);
}
#services .container .service p {
  min-height: 90px;
  margin: 1rem 0;
  font-size: 20px;
  line-height: 1.5;
  color: hsl(0, 0%, 100%);
}
#services .container .residential {
  background-image: url("../images/service-residential.webp");
  background-color: hsl(0, 0%, 7%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#services .container .commercial {
  background-image: url("../images/service-commercial.webp");
  background-color: hsl(0, 0%, 7%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#services .container .construction {
  background-image: url("../images/service-construction.webp");
  background-color: hsl(0, 0%, 7%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#why-new-point {
  width: 100%;
  background-color: hsl(39, 52%, 64%);
  color: hsl(60, 5%, 19%);
}
#why-new-point .whys {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto;
}
#why-new-point .whys .why h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(60, 5%, 19%);
}
#why-new-point .whys .why h3::before {
  content: "✓";
  margin-right: 0.75rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: hsl(0, 0%, 100%);
}
#why-new-point .whys .why p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(60, 5%, 19%);
}
@media (max-width: 767px) {
  #why-new-point .whys {
    grid-template-columns: 1fr;
  }
}
#why-new-point .container-heading {
  margin-bottom: 2rem;
}

#stats {
  width: 100%;
  background-color: hsl(60, 5%, 19%);
  text-align: center;
}
#stats .container {
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
#stats .container .value {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}
#stats .container .category {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: hsl(39, 52%, 64%);
}

#showcase {
  width: 100%;
  background-color: #fff;
}
#showcase .container {
  max-width: 1340px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #showcase .container {
    grid-template-columns: 1fr;
  }
}
#showcase .container .image {
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  height: 275px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: hsl(0, 0%, 96%);
}
#showcase .container .image:hover .btn {
  opacity: 1;
  visibility: visible;
  transition: 500ms all ease;
}
#showcase .container .image:nth-of-type(1) {
  background-image: url("../images/showcase/showcase1.webp");
}
#showcase .container .image:nth-of-type(2) {
  background-image: url("../images/showcase/showcase4.webp");
}
#showcase .container .image:nth-of-type(3) {
  background-image: url("../images/showcase/showcase5.webp");
}
#showcase .container .image:nth-of-type(4) {
  background-image: url("../images/showcase/showcase2.webp");
}
#showcase .container .image:nth-of-type(5) {
  background-image: url("../images/showcase/showcase3.webp");
}
#showcase .container .image:nth-of-type(6) {
  background-image: url("../images/showcase/showcase6.webp");
}
#showcase .container .image .btn {
  opacity: 0;
  visibility: hidden;
}

#reviews {
  width: 100%;
  position: relative;
  background-color: hsl(39, 52%, 64%);
}
#reviews::before {
  content: "";
  width: 100%;
  height: 35px;
  position: absolute;
  top: -17.5px;
  left: 0;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
#reviews::after {
  content: "";
  width: 100%;
  height: 35px;
  position: absolute;
  bottom: -17.5px;
  left: 0;
  background-color: inherit;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
          clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
#reviews .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto;
  padding-top: 2rem;
}
#reviews .container .review {
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 2px 5px rgba(18, 18, 18, 0.25);
}
#reviews .container .review .stars i {
  font-size: 1.1rem;
  color: hsl(39, 52%, 64%);
}
#reviews .container .review .stars i + .empty {
  color: transparent;
  -webkit-text-stroke: 1.5px hsl(39, 52%, 64%);
}
#reviews .container .review .comment {
  margin: 1rem 0;
  font-size: 1.1rem;
  letter-spacing: 0.25px;
  line-height: 1.5;
}
#reviews .container .review .comment::before, #reviews .container .review .comment::after {
  content: '"';
}
#reviews .container .review .person {
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(0, 0%, 7%);
}
#reviews .container .review .person::before {
  content: "-";
  margin-right: 0.3rem;
}
@media (max-width: 991px) {
  #reviews .container {
    grid-template-columns: 1fr;
  }
}

#contact {
  width: 100%;
  background-image: url("../images/contact-grid-10.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: hsl(0, 0%, 100%);
}
#contact .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#contact .container .container-heading {
  margin-bottom: 1rem;
}
#contact .container .square {
  position: absolute;
  background-color: rgba(211, 177, 114, 0.08);
  border: 2px solid rgba(180, 151, 97, 0.16);
  z-index: 1;
  animation: float 8s infinite ease-in-out alternate;
}
@media (max-width: 767px) {
  #contact .container .square {
    display: none;
  }
}
#contact .container .square:nth-of-type(1) {
  width: 50px;
  height: 50px;
  top: 110px;
  left: 100px;
  --rotation: 60deg;
  transform: --rotation;
}
#contact .container .square:nth-of-type(2) {
  width: 100px;
  height: 100px;
  top: 400px;
  left: 60px;
  --rotation: 67deg;
  transform: rotate(67deg);
  animation-duration: 10s;
  animation-delay: 333ms;
}
#contact .container .square:nth-of-type(3) {
  width: 60px;
  height: 60px;
  top: 475px;
  right: 125px;
  --rotation: 77deg;
  transform: rotate(77deg);
  animation-duration: 8s;
  animation-delay: 667ms;
}
#contact .container .square:nth-of-type(4) {
  width: 100px;
  height: 100px;
  top: 100px;
  right: 65px;
  --rotation: 111deg;
  transform: rotate(111deg);
  animation-duration: 10s;
  animation-delay: 1000ms;
}
#contact .container form {
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 2rem;
  background-color: hsl(0, 0%, 100%);
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(18, 18, 18, 0.25);
}
@media (max-width: 767px) {
  #contact .container form .form-group {
    grid-column: 1/-1;
  }
}
#contact .container form .form-group + .full {
  grid-column: 1/-1;
}
#contact .container form .form-group input:not(input[type=submit]),
#contact .container form .form-group select,
#contact .container form .form-group textarea {
  width: 100%;
  border: 1px solid #cfcfcd;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  background-color: hsl(0, 0%, 96%);
  font-family: "Roboto", serif;
  font-size: 1rem;
  letter-spacing: 0.25px;
  color: hsl(60, 5%, 19%);
}
#contact .container form .form-group input:not(input[type=submit])::-moz-placeholder, #contact .container form .form-group select::-moz-placeholder, #contact .container form .form-group textarea::-moz-placeholder {
  color: #a2a9b4;
}
#contact .container form .form-group input:not(input[type=submit])::placeholder,
#contact .container form .form-group select::placeholder,
#contact .container form .form-group textarea::placeholder {
  color: #a2a9b4;
}
#contact .container form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("../images/plus-solid.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
#contact .container form .form-group textarea {
  height: 120px;
}
#contact .container form .form-group .disclaimer {
  font-size: 0.95rem;
}
#contact .container form .form-group .disclaimer a {
  color: hsl(60, 5%, 19%);
}
#contact .container form .btn {
  grid-column: 1/-1;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

#footer {
  width: 100%;
  background-color: hsl(60, 5%, 19%);
}
#footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  text-align: center;
}
#footer .container img {
  height: 80px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(82deg) brightness(105%) contrast(105%);
}
#footer .container .number {
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 1px;
  color: hsl(0, 0%, 100%);
}
#footer .container .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
#footer .container .socials i {
  font-size: 2rem;
  color: hsl(0, 0%, 100%);
}
#footer .container .socials i:hover {
  transition: all 0.3s ease;
  color: hsl(39, 52%, 64%);
}
#footer .container .socials .fa-instagram {
  font-size: 2.3rem !important;
}
#footer .container .copyright {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: hsl(39, 52%, 64%);
}

#scroll-to-top {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  z-index: 9999;
  position: fixed;
  right: 8px;
  bottom: 8px;
  border-radius: 0.5rem;
  background-color: hsl(60, 5%, 19%);
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  transition: 250ms all ease;
}
#scroll-to-top i {
  font-size: 1.5rem;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(var(--rotation));
  }
  25% {
    transform: translate(10px, -15px) rotate(calc(var(--rotation) + 5deg));
  }
  50% {
    transform: translate(-20px, 10px) rotate(calc(var(--rotation) - 5deg));
  }
  75% {
    transform: translate(15px, 20px) rotate(calc(var(--rotation) + 3deg));
  }
  100% {
    transform: translate(0, 0) rotate(var(--rotation));
  }
}/*# sourceMappingURL=styles.css.map */