#blur {
  opacity: 1;
}

#blur.active {
  opacity: 0.2;
}

.main-container {
  display: flex;
  row-gap: 4rem;
  padding: 4rem 0;
  flex-direction: column;
}

.main-content {
  display: flex;
  row-gap: 2rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.main-title {
  color: #df5778;
}

.faq-collapsible {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}

.collapsible-box {
  margin: 0 auto;
  overflow: hidden;
  max-width: 600px;
  border-radius: 4px;
}

.collapsible-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.collapsible-header:hover {
  cursor: pointer;
}

.collapsible-caption {
  display: flex;
  color: #df5778;
  font-size: larger;
  font-weight: bolder;
  justify-content: space-between;
}

.collapsible-caption:hover {
  opacity: 0.8;
  cursor: pointer;
}

.arrow-icon {
  color: #888;
  transition: all 0.3s ease-in-out;
}

.arrow-icon.active {
  transform: rotate(180deg);
}

.collapsible-content {
  height: 0;
  transition: all 0.3s ease-in-out;
}

.collapsible-content.active {
  height: 4rem;
}

.collapsible-content p {
  color: #888;
}

.contact-form {
  width: 600px;
  display: flex;
  row-gap: 2rem;
  flex-direction: column;
}

.contact-box-row {
  display: flex;
  flex-direction: column;
}

.label-box {
  color: #df5778;
}

.input-box {
  border: none;
  outline: none;
  max-height: 6rem;
  padding: 0.78rem 0;
  padding-bottom: 0;
  border-bottom: 1px solid #888;
  font-family: "CustomFont2", sans-serif;
}

.details-input {
  height: 4rem;
}

.contact-submit {
  border: none;
  outline: none;
  color: white;
  font-weight: bold;
  padding: 1rem 4rem;
  border-radius: 12px;
  text-transform: uppercase;
  background-color: #df5778;
  transition: all 0.2s ease-in-out;
  font-family: "CustomFont2", sans-serif;
}

.contact-submit:hover {
  opacity: 0.9;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .main-content {
    padding: 0 1rem;
  }
  
  .contact-form {
    width: 100%;
  }
}
