html {
  scroll-behavior: smooth;
}

body {
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  color: #131504;
  margin: 0;
}

P {
  font-style: normal;
  font-family: Open Sans, sans-serif;
  line-height: 125%;
  margin: 0;
}

h1,
h2 {
  margin: 0;
}

header {
  display: flex;
  justify-content: center;
  background: linear-gradient(0deg, rgba(15, 66, 41, 0.7) 0%, rgba(15, 66, 41, 0.7) 100%), url("./images/header-image.png"), lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
  background-position: center;
}
header > div {
  display: flex;
  padding: 5rem 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
}
@media only screen and (min-width: 960px) {
  header > div {
    padding: 5rem;
    max-width: 43.75rem;
  }
}
header img {
  height: 9.75rem;
}
header > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
header > div > div p:nth-child(1) {
  color: var(--neutral-white, #FFF);
  text-align: center;
  /* Desktop/Overline Small */
  font-weight: 600;
  text-transform: uppercase;
}
header > div > div p:nth-child(2) {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
}
header > div > div p:nth-child(2) span {
  color: #BED626;
}
header div > p {
  color: white;
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

#contact-section {
  display: flex;
  justify-content: center;
}

#contact {
  padding: 40px 24px;
  max-width: 43.75rem;
}
#contact h2 {
  margin-bottom: 24px;
}

#contact > form {
  margin-right: 1.2rem;
}
#contact > form label {
  font-size: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
}
#contact > form input,
#contact > form textarea {
  width: 100%;
  border: 1px solid #BAB8C1;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
}
#contact > form input {
  height: 2.75rem;
}
#contact > form textarea {
  height: 6.25rem;
  line-height: 2rem;
}
#contact > form button {
  background: #BED626;
  border-radius: 6px;
  border-style: hidden;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  cursor: pointer;
}
#contact > form button:hover {
  background: #728017;
}
#contact > form p {
  margin-bottom: 1rem;
}

#services {
  background: #ECF6E9;
  padding: 2.5rem 1.5rem;
}
#services h2 {
  color: #4C560F;
}
#services P {
  text-align: center;
  font-family: Open Sans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
#services > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#services #icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 540px) {
  #services #icons {
    width: 490px;
  }
}
@media only screen and (min-width: 960px) {
  #services #icons {
    width: 100%;
  }
}
#services #icons > div {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
#services #icons > div img {
  width: 100px;
}

#photo-gallery {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
#photo-gallery img {
  width: 50%;
}
@media only screen and (min-width: 960px) {
  #photo-gallery img {
    width: 25%;
  }
}

#about > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
#about > div img {
  border-radius: 1rem;
  height: 550px;
  object-fit: cover;
  object-position: left center;
}
@media only screen and (min-width: 960px) {
  #about > div {
    flex-direction: row;
    gap: 5rem;
    padding: 5rem;
  }
  #about > div div {
    justify-content: center;
    flex-direction: column;
    display: flex;
  }
  #about > div > * {
    width: 50%;
  }
}
#about span {
  color: #728017;
}
#about a {
  background: #BED626;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  min-height: 48px;
  text-decoration: none;
  color: #211200;
}
#about a label {
  font-weight: 700;
  cursor: pointer;
}

footer {
  background-color: #BED626;
}
footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
}
footer div p {
  border-top: 2px solid #4C560F;
  text-align: center;
  width: 100%;
  padding-top: 2rem;
}