* {
    font-family: "Red Hat Display", sans-serif;
    box-sizing: border-box;
}

.thank-you-hero {
    width: 100%;
    background-color: #065397;
    padding: 100px 32px;
    display: flex;
    justify-content: center;
    color: #fff;
}

@media (max-width: 767px) {
    .thank-you-hero {
        padding: 64px 16px!important;
    }
    .thank-you-hero .thank-you-wrapper .content h1 {
        font-size: 40px!important;
    }
    .thank-you-hero .thank-you-wrapper .content p {
        font-size: 18px!important;
    }
}

.thank-you-hero .thank-you-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.thank-you-hero .thank-you-wrapper .content {
    max-width: 900px;
    text-align: center;
    width: 100%;
}

.thank-you-hero .thank-you-wrapper .content h1 {
    font-size: 64px;
	margin-top: 0;
  color: #fff;
    font-weight: bold;
  	text-transform: uppercase;
    margin-bottom: 20px;
}

.thank-you-hero .thank-you-wrapper .content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.thank-you-hero .thank-you-wrapper .content a {
    background-color: #fff;
    padding: 8px 20px;
    border: 1px solid transparent;
    text-decoration: none;
    color: black;
    font-size: 18px;
    border-radius: 100px;
    transition: .3s ease-in-out;
}

.thank-you-hero .thank-you-wrapper .content a:hover {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}


/* faqs  */

/* thank-you faqs */

.thank-you-faq-outer-wrapper {
	padding: 16px 16px 64px 16px;
}

.thank-you-faqs-wrapper {
  width: 100%;
	max-width: 800px;
  margin: auto;
}

.thank-you-faqs-wrapper h2 {
  display: flex;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
}

.thank-you-faq-item {
  display: block;
  width: 100%;
  border-bottom: 0.15rem #001f52 solid;
}

.thank-you-faq-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  transition: 0.2s ease-in-out;
}

.thank-you-faq-head:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .thank-you-faq-head .thank-you-faq-title h3 {
    font-size: 20px !important;
  }
}

@media (max-width: 767px) {
  .thank-you-faq-head .thank-you-faq-title h3 {
    font-size: clamp(16px, 4vw, 18px) !important;
  }

  .thank-you-faq-body.visible {
    padding: 8px !important;
  }

  .thank-you-faqs-wrapper {
    width: 100%;
  }
}

.thank-you-faq-head .thank-you-faq-title h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
}

.thank-you-faq-chevron {
  min-width: 24px;
  min-height: 24px;
}

.thank-you-faq-head .thank-you-faq-chevron img {
  width: 24px;
  height: 24px;
  max-width: 100%;
  transition: 0.2s ease-in-out;
}

.thank-you-faq-head .thank-you-faq-chevron.spin img {
  transform: rotate(180deg);
}

.thank-you-faq-head .thank-you-faq-chevron svg {
  width: 24px;
  height: 24px;
  max-width: 100%;
  transition: 0.2s ease-in-out;
}

.thank-you-faq-head .thank-you-faq-chevron.spin svg {
  transform: rotate(180deg);
}

.thank-you-faq-body {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out,
              max-height 0.4s ease-in-out,
              padding 0.4s ease-in-out;
}

.thank-you-faq-body p {
  margin-bottom: 0;
  margin-top: 0;
}

.thank-you-faq-body.visible {
  padding: 16px 8px 20px 8px;
  opacity: 1;
  max-height: 500px;
  visibility: visible;
}

/* end of thank-you faqs */

/* end of faqs  */