* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body {
  background-color: #ffffff;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 10rem;
}

.hero-image img {
  width: 500px;
}

.content h3 {
  font-size: 2rem;
  margin: 1rem;
}
.content p {
  margin: 1rem;
}

h1 {
  text-align: center;
}

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

.steps-section .cards {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-section .cards .steps {
  background: #ffffff;
  width: 250px;
  padding: 1rem;
  margin: 1rem;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 10px 23px #e2e1e1, 0 0px 15px #d5d4d4;
  &:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }
}

.steps-section .cards .steps .step-one {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(226, 223, 223);
  border-radius: 1rem;
  padding: 0.5rem;
  margin: 0 1rem;
}

.steps .active {
  background-color: #000;
  color: #fff;
  margin: 0 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 14px;
  padding-top: 0.3rem;
  border-radius: 50%;
}

.steps .sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  margin: 0.5rem 0;
}
.steps .sign-up i {
  margin-right: 1rem;
}
.steps .sign-up p {
  margin-right: 1rem;
}

.steps .card-content {
  margin: 0 0.5rem;
  text-align: center;
  font-size: 14px;
}

.steps-section .right-arrow {
  color: #fff;
  background-color: #000;
  width: 3rem;
  height: 3rem;
  margin: 0rem 1.5rem;
  padding-top: 1rem;
  padding-left: 1rem;
  position: relative;
  top: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.main {
  background: #0000000d;
  margin: 0 5rem;
  margin-top: 4rem;
  border-radius: 10px;
  margin-bottom: 5rem;
}

.main .explore {
  padding: 1rem;
}

.main .btn {
  position: absolute;
  right: 10rem;
  margin-top: 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  background-color: #fff;
  transition: 0.3s;

  &:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }
}

.main .btn a {
  text-decoration: none;
  color: #000;
}

.explore-section {
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.card-heading h4 {
  text-align: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.explore-section .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 250px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5rem;
  cursor: pointer;
  box-shadow: 0 10px 23px #e2e1e1, 0 0px 15px #d5d4d4;

  transition: 0.3s;

  &:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }
}
.explore-section .card img {
  width: 250px;
  object-fit: cover;
}

.explore-section .card .card-heading {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 1rem 0;
}

.explore-section .card .card-text {
  font-size: 12px;
  padding: 1.5rem 1rem;
  padding-top: 0;
}

@media screen and (max-width: 1024px) {
  .hero-section {
    display: block;
    align-items: center;
    margin: 2rem 1rem;
  }

  .hero-image img {
    width: 100%;
    margin-top: 1rem;
  }

  .steps-section .right-arrow {
    display: none;
  }

  .main {
    background: #0000000d;
    margin: 2rem 1rem;
  }

  .explore-section {
    padding-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    margin-left: 3rem;
    gap: 2rem;
  }

  .explore-section .card {
    display: block;
  }

  /* .card-heading h4{
    margin-left: -3rem;
  } */
}

@media screen and (max-width: 576px) {
  .hero-section {
    display: block;
    align-items: center;
    margin: 2rem 1rem;
  }

  .hero-image img {
    width: 100%;
    margin-top: 1rem;
  }

  .steps-section{
    display: block;
  }

  .steps-section .right-arrow {
    display: block;
    position: relative;
    left:9rem;
    transform: rotate(90deg);
  }

  .main {
    background: #0000000d;
  }

  .explore-section {
    padding-bottom: 5rem;
    display: block;
  }

  .card-heading h4 {
    margin-left: -3rem;
  }
}
