:root {
  --text-color: #ffffff;
  --link-hover-color: #08bdf2;
  --link-bg-color: #07a8d9;
  --text-other-color: #08bdf2;
  --hero-section-background-color: #252b42;
  --how-it-works-background-color: #252b42;
  --step-h1-color: #44495e;
  --why-us-icons-color: #08bdf2;
  --why-us-text-color: #191d2c;
  --footer-color: #323a59;
}
@media screen and (max-width: 1200px) {
  header {
    padding: 10px 30px !important;
  }
}
@media screen and (max-width: 1000px) {
  .img-container img {
    width: 80% !important;
  }
  .img-container {
    justify-content: center !important;
  }
}
@media screen and (max-width: 900px) {
  .hero-section {
    padding-top: 50px !important;
  }
  .inner-hero-section {
    flex-direction: column !important;
    gap: 120px !important;
  }
  .text--container {
    max-width: 100% !important;
  }
  .hero-img-container {
    width: 100% !important;
  }
  .step1,
  .step2 {
    flex-direction: column !important;
  }
  .inner-text-container {
    width: 100% !important;
  }
  .img-container {
    width: 100% !important;
  }
  .step2 .img-container {
    order: 1;
  }
  .inner-how-it-works {
    padding: 0 30px !important;
  }
  .why-us-group {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important; /* 2 columns per row */
  }
  .inner-why-us {
    padding: 0 30px !important;
  }
}
@media screen and (max-width: 600px) {
  .inner----text h1 {
    font-size: 60px !important;
    text-align: center;
  }
  .inner-how-it-works {
    padding: 0 20px !important;
  }

  .inner----text h2 {
    font-size: 32px !important;
    text-align: center;
  }
  .inner----text ol {
    font-size: 22px !important;
  }
  header img {
    height: 80px !important;
  }
  .text--wrapper h1 {
    font-size: 36px !important;
    margin-bottom: 10px !important;
  }
  .inner-why-us .why-us-heading {
    font-size: 30px !important;
  }
  .inner-how-it-works .how-it-works-heading {
    font-size: 30px !important;
  }
  .inner-group {
    gap: 10px !important;
  }
  header {
    padding: 10px 10px !important;
  }
  #mc_embed_signup {
    max-width: 330px !important;
  }
  .inner-hero-section {
    gap: 30px !important;
  }
  .step1,
  .step2 {
    padding: 25px 0 !important;
  }
}
@media screen and (max-width: 380px) {
  .inner----text h1 {
    font-size: 50px !important;
  }

  .inner----text h2 {
    font-size: 32px !important;
  }
  .inner----text ol {
    font-size: 18px !important;
  }
  .text--wrapper h1 {
    font-size: 30px !important;
    line-height: 1.4 !important;
  }
  .inner-why-us .why-us-heading {
    font-size: 30px !important;
  }
  .why-us {
    padding-top: 0px !important;
  }
  .why-us-group {
    margin-top: 20px !important;
    gap: 40px !important;
  }
  .inner-how-it-works .how-it-works-heading {
    font-size: 30px !important;
  }
  .inner-group {
    gap: 10px !important;
  }

  #mc_embed_signup {
    max-width: 350px !important;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: var(--how-it-works-background-color);
  height: 100%;
}

header {
  background-color: #fff;
  padding: 10px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
}

nav img {
  height: 130px; /* Adjust the height of your logo */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li:first-child {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--link-hover-color); /* Change the color on hover */
}

/* //////////////////////////// */
/* hero section */
.hero-section {
  padding-top: 55px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--hero-section-background-color);
}
.inner-hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 70px;
}
.text--container {
  max-width: 50%;
  margin-bottom: 30px;
  color: #252b42;
}
.text--wrapper {
  border-radius: 30px;
  border: 10px solid var(--text-other-color);
  padding: 20px 10px;
  height: fit-content;
  margin-bottom: 30px;
  background: #fff;
}
.text--wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  margin: 10px 0px 20px 0px;
}
.text--wrapper h1 span {
  background-color: var(--text-other-color);
  color: var(--text-color);
  padding: 0 5px;
  border-radius: 10px;
}
.text--wrapper p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.text--container a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  padding: 15px 40px;
  background-color: var(--link-bg-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}
.text--container a:hover {
  background-color: var(--link-hover-color);
}
.hero-img-container {
  width: 50%;
  padding-bottom: 20px;
}
.hero-img-container img {
  width: 100%;
  animation: moveUpDown 2s ease infinite;
}
/* ////////////////////////// */

.how-it-works {
  background-color: var(--how-it-works-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}

.inner-how-it-works {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
  width: 1200px;
  height: 100%;
  padding: 0 80px;
}
.inner-how-it-works .how-it-works-heading {
  font-size: 36px;
  margin-top: 50px;
  line-height: 1.2;
}
.inner-how-it-works .how-it-works-heading span {
  background-color: var(--text-other-color);
  color: var(--text-color);
  padding: 0 5px;
  border-radius: 10px;
}
.step1,
.step2 {
  width: 100%;
  height: 100%;
  padding: 50px 0;
}

.inner-text-container {
  width: 50%;
}
.step1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
.img-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step1 img {
  width: 75%;
}
.step2 {
  gap: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step1 .img-container {
  justify-content: end;
}
.step2 .img-container {
  justify-content: start;
}
.step2 img {
  width: 75%;
}

.inner-text-container h1 {
  font-size: 86px;
  color: var(--step-h1-color);
  margin: 0;
  margin-bottom: 26px;
}

.inner-text-container h2 {
  font-size: 36px;
  color: var(--text-color);
  margin: 0;
  margin-bottom: 26px;
}

.inner-text-container ol {
  font-size: 26px;
  color: var(--text-color);
  margin: 0;
  margin-bottom: 26px;
}
.inner-text-container ol li:first-child {
  margin-bottom: 15px;
}
/* ///////////////// */

.why-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.why-us-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
  gap: 100px; /* Adjust the gap as needed */
  margin-top: 60px;
}
.inner-why-us .why-us-heading {
  font-size: 36px;
  margin: 50px 0;
  line-height: 1.2;
}
.inner-why-us h1 span {
  background-color: var(--text-other-color);
  color: var(--text-color);
  padding: 0 5px;
  border-radius: 10px;
}
.group-why {
  padding: 20px;
  background-color: #fff;
  color: var(--why-us-text-color);
  border-radius: 15px;
  max-width: 450px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s ease;
}
.group-why:hover {
  transform: translateY(-10px);
}
.group-why p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}
.inner-why-us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
  width: 1200px;
  height: 100%;
  padding: 0 80px;
}
.inner-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.inner-group .icon {
  width: 40px;
  height: 40px;
  padding: 15px;
  border-radius: 50%;
  background-color: var(--why-us-icons-color);
  text-align: center;
}
.svg-icon {
  width: 40px;
  color: var(--text-color);
}

footer {
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  color: var(--text-color);
  background-color: var(--footer-color);
}
footer h4 {
  margin: 0;
  font-weight: 500;
}
.email-div {
  text-align: center;
  color: #252b42;
  background-color: #fff;
  margin: 0;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
