  .homepage.header {
  padding: 10rem;
  padding-top: 12.125rem;
  padding-bottom: 6.8125rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.homepage.header.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.homepage.header .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: max-content;
  max-width: 26rem;
}
@media only screen and (max-width: 768px) {
  .homepage.header .content {
    max-width: fit-content;
    width: auto;
  }
  .homepage.header {
    padding: 5rem;
    padding-top: 12.125rem;
    padding-bottom: 6.8125rem;
  }
}
.homepage.header .content .home-title {
  font-size: 3.25rem;
  color: white;
  margin: 0;
  text-wrap: balance;
  font-weight: bold;
}
.homepage.header .content .cta-links {
  display: flex;
  flex-direction: column;
  width: max-content;
}
.homepage.header .content .cta-links .cta-link {
  font-size: 1.15rem;
  color: #000;
  background: #e0ba71;
  padding: 1rem 2rem;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid white;
  transition: 0.25s all;
}
.homepage.header .content .cta-links .cta-link:last-child {
  border-bottom: none;
}
.homepage.header .content .cta-links .cta-link:hover {
  background: #9e8b6a;
  transition: 0.25s all;
}
.homepage.header .content .cta-links .cta-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 1.25rem;
  color: #000;
}
@media only screen and (max-width: 1250px) {
  .homepage.header.bg-image {
    background-position-x: 40%;
  }
}

@media only screen and (max-width: 768px) {
  .homepage.header .content {
    max-width: fit-content;
    width: auto;
  }
  .homepage.header {
    padding: 5rem;
    padding-top: 12.125rem;
    padding-bottom: 6.8125rem;
  }
}

@media only screen and (max-width: 600px) {
  .homepage.header {
    padding: 6rem 2rem;
  }
  .homepage.header .content {
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
  }
  .homepage.header .content .home-title {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .homepage.header {
    padding: 6rem 1rem;
  }
  .homepage.header .content .home-title {
    font-size: 2.5rem;
  }
}

.quicklinks .cta-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1px;
}
.quicklinks .cta-links .cta-link {
  font-size: 1.15rem;
  color: #fff;
  background: #4e0715;
  padding: 1rem 2rem;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  /* border-bottom: 1px solid white; */
  transition: 0.25s all;
}
.quicklinks .cta-links .cta-link:last-child {
  border-bottom: none;
}
.quicklinks .cta-links .cta-link:hover {
  background: #9e8b6a;
  transition: 0.25s all;
}
.quicklinks .cta-links .cta-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 1.25rem;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .quicklinks .cta-links {
    grid-template-columns: 1fr;
  }
}

