h1 {
  text-align: center;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 300;
  line-height: 78px;
  margin-bottom: 15px;
  margin-top: 0;
}

.highlight-red {
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: 78px;
  color: var(--light-teal);
}
.lora-highlight {
  font-family: Lora;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.03px;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--light-teal);
}

.content {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
.content p {
  text-align: center;
  padding: 0 15%;
  margin-bottom: 30px;
}
.cta-div {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 30px;
}
.cta {
  width: 250px;
  height: 50px;
  background-color: var(--gray);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4.94px 5.56px 8.59px 0px #300a0a;

  box-shadow: 0px -6.8px 21.81px 0px #efefef0d;

  border-radius: 25px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
}
.hidden {
  display: none;
}
.cta:hover {
  background-color: var(--light-teal);
  color: #060b0c;
}
.images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 300px;
  margin-bottom: 30px;
}
.images img {
  border-radius: 60px 0 60px 0;
  width: 30%;
  min-width: 350px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1.41;
  box-shadow: 10px 10px 10px 0px #060b0c;
}
@media (max-width: 950px) {
  .cta-div {
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .content p {
    padding: 0 0;
  }
  .content {
    padding: 0 5%;
  }
}

@media (max-width: 400px) {
  .images img {
    width: 300px;
    width: 30%;
    min-width: 300px;
  }
}
