html {
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
}

* {
  box-sizing: border-box;
}

html, body, #wrapper {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  margin: 0;
  padding: 0;
  background: #fafbfc;
}

header {
  width: 100vw;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

header h1 {
  color: #fff;
  z-index: 500;
  font-size: 14px;
  font-weight: 100;
  text-align: center;
  letter-spacing: 2px;
}

header h1 img {
  margin-bottom: 12px;
}

header video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 100;
}

header::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  background-image: url('/images/circle-loop.svg');
  background-position: 0 0;
  z-index: 200;
}

aside, section {
  width: 980px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  color: #333;
}

aside {
  padding: 4px 10px 4px;
  line-height: 2.0;
}

aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

aside ul li {
  margin: 0 auto;
  padding: 12px 0;
  width: 600px;
  max-width: calc(100% - 20px);
}

aside ul li time {
  display: inline-block;
  width: 80px;
}

aside ul li a {
  color: inherit;
}

section h1 {
  font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  letter-spacing: 0px;
}

section p {
  line-height: 2.0;
  font-size: 14px;
}

section iframe {
  margin-top: 16px;
  filter: grayscale(1);
}

section form {
  padding: 16px 0;
}

section form p {
  padding: 0;
  margin: 0;
  line-height: 1.0;
}

section form p + p {
  margin-top: 16px;
}

section form label {
  display: flex;
  align-items: center;
}

section form label span {
  display: flex;
  width: 120px;
}

section form label input[type="text"],
section form label input[type="email"],
section form label select,
section form label textarea {
  display: flex;
  flex: 1;
  padding: 8px 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  border-bottom: solid 1px #CEB58F;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

section form label textarea {
  height: 120px;
}

section form button {
  margin: 0 auto;
  appearance: none;
  -webkit-appearance: none;
  width: 90px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #242424;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 0 0 rgba(0,0,0,0.2);
  transition: box-shadow 0.2s ease-out;
}

section form button:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.section-company dl > div{
  display: flex;
  padding: 16px;
  border-bottom: solid 1px #f1f1f1;
}

.section-company dl dt {
  width: 120px;
  margin: 0;
  padding: 0;
}

.section-company dl dd {
  flex: 1;
  margin: 0;
  padding: 0 0 0 32px;
}

footer {
  padding: 32px 16px;
  text-align: center;
  font-size: 12px;
  color: #CEB58F;
  background: #242424;
}

section dl {
  font-size: 12px;
}

section:last-of-type {
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}

.services {
  list-style: none;
  margin: 64px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}

.services li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #242424;
}

.services li a p {
  font-size: 0.95rem;
}

.services li strong {
  margin: 20px 0 8px;
  font-size: 1.4rem;
}

@media (max-width: 768px) {

  .services {
    margin: 32px 0;
    grid-template-columns: 1fr;
  }
  .services li + li {
    margin-top: 32px;
  }

  .section-company dl dt {
    width: 80px;
    margin: 0;
    padding: 0;
    padding: 0;
  }

  section iframe {
    margin-top: 16px;
    width: 200px;
    height: 150px;
    filter: grayscale(1);
  }

  section form {
    padding: 0;
  }

  section form label {
    display: block;
    width: 100%;
  }

  section form p,
  section form p + p {
    margin-top: 32px;
  }

  section form label input[type="text"],
  section form label input[type="email"],
  section form label textarea,
  section form label select {
    width: 100%;
  }
}
