.hero {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(80, 106, 107, 0.8) 0%,
    rgba(162, 49, 79, 0.8) 100%
  );

  z-index: 1;
}
.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 550px;
  color: white;
}
.hero-img {
  position: relative;
  right: 90px;
  bottom: 20px;
  z-index: 4;
}

.photo {
  position: absolute;
  width: 180px;
  height: 240px;
  object-fit: cover;
  border: 7px solid white;
}
.photo-1 {
  top: -160px;
  left: 200px;
  transform: rotate(-8deg);
}
.photo-2 {
  top: -220px;
  left: 480px;
  transform: rotate(3deg);
}
.photo-3 {
  top: 80px;
  left: 490px;
  transform: rotate(-0.2deg);
}
.hero-photo-bg {
  position: absolute;
  z-index: -4;
  top: -150px;
  left: 150px;
  width: 650px;
}
.home-container {
  background: linear-gradient(180deg, #ffeffd 0%, #eefeff 50%, #eefeff 100%);
}

/* our-service-top */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.our-service {
  padding-top: 90px;
}

.our-service-top {
  position: relative;
  display: flex;
  align-items: end;

  justify-content: space-between;
}

.our-service-paint-brush-icon {
  position: absolute;
  right: -110px;
  top: -60px;

  z-index: 1;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.our-service-heading {
  width: 35%;
}

.our-service-info {
  display: flex;
  align-items: center;
  gap: 80px;
}

.our-service-dtl {
  font-size: 2rem;
  font-weight: bolder;
  color: white;
  padding: 7px 14px;
  border-radius: 18px;
  text-align: center;
  background-color: var(--primary-color);
}

.our-service-info span:nth-child(2) .our-service-dtl {
  background-color: #6c8b8d;
}

.our-service-txt {
  margin: 6px 0;
  color: #6c8b8d;
  font-size: 1rem;
  font-weight: 600;
}

.our-service-info span:nth-child(2) .our-service-txt {
  color: var(--primary-color);
}

/* our-work */
.our-work {
  padding-top: 90px;
  text-align: center;
  position: relative;
}

.our-work-paint-can-icon {
  position: absolute;
  left: -110px;
  top: 160px;

  z-index: 1;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 50px 0;
}

.long-dash {
  width: 63px;
  height: 0px;
  top: 1840px;
  left: 700px;
  opacity: 1;
  border-width: 4px;
  border-radius: 4px;

  border: 2px solid var(--primary-color);
}

.small-dash {
  width: 11px;
  height: 0px;
  top: 1840px;
  left: 771px;
  opacity: 1;
  border-width: 4px;
  border-radius: 4px;

  border: 2px solid #6c8b8d;
}

.our-work-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

/* inquiry */
.inquiry {
  padding-top: 90px;
}

.inquiry-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  height: 400px;
}

.inquiry-form {
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  border: none;
  background: var(--secondary-color);
  font-size: 16px;
  outline: none;

  box-sizing: border-box;
}

.contact-form textarea {
  height: 130px;
}

.contact-form .row {
  display: flex;
  gap: 10px;
}

.inquiry-img-wrapper {
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-img {
  width: 320px;
  height: 383px;
  object-fit: cover;
}

/* contact-info */
.contact-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 100px 0;
}

.painting-strokes-icon {
  position: absolute;
  right: -60px;
  top: -80px;

  z-index: 1;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.contact-info-wrapper {
  width: 100%;
  background-color: #6c8b8d;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  margin-top: 40px;
  padding: 60px;
  color: #fff;
}

.contact-info-homepage {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-mail,
.contact-phone {
  display: flex;
  flex-direction: column;
}

.contact-mail {
  text-align: right;
}

.contact-phone {
  text-align: left;
}

.or {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
  margin: 0 20px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .hero {
    padding: 0 80px;
  }
  .hero-content {
    max-width: 450px;
  }
  .hero-img {
    position: relative;
    margin-top: 40px;
    right: 0;
    bottom: 0;
  }
  .photo {
    width: 160px;
  }

  .photo-1 {
    top: -90px;
    left: 90px;
  }
  .photo-2 {
    top: -280px;
    left: 310px;
  }
  .photo-3 {
    top: 20px;
    left: 290px;
  }
  .hero-photo-bg {
    top: -150px;
    left: 50px;
    width: 550px;
  }
  .contact-info-wrapper {
    width: 80%;
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }

  .contact-info-homepage {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .contact-mail,
  .contact-phone {
    text-align: center;
  }

  .or {
    margin: 10px 0;
  }
}

@media (max-width: 992px) {
  .hero-content {
    max-width: 400px;
  }
  .hero-img {
    position: relative;
    margin-top: 40px;
    right: 0;
    bottom: 0;
  }
  .photo {
    width: 140px;
  }
  .photo-1 {
    top: -90px;
    left: 10px;
  }
  .photo-2 {
    top: -280px;
    left: 180px;
  }
  .photo-3 {
    top: 10px;
    left: 190px;
  }
  .hero-photo-bg {
    top: -110px;
    left: -20px;
    width: 380px;
  }

  .our-service-top {
    width: 100%;
    flex-direction: column;
  }

  .our-service-info {
    width: -webkit-fill-available;
    justify-content: space-between;
    padding-top: 10px;
    gap: 30px;
  }

  .our-service-heading {
    width: 100%;
  }

  .inquiry-wrapper {
    flex-direction: column;
    height: auto;
  }

  .inquiry-form {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
  .inquiry-img-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px 40px 20px;
    flex-direction: column;
    text-align: center;
  }
  .hero-container {
    display: inline;
    justify-items: center;
  }
  .hero-img {
    display: none;
  }

  .our-service-paint-brush-icon {
    display: none;
  }

  .our-work-paint-can-icon {
    display: none;
  }

  .painting-strokes-icon {
    display: none;
  }
  .contact-info-wrapper {
    flex-direction: column;
  }
  .contact-mail,
  .contact-phone {
    text-align: center;
  }
}
