* {
  padding: 0;
  margin: 0;
}

a {
  color: unset;
  text-decoration: none;
}

ul {
  list-style: none;
}
.location-tag {
  background-color: #4285f4;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}

.location-tag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #4285f4;
}

.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  white-space: nowrap;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header {
  color: #f4f4f4;
  min-height: 605px;
  box-shadow: 0px 0px #00000070;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  overflow: visible;
  border-color: inherit;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: scroll;
  background-clip: padding-box;
  position: relative;
}

.header.home-bg {
  background-image: url("https://images.unsplash.com/photo-1588515603140-81bd9f7d1db0?q=80&w=1738&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

.header.service-bg {
  background-image: url("https://images.unsplash.com/photo-1576613109753-27804de2cba8?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  min-height: 420px;
}

.header.contact-bg {
  background-image: url("https://images.unsplash.com/photo-1553864250-05b20249ee0c?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  min-height: 420px;
}

.nav {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.icon {
  width: 260px;
}

.nav-item ul {
  display: flex;
  list-style: none;
  font-size: 22px;
  gap: 20px;
}

.nav-item ul li {
  padding: 0 8px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-item ul li:hover {
  border-bottom: 1px solid #f4f4f4;
}

.nav-item ul li.active {
  border-bottom: 1px solid #f4f4f4;
}

.main-text-wrap {
  /* backdrop-filter: blur(2px); */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  flex-direction: column;
}

.main-text {
  width: max-content;
  max-width: 100vw;
  font-size: 80px;
  /* word-spacing: 100vw; */
  letter-spacing: 5px;
}

.header-btn,
.service-main .service-btn {
  padding: 8px 20px;
  font-size: 20px;
  border-radius: 8px;
  background: #e6a23c;
  color: #f4f4f4;
  cursor: pointer;
  margin-top: 20px;
}

.header-btn:hover {
  background: #ebb563;
}

.service-main .service-btn {
  width: max-content;
}
.service-main .service-btn:hover {
  background: #ebb563;
}

.header-btn:active {
  background: #cf9236;
}

.service {
  padding-top: 40px;
}
.service h1 {
  font-size: 40px;
  font-weight: 400;
  color: #34495e;
  text-align: center;
  margin-bottom: 10px;
}

.separator {
  width: 96px;
  height: 3px;
  background-color: #ffd936;
  margin: 0 auto 20px auto;
}

.service-list-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 20px;
}

.service-item {
  width: 0;
  flex-grow: 1;
}

.service-item img {
  width: 100%;
  height: 100%;
}

.service-item .img-wrap {
  aspect-ratio: 37/50;
}

.service-text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.about {
  background-color: #f6f8f5;
  gap: 30px;
  margin-top: 40px;
  padding: 40px 20px;
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  /* padding: 0 40px; */
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.about-content {
  width: 40%;
}

.about-img {
  aspect-ratio: 24/29;
  width: 40%;
}

.about-btn {
  color: #e6a23c;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #e6a23c;
  font-size: 20px;
  width: max-content;
  cursor: pointer;
  margin-top: 20px;
}

.about-btn:hover {
  color: #ebb563;
  border: 1px solid #ebb563;
}

.footer {
  background: #ecf0f1;
  padding: 20px 40px;
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: rgba(52, 73, 94, 0.8);
}

.footer-wrap div {
  width: 30%;
  min-width: max-content;
  /* flex-grow: 1; */
}

.footer-wrap ul li {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.footer-wrap ul li.actice {
  border-bottom: 1px solid black;
}

.footer-wrap .link li:hover {
  border-bottom: 1px solid black;
}

.service-main {
  margin-top: 100px;
  margin-bottom: 60px;
}

.service-main .service-item {
  height: 500px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 60px;
}

.service-main .service-item .left,
.service-main .service-item .right {
  width: 0;
  flex-grow: 1;
}

.service-main .service-item .img-wrap {
  width: 370px;
  max-width: calc(90vw - 40px);
  /* height: 500px; */
  aspect-ratio: 37/50;
  margin-left: auto;
}

.service-main .service-item .img-wrap img {
  width: 100%;
  height: 100%;
}

.service-main h1 {
  font-size: 36px;
  color: #34495e;
  margin-bottom: 20px;
}

.service-main ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgba(52, 73, 94, 0.8);
  /* text-indent: 30px; */
}

.service-main .price {
  font-size: 24px;
  /* text-indent: 30px; */
  color: #34495e;
  margin-top: 20px;
}

/* .service-main .service-btn {
  border: 1px solid black;
  border-radius: 8px;
  padding: 10px 20px;
  width: max-content;
} */

.contact-main {
  max-width: 1200px;
  margin: 40px auto 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.contact-main .right {
  /* width: 400px; */
  /* aspect-ratio: 3/2; */
  width: 0;
  flex-grow: 1;
  /* min-width: 400px; */
  height: 500px;
}

.contact-main .left {
  width: max-content;
  padding-right: 40px;
}

.contact-main .left h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #34495e;
}

.contact-main .left h3 {
  font-size: 24px;
  color: rgba(52, 73, 94, 0.9);
}

.contact-main .left p,
.contact-main .left pre {
  font-size: 18px;
  margin: 6px 0;
  color: rgba(52, 73, 94, 0.8);
}

@media (max-width: 768px) {
  .main-text {
    font-size: 48px !important;
  }
  .nav-item ul li {
    font-size: 14px;
  }
  .icon {
    width: 120px;
  }
  .about-content {
    width: 100%;
  }
  .about-wrap {
    flex-direction: column;
  }
  .about-img {
    width: 80%;
    aspect-ratio: unset;
  }

  .service-text {
    font-size: 14px;
  }
  .jersey-10-regular {
    font-size: 46px;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap div {
    width: max-content;
    margin-bottom: 10px;
    /* flex-grow: 1; */
  }
  .service-main .service-item {
    flex-direction: column;
    height: unset;
    gap: 20px;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .service-main .service-item:nth-of-type(2) .img-wrap {
    margin-left: unset;
  }
  .service-main .service-item .left,
  .service-main .service-item .right {
    width: 100%;
  }
  .service-main h1 {
    font-size: 28px;
  }

  .contact-main {
    margin-bottom: 20px;
    flex-direction: column;
  }

  .contact-main .right {
    width: 100%;
    height: 300px;
    flex-grow: unset;
  }
  .contact-main .left {
    text-align: center;
  }

  .contact-main .left h3 {
    font-size: 20px;
  }

  .contact-main .left p,
  .contact-main .left pre {
    font-size: 14px;
  }
}
