* {
  font-family: "inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}

header {
  padding-bottom: 64px;
}
header .navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 258px;
  width: 100%;
  isolation: isolate;
}
header .navbar .nav_contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: white;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
header .navbar .nav_logo {
  background: black;
  width: 187px;
  height: 65px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}
header .navbar .nav_links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0 30px 0 0;
  gap: 10px;
  flex: none;
  order: 1;
  flex-grow: 0;
}
header .navbar .nav_links .active {
  color: #0592CD;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}
header .navbar a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
}
header .navbar a:hover {
  color: #0592CD;
}
header .hero {
  background: linear-gradient(0deg, rgba(0, 100, 143, 0.4), rgba(0, 100, 143, 0.4)), url("/IMAGES/pool-1.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: 886px;
}
header .hero .welcome {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  width: 100%;
  height: 100%;
}
header .hero .welcome h2 {
  color: white;
  text-align: center;
  font-size: 38px;
  line-height: 46px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 30px;
  gap: 30px;
}/*# sourceMappingURL=index.css.map */