body {
  max-width: 1920px;
  margin: auto;
}

* {
  font-family: "Inter";
  font-style: normal;
}

header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding-inline: 100px;
  padding-block: 30px;
  align-items: center;
}
header h1 {
  display: flex;
  flex-direction: column;
  font-size: 26px;
  font-weight: 800;
}
header h1 .job {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #1c6474;
  text-transform: uppercase;
  font-weight: 400;
}
header nav ul {
  display: flex;
  list-style-type: none;
  font-size: 14px;
  margin-bottom: 0;
}
header nav li {
  padding-inline: 10px;
}
header nav a {
  text-decoration: none;
  color: #000;
}
header nav img {
  width: 20px;
}

#about {
  display: flex;
  background-color: #f6d2b8;
  padding-inline: 100px;
  padding-block: 100px;
  position: relative;
}
#about .picture {
  flex: 1;
  margin: 0 20px;
  z-index: 0;
}
#about .picture img {
  width: 100%;
}
#about .picture.left::before {
  content: " ";
  background-color: #e5975f;
  width: 374px;
  height: 329px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#about #about-me {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 0;
}
#about #about-me__title {
  margin-top: 1em;
  font-size: 30px;
}
#about #about-me__introduction {
  font-family: "Spectral";
  font-weight: 800;
  font-style: italic;
}
#about #about-me p {
  font-size: 14px;
}

#gallery .title {
  text-align: center;
  padding-block: 2em;
}
#gallery .gallery .nav {
  justify-content: center;
}
#gallery .gallery .nav-pills .nav-link.active,
#gallery .gallery .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1c6474;
  border-radius: 0;
}
#gallery .gallery .nav-pills .nav-link {
  color: #000;
}
#gallery .gallery .item-column {
  position: relative;
  margin-bottom: 0 !important;
  padding: 0;
}
#gallery .gallery .item-column::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#gallery .gallery-item {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.5em;
}
#gallery .gallery .mg-prev,
#gallery .gallery .mg-next {
  width: 30px;
  height: 30px;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 24px;
}

#services {
  margin: auto;
  background-color: #a8d5d8;
  position: relative;
  z-index: 1;
}
#services .title {
  text-align: center;
  padding-block: 2em;
  position: relative;
  z-index: 2;
}
#services .container {
  justify-content: space-between;
  display: flex;
  padding: 2em 0;
}
#services .container::before {
  content: " ";
  background-color: #1c6474;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#services .container .service {
  background-color: white;
  max-width: 390px;
  width: 30%;
  height: 337px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

#contact {
  margin: auto;
  background-color: #d8d3a8;
  position: relative;
  padding-inline: 100px;
  padding-block: 100px;
}
#contact .container {
  display: flex;
}
#contact .container .picture.right::before {
  content: " ";
  background-color: #beb45a;
  width: 374px;
  height: 329px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#contact .container .form-container {
  flex: 2;
}
#contact .container .form-container form {
  display: flex;
  flex-direction: column;
  width: 70%;
  align-items: flex-start;
}
#contact .container .form-container form input {
  width: 100%;
  background-color: transparent;
  border: solid 1px;
  height: 2.5em;
  margin-bottom: 20px;
}
#contact .container .form-container form textarea {
  width: 100%;
  background-color: transparent;
  border: solid 1px;
  height: 5em;
  line-height: 2.5em;
  font-size: 1.2em;
  margin-bottom: 20px;
}
#contact .container input[type=submit] {
  background-color: #beb45a;
  padding: 0.5em 1em;
}

.quote {
  font-family: "Spectral";
  font-style: italic;
  width: 70%;
  margin: auto;
  padding-block: 1em;
  font-size: 36px;
}
.quote blockquote {
  font-family: Spectral;
  font-style: italic;
  font-weight: 300;
}
.quote cite {
  font-family: Spectral;
  font-weight: 800;
  font-size: 22px;
}

footer {
  background-color: white;
  padding-inline: 100px;
  padding-block: 30px;
  border-top: 2px solid #1c6474;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
footer .footer-branding {
  display: flex;
  flex-direction: column;
}
footer .footer-branding h2 {
  font-size: 26px;
  font-weight: 800;
}
footer .footer-branding p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #1c6474;
  text-transform: uppercase;
  font-weight: 400;
}
footer .footer-contact {
  font-size: 14px;
}
footer .footer-contact a {
  text-decoration: none;
  color: #000;
}
footer .footer-contact img {
  width: 20px;
}

@media all and (max-width: 1180px) {
  .picture {
    flex: 2;
  }
  #about,
  #contact .container {
    align-items: center;
  }
  .about-me__title {
    margin-top: 0;
    margin-bottom: 1em;
  }
  #about-me h2,
  #about-me p {
    width: 100%;
  }
}
@media all and (max-width: 1000px) {
  #about {
    flex-direction: column;
  }
  .picture {
    width: 50%;
  }
  .picture.left::before {
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: auto;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .about-me__title {
    text-align: center;
    margin-top: 1em;
  }
  #services {
    width: 100%;
  }
  #services .container {
    flex-direction: column;
  }
  #services .container::before {
    width: 30%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: auto;
    z-index: 0;
  }
  #services .container .service {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2em 0;
  }
  #services .container .service__description {
    margin-bottom: 1em;
  }
  #contact .container {
    flex-direction: column;
  }
  #contact .picture.right {
    margin-top: 1em;
  }
  #contact .picture.right::before {
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}
@media all and (max-width: 650px) {
  .top-header {
    flex-direction: column;
    padding-inline: 0;
  }
  .top-header .nav {
    width: 100%;
    padding: 0;
  }
  .top-header .nav ul {
    width: 100%;
    padding: 0;
  }
  .top-header .nav li {
    flex: 1;
    padding-block: 1em;
    text-align: center;
  }
  .picture {
    width: 80%;
  }
  .picture.left::before, .picture.right::before {
    height: 150px;
  }
  #services .container {
    align-items: center;
  }
  .service {
    max-width: 90%;
  }
  #about,
  #contact {
    padding-inline: 2em;
    padding-block: 2em;
  }
  form {
    width: 100%;
  }
}

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