main {
  display: flex;
  flex-direction: column;
}

/* ========================
  top section
  ======================= */

.title-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 700px;
}

.title-pic img {
  width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  top: 39%;
  left: 45%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: var(--primary-color);
}

.divider {
  width: 150px;
  border-top: 5px solid var(--secondary-color);
  margin-top: -10px;
  margin-bottom: 10px;
}

.title span {
  color: var(--off-white);
}

/* wave divider (animated)
  ======================= */

.editorial {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
  margin-top: -60px;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 20s linear infinite;
  &:nth-child(1) {
    animation-delay: -4s;
    fill: var(--primary-color-light);
  }
}
.parallax2 > use {
  animation: move-forever2 18s linear infinite;
  &:nth-child(1) {
    animation-delay: -4s;
    fill: var(--secondary-color);
  }
}
.parallax3 > use {
  animation: move-forever3 16s linear infinite;
  &:nth-child(1) {
    animation-delay: -4s;
    fill: var(--primary-color);
  }
}
.parallax4 > use {
  animation: move-forever4 14s linear infinite;
  &:nth-child(1) {
    animation-delay: -4s;
    fill: var(--off-white);
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* ========================
  content column
  ======================= */

.content-column {
  justify-self: center;
  align-self: center;
  width: 65%;
}

.content-column h2 {
  color: var(--primary-color);
}

/* ========================
  main icons
  ======================= */

.main-icons {
  display: flex;
  justify-self: center;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 50px;
  color: var(--primary-color);
  font-size: var(--main-icon-font-size);
}

.main-icons-container {
  width: 80%;
}

.icon-grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.icon-grid-item h3 {
  font-size: var(--main-icon-text-font-size);
  padding-top: 5px;
}

/* ========================
  services section
  ======================= */

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.services h2 {
  margin-top: 20px;
}

.leaf-divider {
  margin: 0 0 30px 0;
}

.leaf-divider i {
  color: var(--primary-color-light);
}

/* plant pics with titles
  ======================= */

.pic-text-left {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  justify-content: flex-start;
  align-items: center;
  margin-top: -50px;
  gap: 20px;
}

.pic-text-right {
  display: flex;
  flex-direction: row;
  align-self: flex-end;
  justify-content: flex-end;
  align-items: center;
  margin-top: -50px;
  gap: 20px;
}

.pic-text-left p {
  font-size: var(--pic-title-size);
  font-weight: var(--pic-title-weight);
  margin-top: 30px;
  margin-left: 30px;
}

.pic-text-right p {
  font-size: var(--pic-title-size);
  font-weight: var(--pic-title-weight);
  margin-top: 30px;
  margin-right: 70px;
}

.pic-shadow-left {
  margin: 60px -210px 0 0;
  width: 240px;
  height: 240px;
  background-color: var(--light-grey);
}

.pic-shadow-right {
  margin: 60px -300px 0 0;
  width: 240px;
  height: 240px;
  background-color: var(--light-grey);
  border-radius: 55% 45% 65% 35% / 43% 59% 41% 57%;
}

.pic-horizontal-left,
.pic-horizontal-right,
.pic-vertical-left,
.pic-vertical-right {
  display: flex;
  justify-content: left;
  align-items: center;
  overflow: hidden;
  width: 230px;
  height: 230px;
}

.pic-horizontal-left img,
.pic-horizontal-right img {
  height: 100%;
}

.pic-vertical-left img,
.pic-vertical-right img {
  width: 100%;
}

.pic-1 {
  border-radius: 59% 41% 65% 35% / 59% 54% 46% 41%;
}

.pic-2 {
  border-radius: 55% 45% 65% 35% / 43% 59% 41% 57%;
}

.pic-3 {
  border-radius: 41% 59% 40% 60% / 61% 47% 53% 39%;
}

.pic-4 {
  border-radius: 49% 51% 66% 34% / 47% 61% 39% 53%;
}

.pic-5 {
  border-radius: 62% 38% 50% 50% / 39% 69% 31% 61%;
}

.pic-6 {
  border-radius: 55% 45% 65% 35% / 43% 59% 41% 57%;
}

/* ========================
  references section
  ======================= */

.references {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 70px 0 50px 0;
}

/* slider with references
  ======================= */

.quote-icon {
  color: var(--secondary-color);
}

.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1024px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}

.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.card-text {
  margin-top: -0.8em;
  font-style: italic;
}

.star-rate {
  margin: 0em 0 -1.2em 0;
  color: var(--accent-yellow);
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/* ========================
  FAQ section
  ======================= */

.faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.faq-accordion {
  width: 90%;
  margin: 20px 0;
}

.faq-item {
  border: none;
  background-color: var(--light-grey);
  border-radius: 10px;
  margin: 7px 0;
}

.faq-item-header {
  background-color: var(--light-grey);
  border-radius: 10px;
}

.faq-item-header[aria-expanded="true"] {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.faq-item-header:focus {
  outline: none;
  box-shadow: none;
}

/* ========================
  Contact section
  ======================= */

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 70px 0 70px 0;
}

.contact p {
  width: 90%;
  margin: 20px 0;
}

.contact-form {
  width: 90%;
}

.form-input {
  border-color: var(--secondary-color);
}

.form-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--secondary-color), 0.25);
}

.contact-form button {
  background-color: var(--secondary-color);
  border: none;
}

.contact-form button:hover {
  background-color: var(--secondary-color-dark);
  border: none;
}

.valid-feedback {
  display: none;
  color: var(--primary-color-light);
  font-size: var(--form-validation-size);
  margin: 10px 0;
}

.invalid-feedback {
  display: none;
  color: var(--secondary-color);
  font-size: var(--form-validation-size);
  margin: 10px 0;
}
