@font-face {
  font-family: "sangbleu_sansmedium";
  src: url("sangbleusans-medium-webfont.woff2") format("woff2"),
    url("sangbleusans-medium-webfont.woff") format("woff"),
    url("sangbleusans-medium-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  border: none;
  font-family: "Open Sans", sans-serif;
}
a {
  text-decoration: none;
}
*:focus {
  outline: 0;
}

body {
  width: 100vw;
  overflow: hidden;
}

#root {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eceae3;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header {
  display: flex;
  justify-content: center;
  height: 12vw;
  max-height: 120px;
  min-height: 64px;
  background-color: rgba(255, 255, 255, 0.21);
}
header img {
  height: 80%;
  max-height: 63px;
  margin: auto;
}

main {
  flex-grow: 1;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
}
main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9% 5% 7%;
  width: 100%;
  margin: auto;
}
@media (max-width: 800px) {
  main > div {
    flex-direction: column;
  }
}

main .item {
  margin: 3% 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 200px;
}
main .item .l1 {
  display: flex;
}
main .item .l1 span {
  font-size: 20px;
  font-weight: 400;
  color: #1c457a;
  /* letter-spacing: 0px; */
}
main .item .l1 div {
  flex-grow: 1;
  height: 1px;
  background-color: #1c457a;
  margin: auto 10% auto 3%;
  transform: translateY(200%);
}
main .item .main {
  font-size: 40px;
  font-weight: 400;
  color: #1c457a;
  margin-bottom: 24px;
  font-family: "sangbleu_sansmedium";
}
main .item a {
  color: #2391c1;
  font-size: 18px;
  font-weight: 700;
}

footer {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
}
footer > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3% 5% 2%;
  width: 100%;
}
footer > div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2%;
  width: 300px;
}
@media (min-width: 801px) {
  footer > div > div:first-child {
    margin-left: 0;
  }
  footer > div > div:last-child {
    margin-right: 0;
  }
}
footer .divider {
  width: 1px;
  height: 100px;
  background-color: rgba(93, 94, 94, 1);
  transform: translateY(10%);
}

footer > div > div > span,
footer > div > div > span > a {
  white-space: nowrap;
  line-height: 31px;
  text-align: left;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(93, 94, 94, 1);
}
footer > div > div > span:first-child {
  font-weight: 600;
}

@media (max-width: 800px) {
  footer > div {
    flex-direction: column;
  }
  footer .divider {
    display: none;
  }
}

footer > div > span {
  background-color: #E2DED2;
  width: 100%;
  line-height: 21px;
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  color: rgba(93,94,94,1);
}
