.container-bg {
  background-size: cover;
  position: fixed;
  width: 100%;
  height: calc(100vh - 80px);
  z-index: -1;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .container-bg {
    height: calc(100vh - 60px);
  }
}
@media screen and (max-width: 1024px) {
  .main-title {
    padding-top: 40px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    padding: 0 30px;
  }
}
.main {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto 200px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .main {
    flex-direction: column;
    padding: 0;
  }
}
.main .quick,
.main .contact {
  flex: 1;
  padding: 60px 40px;
  border-radius: 30px;
  background-color: #FFF;
  transform: translateY(200px);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .main .quick,
  .main .contact {
    padding: 40px 30px;
  }
}
.main .quick {
  animation: showup 1s 0.6s ease-in-out forwards;
}
.main .contact {
  animation: showup 1s 1s ease-in-out forwards;
}
@keyframes showup {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main .title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.main .desc {
  font-size: 14px;
  border-bottom: 1.5px solid #81D8D0;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .main .desc {
    font-size: 13px;
  }
}
.main .faq-item {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1.5px solid #81D8D0;
  overflow: hidden;
  height: var(--collapsed-height, 52px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .main .faq-item {
    height: var(--collapsed-height, 48px);
  }
}
.main .faq-item[open] {
  height: var(--expanded-height, auto);
}
.main .faq-item[open] .faq-question {
  background-color: #e5fffd;
  color: #81D8D0;
}
.main .faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.main .faq-item.open {
  height: var(--expanded-height, auto);
}
.main .faq-item.open .faq-question {
  background-color: #e5fffd;
  color: #81D8D0;
}
.main .faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.main .faq-item .faq-question {
  height: 52px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #e5fffd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1024px) {
  .main .faq-item .faq-question {
    padding: 0 14px;
    height: 48px;
  }
}
.main .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
.main .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 500;
  color: #191919;
}
@media screen and (max-width: 1024px) {
  .main .faq-item .faq-question .question-text {
    font-size: 14px;
  }
}
.main .faq-item .faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: #81D8D0;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .main .faq-item .faq-question .faq-icon {
    font-size: 14px;
  }
}
.main .faq-item .faq-answer {
  padding: 15px 60px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  background-color: #FFF;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .main .faq-item .faq-answer {
    padding: 14px 16px;
    font-size: 13px;
  }
}
.main .form-group {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  align-items: baseline;
}
@media screen and (max-width: 1024px) {
  .main .form-group {
    gap: 0;
  }
}
.main .form-group label {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .main .form-group label {
    font-size: 13px;
  }
}
.main .form-group .form-control {
  flex: 1;
  height: 40px;
  border: 1.5px solid #81D8D0;
  padding: 0 20px;
  background-color: transparent;
  border-radius: 6px;
}
.main .form-group .form-textarea {
  height: 120px;
  padding: 20px;
}
.main .form-btn {
  width: 100%;
  height: 48px;
  background: #ddd;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 2px;
}
.main .form-btn.activate-btn {
  background: #81D8D0;
  color: #191919;
  cursor: pointer;
  transition: all 0.3s;
}
.main .form-btn.activate-btn:hover {
  transform: scale(1.05);
}
