:root {
  /* Theme colors */
  --cta-primary-bg-color: #f2994a;
  --cta-hover-primary-bg-color: #eb7119;

  --font-primary-color: #ffffff;
  --font-secondary-color: #000000;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Instrument Sans', sans-serif;
  --xsmall-font-size: 15px;
  --small-font-size: 16px;
  --med-font-size: 20px;
  --large-font-size: 24px;
  --xlarge-font-size: 32px;
  --xxlarge-font-size: 52px;

  /* Spacing */
  --space-2: 2px;
  --space-3: 3px;
  --space-5: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: var(--small-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-style: normal;
}

header {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

main {
  width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: 4.37rem;
}
h2 {
  font-size: 2.241rem;
}
h3 {
  font-size: 1.653rem;
}
h4 {
  font-size: 1.163rem;
}
h5 {
  font-size: 1.025rem;
}

p {
  font-size: var(--small-font-size);
  text-align: center;
}

table {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  will-change: transform;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

code {
  padding: 2px 5px;
  background-color: rgb(var(--gray-light));
  border-radius: 2px;
}

pre {
  padding: 1.5em;
  border-radius: 8px;

  > code {
    all: unset;
  }
}

blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 0;
  font-size: 1.333em;
}

span {
  font-family: inherit;
  font-weight: 500;
  color: #596077;
  font-size: calc(var(--small-font-size) + 1px);
}

section {
  padding: 40px 20px;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xlarge-max-width {
  max-width: 1180px;
}

.xxlarge-max-width {
  max-width: 1280px;
}

.mid-margin {
  margin: 0 auto;
}

.main-container {
  max-width: 1220px;
}

.sr-only {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;

  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.how-it-works {
  position: relative;
  width: 100%;
}

.top-vector {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
}

.bottom-vector {
  position: absolute;
  inset: 0;
  top: 23%;
  width: 100%;
  z-index: 1;
}

.our-reach {
  height: 100%;
  background: linear-gradient(to bottom, white 65%, #092c4c 35%);
  margin-bottom: 100px;
}

.form {
  background-color: #fffdf6;
}

/* Form CSS */
.formContainer {
  max-width: 1180px;
  margin: 0 auto;
}

.formTopic {
  font-family: inherit;
  font-weight: 500;
  color: #596077;
  font-size: 18px;
  margin-bottom: 20px;
}

.formTitle {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.formListIconContainer {
  width: 56px;
  height: 56px;
  opacity: 1;
  border-radius: 90px;
  /* border: 1px solid #7EB6FF; */
  /* background-color: #C3DDFF66; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.formListIconContainer > span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #2f80ed;
}

.formListImg {
  border-radius: 90px;
  width: 100%; /* scale to container width */
  height: auto; /* keep aspect ratio */
  display: block; /* avoid inline spacing issues */
}

.formListWrapper {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 25px;
}

.formListTitle {
  display: flex;
  flex-direction: column;
  flex: 1;
  row-gap: 8px;
}

.formListTitleText {
  font-size: 18px;
  font-weight: 500;
}

.formListSubTitleText {
  font-size: 1rem;
  font-weight: 400;
}

.formListTitleText,
.formListSubTitleText {
  font-family: inherit;
  text-align: left;
}

.formHeader {
  margin-bottom: 50px;
}

.formContact {
  box-shadow: 0px 8px 24px 0px #959da533;
  border-top: 5px solid #f2994a;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formContactTitle {
  font-family: 'Instrument Sans' sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  margin-bottom: 10px;
}

.formContactSubTitle {
  font-family: 'Instrument Sans' sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 30px;
}

.inputContainer {
  height: 55px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
  padding: 20px;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  transition: border 0.3s ease;
  outline: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.textAreaContainer {
  max-height: 200px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
  padding: 20px;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  transition: border 0.3s ease;
  outline: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.inputContainer:disabled,
.textAreaContainer:disabled {
  background-color: #bdbdbd;
}

.inputContainer:hover,
.inputContainer:active,
.inputContainer:focus,
.textAreaContainer:hover,
.textAreaContainer:focus {
  border: 1px solid #f2994a;
}

.ml-form-embedBody.ml-form-embedBodyDefault.row-form {
  background-color: #fff !important;
  padding: 0;
}

#mlb2-27316456.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: #fff !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedPermissionsContent.privacy-policy
  p {
  color: #000 !important;
  font-family: inherit !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button.primary {
  background-color: #f2994a !important;
  transition: background-color 0.3s ease !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button.primary:hover {
  background-color: #eb7119 !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-fieldRow
  input {
  font-family: inherit !important;
  outline: none !important;
  transition: border 0.3s ease !important;
  border: 1px solid #cccccc !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-fieldRow
  input:hover,
#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-fieldRow
  input:focus {
  border: 1px solid #f2994a !important;
}

#mlb2-27316456.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody {
  padding: 0 !important;
}

#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  p,
#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  p,
#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  p,
#mlb2-27316456.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  h4 {
  color: #000 !important;
}

/* End Form styles */

/* Contact Page Styles */
.contact-container {
  min-height: 200vh;
}

.contact-top-section {
  display: flex;
  flex-direction: column;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0;
}

.contact-title-txt {
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #596077;
}

.contact-topic-txt {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.contact-email {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

/* End Contact Page Styles */

.topic {
  font-family: inherit;
  font-weight: 500;
  color: #596077;
  font-size: 18px;
  margin-bottom: 15px;
}

.title {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: left;
}

.subTitle {
  font-size: 16px;
  line-height: 22px;
  color: #112437;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: left;
  flex: 2;
}

/* Service Styles */
.service-container {
  position: relative;
  background-color: #f6f6f6;
  max-width: 1280px;
  z-index: 5;
  padding: 50px 90px 80px 90px;
  border-radius: 10px;
  margin: 0 auto;
  padding: 25px 30px 25px 30px;
}
/* End Service Styles */

@media only screen and (min-width: 500px) {
}

@media (min-width: 768px) {
  .formTitle {
    font-size: 25px;
  }
  .title {
    font-size: 25px;
  }
}

@media only screen and (min-width: 900px) {
  .our-reach {
    background: linear-gradient(to bottom, white 60%, #092c4c 40%);
  }
  .form {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .formContainer {
    display: flex;
    gap: 60px;
  }
  .formHeader {
    align-self: center;
    padding: 15px 0px;
  }
  .formHeader,
  .formContact {
    flex: 1;
  }
  .formContact {
    padding: 36px 50px;
  }
  .formTitle {
    font-size: 35px;
  }
  .contact-title-txt {
    font-size: 24px;
  }
  .contact-topic-txt {
    font-size: 56px;
  }
  .contact-top-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    padding: 50px 0;
  }
  .title {
    margin-bottom: 45px;
    font-size: 35px;
  }
  .subTitle {
    font-size: 20px;
  }
  .service-container {
    padding: 50px 60px 80px 60px;
  }
}

@media only screen and (min-width: 1000px) {
  .our-reach {
    background: linear-gradient(to bottom, white 50%, #092c4c 50%);
  }
  .formTitle {
    font-size: 48px;
  }
  .formListIconContainer {
    width: 72px;
    height: 72px;
  }
  .formListIconContainer > span {
    font-size: 32px;
  }
  .text-wrapper {
    max-width: 1220px;
  }
}

@media only screen and (min-width: 1200px) {
  .title {
    font-size: 48px;
  }
}
