* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #435c71;
  --btn-color: #18a103;
  --secondary-color: #f8f9f9;
  --dark-gray: #696969;
}
body {
  background-color: #fff;
  font-family: Helvetica, Arial, sans-serif;
}
/* base styles */
.container {
  max-width: 1026px;
  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: #f8f9f9;
  padding: 13px 0px;
  max-width: none;
  border-bottom: 1px solid #d7e2eb;
}
#logo {
  color: var(--primary-color);
  font-weight: 700;
}
#logo img {
  max-height: 29px;
  filter: grayscale(1);
}
.navbar-brand img {
  max-height: 29px;
}
/* mobile top section */
.mob-top-section {
  padding: 47px 24px;
  background-color: var(--secondary-color);
}
.mob-top-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mob-top-section .mob-top-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mob-top-section .mob-top-card .svg-wrapper {
  width: 30px;
  height: 30px;
}
.mob-top-section .mob-top-card .svg-wrapper svg {
  width: 30px;
  height: 30px;
  color: var(--dark-gray);
}
.mob-top-section .mob-top-card p {
  color: var(--dark-gray);
  font-size: 12px;
  line-height: 25px;
}
@media screen and (min-width: 769px) {
  .mob-top-section {
    display: none;
  }
}
/* hero section */
.hero-container {
  padding: 0 1rem;
  margin: 0 auto;
}
.hero-section {
  position: relative;
  padding: 60px 0;
  z-index: 0;
}
.hero-top-text {
  display: none;
  max-width: 636px;
  margin: 0 auto;
  font-size: 12px;
  color: #9da9b4;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.text-section {
  display: none;
  border-right: 1px solid #cdd6dc;
}

.title {
  font-size: 25px;
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.mobile .title {
  display: block;
}

.button {
  background-color: var(--btn-color);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 10px 40px;
  border: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  min-height: 90px;
}

.button img,
.sticky-btn img {
  width: 50px;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #686868;
  max-width: 260px;
  margin: 0 auto;
  margin-top: 16px;
}

.status img {
  margin-right: 5px;
}
.hero-bg {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-height: 239px;
  z-index: -1;
}
.hero-bg-left {
  left: 0;
}
.hero-bg-right {
  right: 0;
}

/* featured section */
.feature-section {
  border: 1px solid #d7e2eb;
  background-color: #f6f6f6;
  padding: 30px 0;
}
.feature-container {
  display: flex;
  min-height: 145px;
  margin: auto;
  overflow-x: auto;
}

.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 171px;
  width: 100%;
  border-left: 1px solid #e1e8ef;
  padding: 0 15px;
}

.feature:first-child {
  border-left: none;
}

.feature img {
  max-height: 50px;
  margin-bottom: 15px;
}

.feature-title {
  color: #58646d;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}

.feature-subtitle {
  color: #58646d;
  font-size: 13px;
  text-align: center;
}

/* steps section */
.steps-section {
  padding: 36px 0;
}
.steps-border-wrapper {
  border-bottom: 1px solid #e8eaec;
  padding-bottom: 45px;
  max-width: 770px;
  margin: 0 auto;
}
.stepsTitle {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.steps-wrapper .step {
  display: flex;
  align-items: center;
  color: #78848e;
  font-size: 15px;
  margin-bottom: 0;
}
.steps-wrapper .step-nr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #e8e8e8;
  border-radius: 999px;
  color: #9c9c9c;
  font-weight: 700;
  margin-right: 10px;
}
.step-splitter {
  width: 38px;
  height: 1px;
  background-color: #e8e8e8;
  margin: 0 20px;
  position: relative;
}

/* modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 632px;
  overflow: hidden;
}

.form-modal {
  display: flex;
  flex-direction: row;
}

.modal-left {
  background-color: #17556b;
  color: #fff;
  min-width: 300px;
}

.form-left-header {
  text-align: center;
  padding: 30px 24px 20px;
}

.form-left-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-left-header h4 {
  font-size: 18px;
  font-weight: normal;
  color: #bfdbe5;
}

.steps {
  padding: 0 24px 20px;
}

.steps .step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.steps .nr {
  width: 28px;
  height: 28px;
  background-color: #24728e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.steps .nr.active {
  background-color: #fff;
  color: #17556b;
}

.steps .text {
  color: #bfdbe5;
  font-size: 14px;
  line-height: 1.4;
}

.steps .text.active {
  color: #fff;
  font-size: 16px;
}

.modal-right {
  flex: 1;
  padding: 30px 24px 20px;
  background-color: #fff;
}

.show-for-medium-up {
  display: block;
  font-size: 20px;
  color: #17556b;
  margin-bottom: 20px;
  text-align: center;
}

.form-fields {
  max-width: 400px;
  margin: 0 auto;
}

.mail .input {
  position: relative;
  margin-bottom: 15px;
}

.mail .input input {
  width: 100%;
  padding: 15px 40px 15px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.mail .input img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.btn-submit {
  background-color: #18a103;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.terms {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .modal-content {
    width: 95%;
    max-width: 400px;
  }
  
  .form-modal {
    flex-direction: column;
  }
  
  .modal-left {
    min-width: auto;
    padding: 20px;
  }
  
  .form-left-header {
    padding: 0;
    margin-bottom: 20px;
  }
  
  .form-left-header h3 {
    font-size: 20px;
  }
  
  .form-left-header h4 {
    font-size: 16px;
  }
  
  .steps {
    padding: 0;
  }
  
  .modal-right {
    padding: 20px;
  }
}

@media screen and (min-width: 768px) {
  .hero-container {
    max-width: 650px;
  }
  .hero-section {
    padding: 19px 0 140px 0;
  }
  .hero-top-text {
    display: block;
  }
  .hero-wrapper {
    padding-top: 130px;
    grid-template-columns: 1fr 1fr;
  }
  .text-section {
    display: block;
  }
  .title {
    font-size: 36px;
  }
  .mobile.title {
    display: none;
  }
  .steps-section {
    display: block;
  }
  .begin-section {
    padding: 72px 0;
  }
  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: 1024px) {
  .hero-bg {
    display: block;
  }
}

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

/* footer styles */
.footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #696969;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 15px;
        margin-top: 20px;
    }
}

/* footer */
footer {
  padding: 25px 0;
}
.footer-wrapper {
  max-width: 666px;
  margin: 0 auto;
}
.footer-wrapper p {
  color: #9c9c9c;
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
.privacy-policy {
  text-align: center;
  margin-top: 18px;
}
.privacy-policy a {
  color: black;
  text-decoration: underline;
  font-size: 12px;
  transition: 0.3s ease-in-out;
}
.privacy-policy a:hover {
  opacity: 0.8;
}
