@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}

header {
 display: flex;
  justify-content: center;
  align-items: end;
  height: 108px;
  
}
header img {
 
  height: 28px; /* Set a fixed height for the image */
  width: auto; /* Maintain aspect ratio */
}
.hero {
 position: relative;
  display: flex;
  justify-content: center;
  margin: 40px 0px;
}
.hero .img1{
  position: absolute;
  left: -24px;
}
.hero .img2{
  position: absolute;
  right: -24px;
}
.hero h1 {
  color: #28283d;
  font-size: 64px;
  line-height: 1;
  font-weight: 2000;
}
.hero p {
  color: #87879d;
  font-size: 18px;
}
.hero-middle {
  text-align: center;
  display: flex;

  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-middle {
    margin-top: 340px;
  }
}

.middle-contect {
  display: grid;
  gap: 18px;
}
.button-groub {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.button1 {
  background-color: #4d96a9;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 29px;
  border: none;
  cursor: pointer;
}
.button2 {
  background-color: #855fb1;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 29px;
  border: none;
  cursor: pointer;
}
.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 130px;
  margin: 80px 0px;
}

.line {
  width: 1px;
  height: 60px;
  flex-grow: 1;
  background-color: #d1d1df;
}

.circle {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid #d1d1df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b8f;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  z-index: 1;
}
.feature-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.image-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allows images to wrap onto the next line on smaller screens */
}

.image-group img {
  width: 100%; /* Makes the image take up 100% of the available space */
  max-width: 250px; /* Ensures the image doesn't get bigger than 250px */
  height: auto; /* Maintains aspect ratio */
  border-radius: 10px;
  margin: 40px 0;
}

.feature-section h2 {
  color: #4d96a9;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}
.feature-section h1 {
  color: #28283d;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  line-height: 1;
}
.feature-section p {
  text-align: center;
  color: #87879d;
  font-size: 18px;
  max-width: 500px;
  font-weight: 500;
}
.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 150px;
  height: 300px;
  position: relative;
  background-image: linear-gradient(
      rgba(77, 151, 169, 0.882),
      rgba(77, 150, 169, 0.882)
    ),
    url("./assets/desktop/image-footer.jpg");
  background-size: cover;
  color: white;
}
.footer .step-container {
  position: absolute;
  top: -178px; /* Adjust to move half out */
  left: 50%;
  transform: translateX(-50%);
}
.footer h1 {
  font-size: 40px;
  font-weight: 900;
}
.footer p {
  max-width: 340px;
  font-size: 18px;
  font-weight: 400;
}
.footer button {
  background-color: #855fb1;
}

