@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #efefef;
}

p {
  font-size: 1.25rem;
}

.nav {
  width: 90vw;
  height: 10vh;
  border: 1px solid black;
  border-radius: 1rem;
  margin: auto;
  margin-top: 2rem;
  background-color: rgb(79, 79, 79);
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s;
}
.nav .nav-left {
  display: flex;
  justify-content: start;
}
.nav .nav-center {
  display: flex;
  justify-content: center;
}
.nav .nav-right {
  display: flex;
  justify-content: end;
}
.nav .logo {
  height: 9vh;
}
.nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
}
.nav a:hover {
  color: #ffd166;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7px);
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-center {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-center a {
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-center.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.wrap {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.wrap .background {
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15vh;
}
.hero .hero-text {
  padding: 2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.494);
  border-radius: 1rem;
}
.hero .hero-buttons {
  display: flex;
  margin-top: 2rem;
}
.hero .hero-buttons a {
  margin-right: 1rem;
  background-color: #cfced2;
}

/* CSS */
.button-54 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border: 3px solid;
  padding: 0.25em 0.5em;
  box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-54:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
}

@media (min-width: 768px) {
  .button-54 {
    padding: 0.25em 0.75em;
  }
}
.about-home {
  background-color: #f5f5f5;
}
.about-home h2 {
  margin: 0;
  padding-top: 2rem;
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.cards .card {
  width: 33.3333333333vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid black;
  border-radius: 1rem;
  margin: 1rem;
  padding: 1rem;
  overflow: hidden;
  background-color: rgba(236, 236, 223, 0.523);
}
.cards .card img {
  width: 100%;
}
.cards .card button {
  width: 50%;
}

/* REVIEWS */
.reviews {
  padding: 3rem 1rem;
  background: #f5f5f5;
}
.reviews h2 {
  text-align: center;
}
.reviews .review-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.reviews .review {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 250px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.reviews .review span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 1rem;
  background: #222;
  color: white;
}
.cta a {
  margin-top: 1rem;
  display: inline-block;
  color: white;
}
.cta a:hover {
  color: #ffd166;
}

.about-top {
  text-align: center;
  margin: 5rem;
}

.about {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.about .about-text {
  width: 45vw;
}
.about .about-img {
  width: 45vw;
}
.about img {
  width: 100%;
}

.service {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.service .about-text {
  width: 45vw;
}
.service .about-img {
  width: 45vw;
}
.service img {
  width: 100%;
}

/* contact */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
  }
  .cs-content {
    max-width: 32.625rem;
    text-align: left;
  }
  .cs-header {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    display: block;
  }
  .cs-link {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-decoration: none;
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 32px */
    margin: 0 0 clamp(1rem, 2.5vw, 2rem);
    display: block;
    color: black;
  }
  .cs-link:hover {
    text-decoration: underline;
  }
  .cs-link:last-of-type {
    margin-bottom: 0;
  }
  .cs-social {
    /* 32px - 80px */
    margin-top: clamp(1rem, 6vw, 3rem);
    display: inline-flex;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .cs-social-link {
    /* 32px - 52px */
    width: clamp(2rem, 4vw, 3.25rem);
    height: clamp(2rem, 4vw, 3.25rem);
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, background-color 0.3s;
  }
  .cs-social-link:hover {
    background-color: #ffd166;
    transform: translateY(-0.1875rem);
  }
  .cs-social-img {
    /* 14px - 24px */
    height: clamp(0.875rem, 2vw, 1.5rem);
    width: auto;
    display: block;
  }
  #cs-form-490 {
    width: 100%;
    max-width: 40.625rem;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 5.3vw, 2.5rem);
    /* 20px - 40px */
    padding: clamp(1.25rem, 4.5vw, 2.5rem);
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    border: 1px solid #dad9e3;
    border-radius: 1rem;
  }
  .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 20px */
    margin-bottom: clamp(1rem, 1em, 1.25rem);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .cs-label-message {
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4.5vw, 2.5rem);
  }
  .cs-input,
  textarea {
    font-size: 1rem;
    width: 100%;
    height: 4rem;
    margin-top: 0.25rem;
    padding-left: 1.25rem;
    /* set transparent border so on hover border doesn't make it glitch */
    border: 1px solid transparent;
    border-bottom: 1px solid #b4b2c7;
    /* prevents border & padding from affecting height */
    box-sizing: border-box;
    transition: border 0.3s;
  }
  .cs-input:hover,
  textarea:hover {
    border: 1px solid var(--primary);
  }
  .cs-input::placeholder,
  textarea::placeholder {
    color: #7d799c;
  }
  textarea {
    font-family: inherit;
    margin: 0;
    padding-top: 1.25rem;
    min-height: 7.5rem;
  }
  .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    color: white;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border: none;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.5rem;
    transition: width 0.3s;
  }
  .cs-button-solid:hover {
    cursor: pointer;
  }
  .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43rem) {
  #cs-contact-490 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
  }
  #cs-contact-490 .cs-content {
    width: 40%;
    /* pushes it to the right */
    order: 2;
    flex: none;
  }
  #cs-contact-490 #cs-form-490 {
    margin: 0;
  }
}
/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 2rem 1rem;
}
.footer .footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .footer-col {
  max-width: 250px;
}
.footer .footer-col h3 {
  margin-bottom: 1rem;
}
.footer .footer-col a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer .footer-col a:hover {
  color: #ffd166;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.footer .footer-bottom a {
  text-decoration: none;
  color: white;
}
.footer .footer-bottom a:hover {
  color: #ffd166;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  .nav .nav-center {
    margin: 1rem 0;
  }
  .hero {
    margin-top: 10vh;
  }
  .hero .hero-text {
    padding: 1.5rem;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .cards .card {
    width: 95vw;
    padding: 0;
    padding-bottom: 1rem;
  }
}

/*# sourceMappingURL=output.css.map */
