* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #435c71;
  --secondary-color: #ebf2f7;
  --tertiary-color: #252627;
  --border-color: #d7e2eb;
  --btn-color: #ff5d53;
  --dark-gray: #696969;
  --primary-gr: linear-gradient(130.8deg, #457faf 29.07%, #435c71 88.53%);
  --border-radius-primary: 4px;
  --border-radius-full: 9999px;
}
body {
  background-color: #fff;
  font-family: "Roboto", serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* base styles */
.container {
  max-width: 1426px;
  padding: 0 1rem;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
}
.hidden {
  display: none;
}
.error {
  font-size: 12px;
  margin: -12px auto 8px;
  color: red;
}
/* header */
.header {
  background-color: var(--secondary-color);
  padding: 12px 0px;
  max-width: none;
  border-bottom: 1px solid var(--border-color);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#logo {
  color: var(--primary-color);
  font-weight: 700;
}
#logo img {
  max-height: 29px;
}
.navbar-brand img {
  max-height: 29px;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.primary-text-gr {
  background: var(--primary-gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* button styles */
.button {
  background-color: var(--btn-color);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}
.button.button-sm {
  display: none;
  padding: 10px 10px;
  font-size: 14px;
  width: fit-content;
  min-width: 140px;
  min-height: auto;
}
/* hero section */
.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; */
}
.hero-container {
  max-width: 400px;
  padding: 0 1rem;
  margin: 0 auto;
}
/* bg decoration */
.hero-bg-desktop,
.hero-bg-mobile {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-bg-desktop {
  display: none;
}
.hero-bg-mobile {
  top: auto;
  bottom: -90px;
}
.hero-wrapper {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}
.hero-wrapper .content-wrapper {
  padding: 20px 0;
  text-align: center;
}
.hero-section .title {
  font-size: clamp(32px, 4.5vw, 53px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-section .description {
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 32px;
}
.button.button-hero {
  width: 100%;
  min-height: 66px;
  margin-bottom: 16px;
}
.hero-section .footer-text {
  font-size: 14px;
}
.hero-section .footer-text a {
  background: var(--primary-gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
}
.hero-section .footer-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--primary-gr);
}
.hero-wrapper .hero-image {
  align-self: end;
}

/* feature section */
.feature-section {
  padding: 20px 0;
  background-color: #a4a8d1;
}
.feature-wrapper.desktop {
  display: none;
}
.feature-wrapper.mobile {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 24px;
  justify-content: space-between;
}
.feature-wrapper {
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 36px;
}
.feature-wrapper h2 {
  color: #8288c7;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}
.feature-wrapper img {
  user-select: none;
  height: 32px;
  width: 32px;
}
/* footer */
footer {
  padding: 70px 0 25px;
}
.footer-wrapper {
  max-width: 666px;
  margin: 0 auto;
}
.footer-wrapper p {
  color: #9c9c9c;
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
.footer-wrapper .disclaimer-text {
  background-color: #f8fbff;
  padding: 10px 20px;
  border-radius: var(--border-radius-primary);
  margin: 0 1rem;
}
.footer-bottom {
  max-width: 200px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: #9c9c9c;
}
.privacy-policy {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
  text-align: center;
}
.privacy-policy a {
  display: inline-block;
  color: black !important;
  text-decoration: underline;
  font-size: 12px;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  margin-right: 8px;
}
.privacy-policy a:last-child {
  margin-right: 0px;
}
.privacy-policy a:hover {
  opacity: 0.8;
}
/* modal styles */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 100;
  border-radius: var(--border-radius-primary);
  max-width: 632px;
  width: 100%;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
}
.form-modal {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-primary);
  overflow: hidden;
  margin: 10px;
}
.modal-left {
  flex: 1;
  background-color: var(--tertiary-color);
  color: #fff;
}
.form-left-header {
  background-color: #181919;
  padding: 20px 16px;
}
.form-left-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 4px;
}
.form-left-header h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30.8px;
  color: var(--secondary-color);
  margin-bottom: 0 !important;
}
.steps {
  background-color: #fff;
  padding: 15px;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step:last-child {
  margin-bottom: 0;
}

.nr {
  flex-shrink: 0;
  background-color: var(--secondary-color);
  color: #9c9c9c;
  border-radius: var(--border-radius-full);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  place-content: center;
  font-size: 16px;
  line-height: 24px;
}
.nr.active {
  background-color: var(--tertiary-color);
  color: #fff;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
}

.text {
  color: #7e7e7e;
}

.text.active {
  font-weight: bold;
  font-size: 18px;
  color: var(--tertiary-color);
}

.modal-right {
  flex: 1;
  padding: 30px 24px 20px;
  background-color: #eeeeee;
  color: var(--tertiary-color);
  text-align: center;
}
.show-for-medium-up {
  display: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
}

.input-container {
  position: relative;
  margin-bottom: 20px;
}

.input-container input {
  width: 100%;
  padding: 15px 10px;
  padding-left: 40px;
  border: 1px solid #ababab;
  border-radius: var(--border-radius-primary);
  font-size: 16px;
  color: var(--primary-color);
}
.input-container input:focus {
  outline: 0;
}

.input-container img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--btn-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-primary);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  font-size: 11px;
  color: #9c9c9c;
  text-align: center;
  margin-top: 10px;
}

/* media queries */
@media screen and (min-width: 640px) {
  .button.button-sm {
    display: flex;
  }
  .hero-container {
    max-width: 1100px;
  }
  .hero-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero-wrapper .content-wrapper {
    text-align: left;
  }
  .hero-bg-desktop {
    display: block;
  }
  .hero-bg-mobile {
    display: none;
  }
  .button.button-hero {
    width: fit-content;
    min-width: 251px;
  }
  .feature-wrapper.desktop {
    display: flex;
  }
  .feature-wrapper.mobile {
    display: none;
  }
  .form-modal {
    flex-direction: row;
  }
  .modal-left {
    min-width: 300px;
  }
  .form-left-header {
    padding: 17px 24px;
  }
  .steps {
    background-color: var(--tertiary-color);
    padding: 20px 24px 28px;
  }
  .nr {
    background-color: var(--btn-color);
    color: #fff;
  }
  .nr.active {
    background-color: #fff;
    color: var(--tertiary-color);
  }
  .text {
    color: #dcdcdc;
  }
  .text.active {
    color: #fff;
    font-size: 16px;
  }
  .modal-right {
    flex: 1;
    padding: 30px 24px 20px;
    background-color: #fff;
    color: var(--tertiary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .show-for-medium-up {
    display: block;
  }
  .form-fields {
    margin-top: 16px;
  }
  footer {
    padding-top: 100px;
  }
  .sub-page .sub-page-container {
    font-size: 16px !important;
  }
  .page-content-wrapper {
    padding-left: 3rem !important;
  }
  .sub-page h1 {
    font-size: 32px !important;
  }
  .sub-page h2 {
    font-size: 24px !important;
  }
  .section {
    padding: 40px 0;
  }
}

@media screen and (min-width: 768px) {
  .hero-container {
    padding: 0 2rem;
  }
  .hero-wrapper {
    gap: 40px;
  }
  footer {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .steps-border-wrapper {
    border-bottom: none;
  }
  .steps-wrapper {
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    margin: auto;
    width: fit-content;
  }
  .step-splitter {
    display: none;
  }
  .steps-section {
    padding-top: 112px;
  }
  .hero-section {
    padding-top: 0;
  }
  .feature-section {
    padding: 17.5px 0;
  }
}

@media screen and (min-width: 1280px) {
  .hero-wrapper {
    gap: 66px;
  }
}

/* animation */
.animate-in {
  animation: fadeIn 0.3s forwards;
}

.animate-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* terms and privacy css */
.sub-page .sub-page-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 14px;
}
.page-content-wrapper {
  padding-left: 0;
}
.sub-page h1 {
  color: #58646d !important;
  font-size: 24px;
  margin-bottom: 1rem;
}
.sub-page h2 {
  color: #797979;
  font-size: 18px;
  margin-bottom: 1rem;
}
.sub-page p {
  color: #797979;
  margin-bottom: 12px;
}
.sub-page ul {
  padding-left: 1rem;
  color: #797979;
  margin-bottom: 12px;
}
.sub-page li {
  color: #797979;
  margin-bottom: 12px;
}
.sub-page li ul {
  margin-top: 12px;
}
.sub-page a {
  color: #0537da;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}
.sub-page a:hover {
  opacity: 0.8;
}

/* contact us page */
.contact-card {
  display: flex;
  gap: 24px;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .contact-icon img {
  max-width: 32px;
}
.contact-card .contact-content p {
  margin-bottom: 4px;
}
.contact-card .contact-content a {
  color: #797979 !important;
}
.font-normal {
  font-weight: normal !important;
}

/* sticky button styles */
.sticky-btn {
  text-decoration: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  box-shadow: 0px -8px 16px 0px #00000033;
  background-color: var(--btn-color);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 24px 10px;
  border: none;
  width: 100%;
  min-height: 90px;
}
.sticky-btn .title {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto 5px;
}
.sticky-btn .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sticky-btn {
    display: block;
  }
}
