@charset "UTF-8";

/* reset */
* {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}
li {
  list-style: none;
}
img {
  vertical-align: bottom;
}
/* html */
body {
  background-color: #285799;
}
/* header */
.header {
background: url(../img/hero.webp) no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 90px;
}
.title {
  background-color: rgba(30, 30, 30, 0.5);
  text-align: center;
  padding: 40px 60px;
  color: #fff;
}
h1 {
  margin-bottom: 12px;
  font-size: 48px;
  font-weight: 700;
}
.title p {
  font-size: 18px;
  font-weight: 500;
}
/* main */
.main > p {
  text-align: center;
  font-size: 24px;
  margin-bottom: 90px;
  line-height: 1.4;
  color: #fff;
}
.container {
  width: 940px;
  margin: 0 auto 90px;
  text-align: center;
}
h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 32px;
  color: #fff;
}
.container ul {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.container li {
  background-color: #b3e1fd;
  padding: 20px;
  box-shadow: 4px 4px 0 #fff;
}
h3 {
  font-size: 26px;
  margin-bottom: 20px;
  padding: 8px 24px;
  background-color: #f8736b;
  color: #fff;
}
.container li p {
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}
/* footer */
.footer {
  background-color: #152d4e;
  color: #fff;
}
.footer p {
  text-align: center;
  padding: 60px 0;
}