* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0f1f3;
  color: #435283;
}

#main {
  min-height: 100vh;
  font-family: minion-pro, serif;
  font-weight: 500;
  font-style: normal;
  padding: 5rem 0;
  margin: auto;
}
#main.main--hero {
  width: 90%;
  max-width: 120rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#main.main--content {
  width: 60%;
  max-width: 80rem;
}
#main.main--content > * {
  margin-bottom: 2rem;
}
#main.main--content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  #main.main--content {
    width: 90%;
  }
}
@media (max-width: 900px) {
  #main {
    padding: 0;
  }
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .navbar {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    display: block;
  }
  .navbar > * {
    display: inline-block;
  }
  .navbar .title::after {
    content: "|";
    padding: 0 0.2rem;
    margin: 0 0.2rem;
  }
}
.navbar .title {
  font-weight: 600;
}
.navbar .links > * {
  display: inline-block;
}
.navbar .links > *::after {
  content: "|";
  padding: 0 0.2rem;
  margin: 0 0.2rem;
}
.navbar .links > *:last-child::after {
  content: "";
  margin: 0;
  padding: 0;
}
.navbar a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.navbar a:hover {
  text-decoration: underline;
}

.content > *, .hero > * {
  margin-bottom: 1rem;
}
.content > *:last-child, .hero > *:last-child {
  margin-bottom: 0;
}
.content .mail, .hero .mail {
  padding-left: 1rem;
  border-left: 0.2rem solid #435283;
}
.content .mail a, .hero .mail a {
  color: #435283;
}
.content .indent, .hero .indent {
  padding-left: 1rem;
  color: #435283;
  border-left: 0.2rem solid #435283;
}
.content span, .hero span {
  font-weight: 600;
  text-decoration: underline;
  color: #435283;
}
.content a, .hero a {
  text-decoration: none;
  color: inherit;
}
.content a:hover, .hero a:hover {
  text-decoration: underline;
}
.content hr, .hero hr {
  border: 0;
  border-top: 0.1rem solid #435283;
}

.hero h1 {
  font-size: 4rem;
}
.hero p {
  font-size: 2.5rem;
}
@media (max-width: 900px) {
  .hero {
    margin-bottom: 3rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.6rem;
  }
}

.content {
  margin-top: 5rem;
}
.content h1 {
  font-size: 4rem;
}
.content p.subtitle {
  font-size: 2.5rem;
  color: #435283;
}
.content p.subsubtitle, .content h3 {
  font-size: 1.8rem;
}
.content p {
  font-size: 1.2rem;
  color: #3f3f3f;
}
.content .services-list {
  display: grid;
  gap: 2rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.content .services-list span {
  display: block;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 0.1rem solid #435283;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  color: #435283;
}
@media (max-width: 900px) {
  .content .services-list {
    display: block;
  }
  .content .services-list > * {
    margin-bottom: 2rem;
  }
}
@media (max-width: 900px) {
  .content {
    margin-top: 3rem;
    padding-bottom: 3rem;
  }
  .content h1 {
    font-size: 3rem;
  }
  .content p.subtitle {
    font-size: 2rem;
    color: #435283;
  }
  .content p.subsubtitle, .content h3 {
    font-size: 1.4rem;
  }
}