html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color);
  background-color: var(--bg-color);
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  padding: 0.5rem;
}

.pe-red {
  color: var(--pm-color);
}

.pe-input {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 0;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;

  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
}

.pe-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 2rem;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  cursor: pointer;
}
.pe-button .material-icons-round {
  vertical-align: middle;
  color: inherit;
}
.pe-button--fill {
  background: var(--pm-color);
  color: var(--white);
}

.pe-button--stroke {
  background: none;
  color: var(--pm-color);
  border: 1px solid var(--pm-color);
}

.pe-button--icon {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background: none;
  fill: currentColor;
}

.pe-button-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pe-button-group .pe-button {
  margin: 0.5rem;
}

.pe-round {
  border-radius: 8px;
}

.pe-h1 {
  line-height: 1.1em;
  font-size: 3rem;
  margin-bottom: 2rem;
}

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

.pe-text {
  line-height: 1.75;
}

.pe-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pe-header {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pe-main {
  flex: auto;
}

.pe-section {
  margin-bottom: 2rem;
}

.pe-section--center {
  width: 960px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pe-footer {
  flex: none;
  font-size: 0.75rem;
}

.pe-header,
.pe-section,
.pe-footer {
  padding: 1rem 2rem;
}

.pe-ani {
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.pe-ani--fadein {
  animation-name: fadein;
}

.pe-ani--fadeout {
  animation-name: fadeout;
}

.pe-hidden {
  display: none;
}

.pe-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0px 8px 10px -5px rgb(0 0 0 / 5%),
    0px 16px 24px 2px rgb(0 0 0 / 7%), 0px 6px 30px 5px rgb(0 0 0 / 6%);
}

@keyframes fadeout {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

/* intro */

.pe-logo {
  width: 200px;
  height: auto;
}

.pe-intro {
  display: flex;
}

.pe-intro__text {
  flex: auto;
}

.pe-intro__cta {
  flex: none;
  padding: 2rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 840px) {
  .pe-h1 {
    font-size: 2rem;
  }
  .pe-intro {
    flex-wrap: wrap;
  }
  .pe-intro__cta {
    padding: 0;
    text-align: center;
    width: 100%;
  }
}

:root {
  --color: #031b30;
  --bg-color: #fffef7;
  --pm-color: #a93e37;
  --border-color: #faf0f0;
  --white: #fff;
  --video-height: 80vh;
  --video-aspect-ratio: calc(9 / 16);
  --time-ratio: 0px;
}
