html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/font/OpenSans-Regular.ttf") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/font/OpenSans-Italic.ttf") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/font/OpenSans-Bold.ttf") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("/font/OpenSans-BoldItalic.ttf") format("woff");
}
html {
  font-size: 16px;
}

.swiper {
  width: 80%;
  flex-shrink: 100 !important;
}

.swiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

body {
  background-color: #1c2427;
  color: #d8f7f5;
  font-size: 1.3rem;
  font-family: "Open Sans";
}

h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}

p {
  margin: 10px 0;
}

a {
  color: #d8f7f5;
  text-decoration: none;
  display: block;
}
a:hover {
  color: #fff;
}

.header {
  padding: 1rem;
  text-align: center;
  background-color: #031B17;
  color: #d8f7f5;
}
.header nav li {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 15px;
  cursor: pointer;
}

.hero {
  height: 300px;
  background-image: url("/img/hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content {
  margin-top: -140px;
}
.content .title {
  text-align: center;
  font-size: 3rem;
  padding-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
.content .cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  padding: 20px;
  font-size: 1.1rem;
  color: #031B17;
}
.content .cards .card {
  padding: 20px;
  border-radius: 0.5rem;
  background-color: white;
}

.footer {
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
}
.footer li {
  display: block;
}
.footer .links {
  max-width: 1280px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
.footer .links a {
  padding: 1rem;
  margin: 0 1rem;
}
.footer .links a:hover {
  text-decoration: underline;
}