/* HERO SECTION */

.hero-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 0;
}

.hero-section .hero-content {
  width: 50%;
  height: 50rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  background-image: linear-gradient(90deg, rgb(244, 241, 241), white);
  padding: 3rem;
}

.hero-section .hero-content form {
  flex-direction: row;
  width: 100%;
  box-shadow: unset;
  background-color: unset;
  justify-content: flex-start;
  padding: 1rem 0;
  gap: 1.7rem;
}

.hero-section .hero-content form .input-group {
  width: 30rem;
}

.hero-section .hero-content form::after {
  all: unset;
}

.hero-section .hero-content form button {
  width: 10rem;
  height: 4rem;
  border-radius: var(--radius-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  gap: 0.7rem;
  padding: 0;
}

.hero-section .hero-content form button span {
  font-size: 1.6rem;
}

.hero-section .hero-img {
  width: 50%;
  height: 45rem;
}

.hero-section .hero-img img {
  object-fit: contain;
}

.hero-section .popular-locations {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-section .popular-locations a {
  background-color: var(--clr-accent);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-c100);
  color: white;
  transition: all 200ms;
}

.hero-section .popular-locations a:hover {
  background-color: var(--clr-accent-dark);
}

/* PROFESSIONAL SERVICES */
.professional-services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.professional-services .wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.professional-services .wrapper-header {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.professional-services .wrapper-header a {
  min-width: 12rem;
  height: 3.5rem;
  border-radius: var(--radius-c100);
  background-color: white;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 300ms ease-in-out;
  border: 0.2rem solid var(--clr-accent-light);
  font-weight: 600;
  font-size: 1.5rem;
}

.professional-services .wrapper-header a span {
  font-size: 1.4rem;
}

.professional-services .wrapper-header a:hover {
  background-color: var(--clr-accent);
  color: white;
}

/* MOVERS */
.movers {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.movers .movers-img {
  width: 45%;
  height: 45rem;
  border-radius: var(--radius-c100);
  /* background-color: var(--clr-accent); */
  overflow: hidden;
}

.movers .movers-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.movers .movers-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* LOCATIONS */
.main-locations {
  flex-direction: column;
  align-items: flex-start;
}

.main-locations .wrapper {
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.main-locations .wrapper-img {
  width: 55%;
  height: 40rem;
  border-radius: var(--radius-c100);
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-locations .locations {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.main-locations .location {
  min-width: 20rem;
  height: 5rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  background-color: var(--clr-primary);
  border-radius: var(--radius-400);
}

.main-locations .location:hover {
  background-color: var(--clr-primary-light);
}

.main-locations .location-img {
  width: 4rem;
  height: 100%;
}

.main-locations .content {
  color: white;
}

/* ABOUT SECTION */
.about-section {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-section .wrapper {
  gap: 2rem;
}

.about-section .wrapper-content {
  padding: 3rem;
}

.about-section .statement {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 1rem;
  border-radius: var(--radius-800);
}

.about-section .statement h4 {
  color: var(--clr-accent);
}

.about-section p {
  width: 100%;
  /* text-align: center; */
}

.about-section .objectives {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.about-section .objective {
  width: 30rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  gap: 2rem;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: var(--radius-800);
  transition: all 300ms ease-in-out;
}

.about-section .objective:hover {
  transform: translateY(-1rem);
}

.about-section .objective-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.about-section .objective-header span {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-half);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--clr-primary);
  background-color: var(--clr-primary-lightest);
}

.about-section .objective-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.about-section .objective-content p {
  width: 100%;
}

@media (max-width: 800px) {
  .hero-section {
    padding: 1rem;
    flex-direction: column;
    background-image: linear-gradient(90deg, rgb(244, 241, 241), white);
  }

  .hero-section .hero-content {
    width: 100%;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }

  .hero-section .hero-img {
    width: 100%;
    height: 30rem;
  }

  .hero-section .popular-locations {
    justify-content: center;
  }

  /* MOVERS */

  .movers {
    flex-direction: column-reverse;
    width: 100%;
  }

  .movers .movers-img {
    width: 100%;
  }

  .movers .movers-content {
    width: 100%;
    align-items: center;
  }

  .movers .movers-content .cta {
    align-self: flex-end;
  }

  /* LOCATIONS */
  .main-locations .wrapper-img {
    display: none;
  }

  .main-locations .locations {
    width: 100%;
  }

  .main-locations .location {
    min-width: 15rem;
  }

  /* ABOUT SECTION */

  .about-section p {
    width: 100%;
    text-align: left;
  }
  .about-section .objective {
    min-width: 80%;
  }
}

@media (max-width: 500px) {
  .hero-section .hero-content form {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section .hero-content form .input-group {
    width: 100%;
  }
}
