body {
  background-color: #FFEFE5;
  max-width: 1400px;
  margin: auto;
}
button {
  all: unset;
}
* {
  font-family: 'Barlow Semi Condensed', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-size: 44px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}
h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #ffff;
  text-align: center;
}
h3 {
  color: #191921;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hero-description {
  font-weight: 300;
  color: black;
  width: 580px;
  line-height: 120%;
  text-align: center;
  margin: 32px 0;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 39px;
}
a,
a h3 {
  text-decoration: none;
  color: #FF6699;
  display: block;
  text-transform: none;
}
a:hover,
a h3:hover {
  color: #ff3377;
}
section {
  display: block;
  overflow: hidden;
}
.form {
  display: flex;
  width: 523px;
  max-width: 100%;
  margin: 0 75px;
  background-color: #fff;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
}
.form input {
  all: unset;
  box-sizing: border-box;
  height: 90px;
  flex-grow: 3;
  text-align: left;
  padding: 0 30px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form input::placeholder {
  color: #000000;
  opacity: 0.4;
}
.form .submit {
  font-family: 'Barlow Semi Condensed', sans-serif;
  cursor: pointer;
  background-color: #000000;
  border-radius: 50px;
  height: 70px;
  margin-right: 10px;
  padding: 0 20px;
  font-size: 24px;
  color: #fff;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.form .submit:hover {
  background-color: #4d4d4d;
}
.success-message {
  background-color: #FF7301;
  border-radius: 4px;
  height: 50px;
  width: 400px;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.08) inset;
}
.success-message p {
  color: #ffff;
}
.hide {
  display: none !important;
}
section.waves {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 200px;
}
section.waves.bottom svg {
  top: auto;
  bottom: -1px;
}
section.waves svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
section.about {
  max-width: 1400px;
  margin: auto;
  padding: 0 100px;
}
section.about .contain {
  margin: 80px 0 112px 0;
}
section.about .contain.team {
  margin: 40px 0 0;
}
section.about .contain.join {
  margin-bottom: 80px;
}
section.about .profiles {
  text-align: center;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
section.about .profiles .profile {
  max-width: 340px;
  margin: 0 auto;
}
section.about img {
  width: 100%;
}
section.about h3 {
  margin-top: 28px;
  color: #FF7301;
}
section.about .logos {
  margin-top: 82px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 54px;
  row-gap: 40px;
}
section.about .logos .logo-break {
  flex-basis: 100%;
  height: 0;
}
section.about .join {
  text-align: center;
}
section.about .join h2 {
  color: #181820;
}
section.about .join .dark {
  color: #181820;
}
section.about .join a {
  margin-top: 40px;
  display: inline-block;
}
section.footer {
  width: 100%;
  text-align: center;
}
section.footer .media {
  text-align: right;
}
section.footer .media img {
  margin-bottom: 10px;
  width: 130px;
  cursor: pointer;
}
section.footer a {
  color: #ffff;
}
section.footer h2 {
  text-align: left;
}
section.footer .contain {
  border-top: 1px solid #000000;
  padding: 36px 0;
  margin: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  section {
    padding: 0 20px;
    margin: auto;
  }
  section.about {
    padding: 0 20px;
  }
  section.about .contain {
    margin-top: 0px !important;
  }
  section.about .profiles {
    flex-direction: column;
    margin-top: 40px;
  }
  section.about .logos {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  section.about .logos .logo-break {
    display: none;
  }
  section.about .logos img {
    width: 90%;
  }
  section.about .join {
    margin-bottom: 100px;
  }
  section.about img,
  section.about p {
    margin-left: auto;
    margin-right: auto;
  }
  section.waves {
    height: 60px;
  }
  .form {
    width: 90%;
  }
  .form input {
    width: 80%;
  }
  .form .submit {
    width: 20%;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 24px;
  }
  section.hero h1.special {
    font-size: 48px;
  }
}
@media (max-width: 799px) {
  section.footer .contain {
    gap: 40px;
    margin: 0 0px !important;
    flex-direction: column-reverse !important;
  }
  section {
    padding: 0 20px;
    margin: auto;
  }
  section.about {
    padding: 0 20px;
  }
  section.about .contain {
    margin-top: 80px !important;
  }
  section.about .profiles {
    flex-direction: column;
    margin-top: 80px;
  }
  section.about .logos {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
  }
  section.about .logos .logo-break {
    display: none;
  }
  section.about .logos img {
    width: 90%;
  }
  section.about .join {
    margin-bottom: 100px;
  }
  section.about img,
  section.about p {
    margin-left: auto;
    margin-right: auto;
  }
  section.waves {
    height: 60px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 24px;
  }
  section.hero h1.special {
    font-size: 48px;
  }
  .hero-description br {
    display: none;
  }
  .mobile-form-container {
    order: 2 !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 20px auto !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }
  .mobile-email-input {
    width: 100% !important;
    height: 60px !important;
    border-radius: 15px !important;
    border: none !important;
    padding: 0 20px !important;
    font-size: 24px !important;
    font-family: 'Barlow Semi Condensed', sans-serif !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .mobile-email-input:focus {
    outline: none !important;
  }
  .mobile-email-input::placeholder {
    color: #000000 !important;
    opacity: 0.4 !important;
    text-align: center !important;
    transition: opacity 0.2s ease !important;
  }
  .mobile-email-input:focus::placeholder {
    opacity: 0 !important;
  }
  .mobile-submit-button {
    width: fit-content !important;
    height: 74px !important;
    border-radius: 50px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    font-family: 'Barlow Semi Condensed', sans-serif !important;
    background-color: #000000 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 40px !important;
    text-align: center !important;
    align-self: center !important;
  }
  .mobile-submit-button:hover {
    background-color: #4d4d4d !important;
  }
  .mobile-success-message {
    background-color: #FF7301 !important;
    border-radius: 15px !important;
    height: 60px !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: #fff !important;
    font-weight: 500 !important;
  }
  .mobile-success-message.hide {
    display: none !important;
  }
  #successSubmit,
  .success-message {
    display: none !important;
  }
  section.hero {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 0px !important;
    margin-top: 45px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta {
    max-width: 500px;
    text-align: center;
    padding: 0 20px !important;
    width: 100% !important;
    order: 2;
    margin-bottom: 10px;
    margin-top: -40px !important;
  }
  .hero-cta p {
    width: 100% !important;
    font-size: 24px !important;
    margin: 20px 0 0 !important;
  }
  .form {
    display: none !important;
    order: 3 !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0px auto !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    flex-direction: column !important;
    height: auto !important;
    border-radius: 20px !important;
    padding: 20px !important;
    background-color: #fff !important;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1) !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
  }
  .form input {
    width: 80%;
  }
  .form .submit {
    width: 20%;
  }
  .hero-image {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    order: 1 !important;
    margin-bottom: 30px !important;
    margin-top: -20px !important;
    text-align: center !important;
  }
  .hero-image img {
    width: 100% !important;
    max-width: 600px !important;
    height: auto !important;
  }
  .hero-image img:first-child {
    position: relative;
    z-index: 2;
  }
  .hero-image img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  input {
    width: 100% !important;
    height: 60px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0 20px;
    font-size: 18px;
  }
  input:focus {
    border-color: #FF6699;
    outline: none;
  }
  .submit {
    width: 100% !important;
    height: 60px;
    margin: 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
  }
}
@media (min-width: 800px) {
  .mobile-form-container {
    display: none !important;
  }
}
@media (max-width: 1279px) and (min-width: 800px) {
  .contain {
    margin: 120px 0 0 !important;
  }
  .contain.team {
    margin: 0px 0 0 !important;
  }
  .contain.join {
    margin-bottom: 80px;
  }
  .logos {
    margin-top: 40px !important;
  }
  section.about {
    margin-top: 100px !important;
  }
  section.hero {
    position: relative;
    padding-top: 90px !important;
    padding-bottom: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta {
    text-align: center;
    padding: 0 20px !important;
    width: 100%;
    max-width: 550px;
    order: 1;
    margin-bottom: 10px;
  }
  .hero-cta p {
    width: 100% !important;
    font-size: 32px !important;
    margin: 10px 0 !important;
  }
  section.footer {
    padding: 0 28px !important;
  }
  .hero-image {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    order: 2;
    margin-bottom: 30px;
    margin-top: -50px;
    text-align: center;
  }
  .hero-image img {
    width: 100% !important;
    max-width: 600px !important;
    height: auto !important;
  }
  .hero-image img:first-child {
    position: relative;
    z-index: 2;
  }
  .hero-image img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .form {
    height: 126px;
    order: 3;
    width: 100%;
    max-width: 725px;
    margin: 0px auto;
    margin-top: -15px !important;
  }
  .form .submit {
    height: 91px;
    margin-right: 20px;
  }
  #successSubmit,
  .success-message {
    display: none !important;
  }
  .tablet-success-message {
    background-color: #FF7301;
    border-radius: 4px;
    height: 50px;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: -15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.08) inset;
    order: 3 !important;
  }
  .tablet-success-message p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
  }
  .tablet-success-message.hide {
    display: none !important;
  }
}
.linkedin {
  cursor: pointer;
}
.linkedin:hover {
  opacity: 0.6;
}
section.hero {
  padding: 120px 0;
}
section.hero h1 {
  color: #ffff;
}
section.hero h1.special {
  font-family: "Mogra", serif;
  src: url('/fonts/Mogra-Regular.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  background: linear-gradient(258deg, #AF00FF 0%, #FF6699 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.hero a {
  text-align: center;
}
section.hero .cta {
  max-width: 600px;
  text-align: center;
  margin: 100px auto 0;
}
section.hero hr {
  border: none;
  /* Remove default border */
  height: 2px;
  /* Set the thickness of the line */
  background-color: rgba(255, 255, 255, 0.2);
  /* Apply the translucent white background */
  margin: 60px 0;
}
.hero-cta {
  text-align: center;
  padding: 0 50px;
  width: fit-content;
}
