@charset "UTF-8";
/*=== abstracts css start === */
/*===// end of abstracts css === */
/*=== base css start === */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

::after, ::before {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, ol, ul, p, address, strong, i {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul, li {
  list-style: none;
}

a, a:hover {
  text-decoration: none;
}

body {
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50%;
  }
}
/*===// end of base css === */
/*=== layouts css start === */
.header .navbar-collapse .nav-item .nav-link {
  color: #673AB7;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-right: 40px;
  position: relative;
}
.header .navbar-collapse .nav-item .nav-link.active::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #673AB7;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
@media (max-width: 767px) {
  .header .navbar-collapse .nav-item .nav-link.active::after {
    left: 20px;
    top: 90%;
    width: 30px;
    height: 3px;
    border-radius: 5px;
  }
}

.footer .f-wrap {
  padding: 60px 0 40px;
  background: url(../images/footer-bg.png) bottom left/cover;
}
@media (max-width: 767px) {
  .footer .f-wrap {
    background: url(../images/footer-bg.png) bottom center/cover;
    flex-direction: column;
  }
}
.footer .link-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 1.125rem;
  row-gap: 0.875rem;
  max-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .link-wrap {
    column-gap: 0.85rem;
    row-gap: 0.75rem;
  }
}
@media (max-width: 767px) {
  .footer .link-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    column-gap: 0;
    row-gap: 0.65rem;
  }
}
.footer .link-wrap li {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
}
.footer .link-wrap-legal {
  margin-top: 0.875rem;
}
@media (max-width: 767px) {
  .footer .link-wrap-legal {
    margin-top: 0.65rem;
  }
}
.footer .n-link {
  color: #673AB7;
  font-size: clamp(14px, 1.9vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  text-decoration: none;
}
.footer .n-link:hover,
.footer .n-link:focus {
  text-decoration: underline;
  color: #5e35b1;
}
@media (max-width: 767px) {
  .footer .n-link {
    white-space: normal;
    max-width: 22rem;
  }
}
.footer .address {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer .address {
    font-size: 12px;
    text-align: center;
  }
}

.footer #contact-us {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(103, 58, 183, 0.3);
  max-width: 40rem;
  scroll-margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .footer #contact-us {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer #contact-us {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.footer .footer-contact-heading {
  color: #673ab7;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.65rem 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .footer .footer-contact-heading {
    font-size: 16px;
  }
}
.footer .footer-contact-lead {
  margin-bottom: 0.25rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #333;
}
@media (max-width: 767px) {
  .footer .footer-contact-lead {
    font-size: 14px;
  }
}
.footer .footer-contact-email {
  color: #673ab7;
  font-weight: 700;
  text-decoration: none;
}
.footer .footer-contact-email:hover,
.footer .footer-contact-email:focus {
  text-decoration: underline;
}
.footer #contact-us .address {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 1.25rem;
  color: #333;
}
@media (max-width: 767px) {
  .footer #contact-us .address {
    font-size: 12px;
  }
}

.footer .copyright {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer .copyright {
    padding-top: 10px;
    font-size: 12px;
    text-align: center;
  }
}

/*===// end of layouts css === */
/*=== components css start === */
.btn-login {
  /* Bootstrap .btn hover uses --bs-btn-* on this element. */
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #673ab7;
  --bs-btn-border-color: #673ab7;
  --bs-btn-hover-color: #212529;
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #673ab7;
  --bs-btn-active-color: #212529;
  --bs-btn-active-bg: #eceff1;
  --bs-btn-active-border-color: #673ab7;
  --bs-btn-focus-shadow-rgb: 103, 58, 183;

  text-transform: uppercase;
  font-family: "Open Sans";
  border-radius: 39px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  padding-inline: 25px;
}

a.btn-login {
  display: inline-block;
  text-decoration: none;
  line-height: 1.25;
}

a.btn-login:visited {
  color: #ffffff;
}

.btn-contact {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #673AB7;
  background: #FEC230;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding-inline: 40px;
}
.btn-contact:hover {
  border: 1px solid #673AB7;
}
@media (max-width: 767px) {
  .btn-contact {
    font-size: 25px;
  }
}

.btn-wrap {
  display: inline-block;
  background: #FFD8D8;
  padding: 10px 30px;
  border-radius: 25px;
  width: 45%;
  margin-top: 45px;
}
.btn-wrap .btn-buy-credit {
  font-family: "Roboto", sans-serif;
  background: #673AB7;
  border-radius: 35px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 30px;
  width: 75%;
  padding: 10px;
}
.btn-wrap .btn-buy-credit:hover {
  border: 1px solid #673AB7;
}
@media (max-width: 767px) {
  .btn-wrap {
    width: 90%;
  }
}

a.btn-join {
  text-decoration: none;
  display: inline-block;
}
.btn-join {
  background: #cb6ce6;
  border-radius: 25px;
  padding: 10px 25px;
  color: #fff;
  font-weight: 700;
}
.btn-join:hover {
  border: 1px solid #673AB7;
}

.btn-lang {
  font-size: 16px;
  font-weight: 500;
  background: #AF4EFD;
  border-radius: 35px;
  margin-left: 10px;
  color: #fff;
  width: 150px;
}
.btn-lang:hover {
  border: 1px solid #673AB7;
}

/*===// end of components css === */
.f-banner {
  background: url(../images/faq/faq-banner-bg.png) no-repeat center center/cover;
  padding: 60px 0;
  margin-bottom: 60px;
}
.f-banner h3 {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 55px;
  padding-bottom: 45px;
}
.f-banner p {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #31358E;
  letter-spacing: 3px;
  font-size: 18px;
}
.f-banner .imgh img {
  margin-bottom: -60px;
}
@media (max-width: 1199px) {
  .f-banner h3 {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .f-banner .imgh img {
    width: 120px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .f-banner {
    margin-top: 0;
    padding: 30px 0;
  }
  .f-banner h3 {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .f-banner p {
    font-size: 10px;
    letter-spacing: normal;
  }
  .f-banner .imgh img {
    width: 50px;
    margin-bottom: -25px;
  }
}

.f-questions {
  padding: 60px 0;
  background: url(../images/faq/faq-liquid-bg.png) no-repeat center center;
}
@media (max-width: 767px) {
  .f-questions {
    background: url(../images/faq/faq-liquid-bg.png) no-repeat left center;
    padding: 40px 0;
  }
}
.f-questions .top h4 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.f-questions .top h4::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 20%;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: linear-gradient(169.02deg, #B2EBF2 -58.33%, #D1C4E9 60.57%);
  border-radius: 17px;
}
@media (max-width: 767px) {
  .f-questions .top h4 {
    font-size: 20px;
  }
}
.f-questions .inside {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .f-questions .inside {
    padding-top: 20px;
  }
}
.f-questions .inside .accordion-4 {
  --bs-accordion-border-color: rgba(255, 255, 255, 0);
}
.f-questions .inside .accordion-4 .accordion-item {
  padding-bottom: 40px;
  background: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .f-questions .inside .accordion-4 .accordion-item {
    padding-bottom: 5px;
  }
}
.f-questions .inside .accordion-4 .accordion-header .accordion-button {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 600;
  border: none;
  background: rgba(0, 0, 0, 0);
}
.f-questions .inside .accordion-4 .accordion-header .accordion-button:not(.collapsed) {
  color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  border: none;
}
.f-questions .inside .accordion-4 .accordion-header .accordion-button:not(.collapsed)::after {
  content: "−";
  background-image: none;
  transform: none;
}
.f-questions .inside .accordion-4 .accordion-header .accordion-button:after {
  content: "+";
  background-image: none;
  font-size: 48px;
  color: #C28FEF;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .f-questions .inside .accordion-4 .accordion-header .accordion-button:after {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .f-questions .inside .accordion-4 .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.f-questions .inside .accordion-4 .accordion-body {
  font-family: "Crimson Text", serif;
}
.f-questions .inside .accordion-4 .accordion-body p {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .f-questions .inside .accordion-4 .accordion-body p {
    font-size: 12px;
  }
}

.contact-us {
  text-align: center;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .contact-us {
    padding: 40px 0;
  }
}
.contact-us h3 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #673AB7;
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .contact-us h3 {
    font-size: 20px;
  }
}

.bgm {
  background: url(../images/bg-mask.png) no-repeat top center/cover;
}

.download {
  text-align: center;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .download {
    padding: 40px 0;
  }
}
.download h3 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .download h3 {
    font-size: 20px;
  }
}

.home-banner {
  background: url(../images/home/home-banner-bg.png) no-repeat center center;
  padding: 60px 0;
}
.home-banner .home-hero-img,
.features .home-features-img,
.special .col-lg-6 img {
  background: transparent;
}
@media (max-width: 767px) {
  .home-banner {
    padding: 40px 0;
  }
  .home-banner .home-section-image,
  .features .home-section-image,
  .special .home-section-image,
  .creator-section-image {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .home-banner .home-hero-img,
  .features .home-features-img,
  .special .home-section-image img,
  .creator-section-image img {
    width: 100%;
    max-width: 100%;
  }
}
.home-banner h2 {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  padding-bottom: 20px;
}
.home-banner h2 span {
  color: #673AB7;
}
@media (max-width: 767px) {
  .home-banner h2 {
    font-size: 30px;
    padding-bottom: 14px;
  }
}
.home-banner p {
  font-family: "Roboto", sans-serif;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 600;
  font-size: 32px;
  padding-bottom: 8px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-banner p {
    font-size: 16px;
    padding-bottom: 6px;
  }
  .home-banner .home-stats {
    margin-bottom: 0.35rem;
    column-gap: 1.25rem;
  }
}
.home-banner .home-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.home-banner .home-stats-item {
  flex: 0 0 auto;
  max-width: none;
}
.home-banner .home-stats-value {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #673AB7;
  line-height: 1;
  margin-bottom: 2px;
}
.home-banner .home-stats-label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .home-banner .home-stats-value {
    font-size: 22px;
  }
  .home-banner .home-stats-label {
    font-size: 11px;
  }
}

.features {
  padding: 60px 0;
  background: url(../images/home/home-features-bg.png) no-repeat left center;
}
@media (max-width: 767px) {
  .features {
    padding: 30px 0;
  }
}
.features .top h4 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.features .top h4::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 40%;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: linear-gradient(169.02deg, #B2EBF2 -58.33%, #D1C4E9 60.57%);
  border-radius: 17px;
}
.features .texts {
  padding-top: 20px;
}
.features .texts .item {
  padding-bottom: 30px;
  padding-left: 30px;
}
.features .texts .item img,
.features .texts .item .feature-icon {
  width: 50px;
  margin-left: -30px;
  margin-right: 6px;
}
.features .texts .item .feature-icon {
  display: inline-block;
  font-size: 34px;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
}
.features .texts .item img.feature-icon {
  font-size: inherit;
  object-fit: contain;
  height: 50px;
}
.features .texts .item img.feature-icon-flag {
  width: 51px;
  height: 34px;
  padding: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  vertical-align: middle;
  object-fit: fill;
}
.features .texts .item h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
}
.features .texts .item p {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
}
@media (max-width: 767px) {
  .features .texts .item {
    padding: 0 15px 20px;
  }
  .features .texts .item h4 {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
    padding-bottom: 20px;
  }
  .features .texts .item .feature-icon {
    display: block;
    margin: 0 auto 8px;
    font-size: 28px;
  }
  .features .texts .item img.feature-icon {
    height: 40px;
    width: 40px;
  }
  .features .texts .item img.feature-icon-flag {
    width: 44px;
    height: 29px;
  }
  .features .texts .item p {
    font-size: 12px;
  }
}

.special {
  padding: 60px 0;
  background: url(../images/home/home-special-bg.png) no-repeat center center;
}
.special h4 {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 30px;
}
.special p {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 30px;
}
.special h3 {
  color: #673AB7;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .special {
    padding: 30px 0px;
    text-align: center;
  }
  .special h4 {
    font-size: 40px;
  }
  .special p {
    font-size: 12px;
  }
  .special h3 {
    font-size: 40px;
  }
}

.testimonial {
  background: url(../images/bg-mask.png) no-repeat top center/cover;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .testimonial {
    padding: 60px 0 0;
  }
}

.club-banner {
  background: #fff5f5;
  padding: 16px 0 24px;
}
.club-banner-row {
  min-height: 0;
}
.club-banner .creator-hero-visual {
  line-height: 0;
}
.club-banner .club-banner-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .club-banner .creator-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .club-banner .club-banner-hero-img {
    margin-right: 0;
  }
}
.club-banner h2 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 700;
  padding-bottom: 16px;
}
.club-banner h2 span {
  color: #673AB7;
}
.club-banner .club-banner-lead {
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.54);
  padding-bottom: 20px;
  max-width: 32rem;
}
.club-banner p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5254901961);
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .club-banner p {
    padding-bottom: 10px;
  }
}

.join-community {
  padding: 72px 0 60px;
  background: url(../images/ct/ct-join-bg.png) no-repeat bottom center;
}
.join-community .top {
  text-align: center;
}
.join-community .top h4 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.join-community .top h4::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 20%;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: linear-gradient(169.02deg, #B2EBF2 -58.33%, #D1C4E9 60.57%);
  border-radius: 17px;
}
.join-community .top p {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 35px;
}
.join-community .inner-c {
  padding-top: 30px;
}
.join-community .inner-c .item {
  padding-bottom: 35px;
  display: flex;
  align-items: start;
}
.join-community .inner-c .item .image {
  margin-right: 25px;
}
.join-community .inner-c .item .image img {
  width: 65px;
}
.join-community .inner-c .item .creator-benefit-icon {
  display: inline-block;
  width: 65px;
  font-size: 42px;
  line-height: 1;
  text-align: center;
}
.join-community .inner-c .item h5 {
  font-weight: 700;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.87);
  padding-bottom: 15px;
}
.join-community .inner-c .item p {
  font-weight: 400;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.87);
}
@media (max-width: 767px) {
  .join-community {
    padding: 80px 0 40px;
  }
  .join-community .top h4 {
    font-size: 30px;
  }
  .join-community .top p {
    font-size: 16px;
    text-align: center;
  }
  .join-community .inner-c {
    background: url(../images/ct/ct-join-bg.png) no-repeat top center;
  }
  .join-community .inner-c .item {
    flex-direction: column;
  }
  .join-community .inner-c .item .image {
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
  }
  .join-community .inner-c .item .image img {
    width: 45px;
  }
  .join-community .inner-c .item .text h5 {
    font-size: 20px;
    text-align: center;
  }
  .join-community .inner-c .item .text p {
    font-size: 16px;
  }
}

.qualify {
  padding: 60px 0;
  background: url(../images/ct/ct-qualify-bg.png) no-repeat;
  font-family: "Roboto", sans-serif;
}
.qualify .header {
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 35px;
}
.qualify .qualty {
  background: url(../images/ct/ct-qualify-bg-2.png) no-repeat center center;
}
.qualify .item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.qualify .item p {
  padding-left: 25px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .qualify {
    padding: 40px 0;
    background: url(../images/ct/ct-qualify-bg.png) no-repeat top left;
  }
  .qualify .header {
    font-size: 20px;
    padding-bottom: 0;
  }
  .qualify .qualty {
    padding: 0;
    background: url(../images/ct/ct-qualify-bg-2.png) no-repeat bottom center;
  }
  .qualify .qualty .item {
    padding-left: 20px;
  }
  .qualify .qualty .item img {
    width: 20px;
  }
  .qualify .qualty .item p {
    font-size: 14px;
    padding-left: 10px;
  }
}

.para-g {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .para-g {
    font-size: 20px;
    text-align: center;
    padding: 20px;
  }
}

.join-now {
  padding: 60px 0;
  background: url(../images/bg-mask.png) no-repeat top center/cover;
}
.join-now h2 {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #673AB7;
  padding-bottom: 20px;
}
.join-now .form-join {
  background: #CE93D8;
  padding: 20px 40px;
  color: #FFFFFF;
}
.join-now .form-join h4 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
}
.join-now .form-join .input-c {
  background: rgba(0, 0, 0, 0);
  width: 100%;
  font-size: 30px;
  border: 1px solid #fff;
  padding: 10px;
  color: #fff5f5;
}
.join-now .form-join .input-c::-moz-placeholder {
  color: #fff5f5;
  font-size: 30px;
}
.join-now .form-join .input-c::placeholder {
  color: #fff5f5;
  font-size: 30px;
}
.join-now .form-join .input-c option {
  color: #000;
}
.join-now .form-join .rradio label {
  display: inline-block;
  font-size: 30px;
  margin-right: 10px;
}
.join-now .form-join .rradio input {
  width: 30px;
  height: 30px;
}
.join-now .form-join .creator-languages-label {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff5f5;
}
.join-now .form-join .creator-lang-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
}
.join-now .form-join .creator-lang-select-toggle::after {
  margin-left: auto;
  flex-shrink: 0;
}
.join-now .form-join .creator-lang-select-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.join-now .form-join .creator-lang-select-menu {
  max-height: 280px;
  overflow-y: auto;
  padding: 0.35rem 0;
  border: 1px solid rgba(103, 58, 183, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.join-now .form-join .creator-lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  white-space: nowrap;
}
.join-now .form-join .creator-lang-option:hover,
.join-now .form-join .creator-lang-option:focus {
  background-color: #f3e5f5;
  color: #673AB7;
}
.join-now .form-join .creator-lang-option .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.join-now .form-join .creator-lang-option .form-check-input:checked {
  background-color: #673AB7;
  border-color: #673AB7;
}
.join-now .form-join .creator-languages-hint {
  margin: 0.5rem 0 0;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
.join-now .form-join .creator-languages-error {
  margin: 0.75rem 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: rgba(103, 58, 183, 0.85);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}
.join-now .form-join .creator-languages-error[hidden] {
  display: none !important;
}
.join-now .form-join .creator-languages.is-invalid .creator-lang-select-toggle {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.join-now .form-join .submit-btn {
  color: #673AB7;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 35px;
  border-radius: 15px;
  margin-top: 20px;
}
.join-now .form-join .submit-btn:hover {
  color: #fff;
  background: #673AB7;
}
@media (max-width: 767px) {
  .join-now {
    background: #fff5f5;
    padding: 40px 0;
  }
  .join-now h2 {
    font-size: 30px;
  }
  .join-now .form-join h4 {
    font-size: 20px;
  }
  .join-now .form-join .input-c {
    font-size: 16px;
  }
  .join-now .form-join .input-c::-moz-placeholder {
    font-size: 16px;
  }
  .join-now .form-join .input-c::placeholder {
    font-size: 16px;
  }
  .join-now .form-join .rradio label {
    font-size: 16px;
  }
  .join-now .form-join .rradio input {
    width: 16px;
    height: 16px;
  }
  .join-now .form-join .creator-languages-label {
    font-size: 16px;
  }
  .join-now .form-join .creator-lang-select-toggle {
    font-size: 16px;
  }
  .join-now .form-join .creator-lang-option {
    font-size: 14px;
  }
  .join-now .form-join .creator-languages-error {
    font-size: 14px;
  }
  .join-now .form-join .submit-btn {
    font-size: 20px;
    padding: 5px 35px;
  }
}