@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #000000;
}

::-webkit-scrollbar-thumb {
  background: #00368c;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
}
header .top {
  display: flex;
  justify-content: flex-end; /* Changed 'end' to 'flex-end' */
  align-items: center;
  background-color: #001941;
  padding: 10px 10px;
}

header .top a {
  margin: 0 5px;
  text-decoration: none;
  color: white;
  white-space: nowrap; /* Prevent text from wrapping to multiple lines */
  font-size: 15px; /* Adjust the font size as needed */
}

header .top a i {
  margin-right: 5px;
}
header .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 1px 10px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}
header .bottom img {
  height: 90px;
}
header .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
header .bottom ul a {
  text-decoration: none;
  color: black;
  margin: 0 15px;
  font-weight: 700;
}
header .bottom ul a:hover {
  color: #00368c;
}

.intro {
  position: relative;
  background-image: url("assets/evanston.jpg");
  background-size: cover;
  height: 90vh;
  background-position: center;
  background-repeat: none;
  background-attachment: fixed;
}
.intro div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.intro div h1 {
  color: white;
  font-size: 50px;
  text-align: center;
  width: 80%;
  font-family: "Bebas Neue", sans-serif;
}
.intro div a {
  text-decoration: none;
  color: white;
  background-color: #00368c;
  padding: 10px 50px;
  border-radius: 5px;
  font-weight: 700;
  margin-top: 20px;
  font-size: 20px;
  transition: all 1s ease;
}
.intro div a:hover {
  background-color: white;
  color: #00368c;
  border: 1px solid #00368c;
}

.howWorks {
  padding: 10%;
}
.howWorks h5 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}
.howWorks h2 {
  text-align: center;
  color: #00368c;
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
}
.howWorks .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 5% 0;
}
.howWorks .steps div {
  text-align: center;
}
.howWorks .steps div img {
  width: 70px;
  margin: 10px 0;
}
.howWorks .steps div h3 {
  color: #00368c;
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
}
.howWorks .steps div p {
  font-weight: 500;
}

.whyUs {
  background-image: url("assets/house.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.whyUs .container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10% 0;
}
.whyUs h2 {
  text-align: center;
  color: #2d70db;
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 40px;
}
.whyUs h3 {
  color: white;
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
}
.whyUs p {
  font-weight: 500;
  margin: 10px 0 20px 0;
  color: white;
}
.whyUs .features {
  width: 70%;
  margin: auto;
}

#contact {
  background-color: black;
  padding: 10% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#contact img {
  height: 100px;
  margin: auto;
}
#contact h2 {
  text-align: center;
  color: white;
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 40px;
}
#contact .contact {
  width: 70%;
  margin: auto;
  font-size: 20px;
  text-align: center;
  color: white;
}
#contact .contact a {
  color: white;
  text-decoration: none;
}

footer {
  background-color: #001941;
  color: white;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .howWorks .steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  header .top {
    justify-content: center;
  }
  header .bottom {
    padding: 0 5%;
  }
  header .bottom img {
    height: 75px;
  }
  header .bottom ul {
    display: none;
  }
  #contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #contact img {
    width: 80%;
  }
  .contact {
    margin-bottom: 40px !important;
  }
  .topBar {
    justify-content: center;
  }
  .intro {
    background-size: cover;
    background-position: center;
    background-attachment: scroll !important;
  }
  .whyUs {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll !important;
  }
}/*# sourceMappingURL=styles.css.map */