#hero .oval-pattern {
  display: none;
}
.faq-container button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c8102e;
  border-radius: 64px;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.close,
.open {
  transition: opacity 0.2s ease;
}
.faq-container:hover button:before {
  transform: scale(1);
  transition: transform 0.2s ease;
}
.faq-question {
  color: #1c1c1b !important;
}

.faq-container.open button {
  background: #c8102e;
}
.faq-container:not(.open) .open {
  opacity: 1;
}
.faq-container:not(.open) .close {
  opacity: 0;
}
.faq-container.open .close {
  opacity: 1;
  transform: rotate(180deg);
}
.faq-container.open .open {
  opacity: 0;
}

.faq-container:not(.open):hover .open {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.faq-container:not(.open):hover .close {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.faq-content {
  transition: height 0.3s ease-in-out;
}

.faq-content ul {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.faq-content li::marker {
  color: #c8102e;
}

.faq-container.open .faq-content {
  height: auto;
  padding: 2rem;
}

.contact-img {
  display: none;
}

@media screen and (min-width: 768px) {
  .contact-img {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .faq-question {
    color: #888a8b !important;
    transition: color 0s ease;
  }
  .faq-question:hover {
    color: #1c1c1b !important;
    transition: color 0s ease;
  }
}
