html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

body a {
  text-decoration: none;
  color: #2B3974;
  font-weight: 500;
}

body main {
  width: 100%;
  height: 100%;
}

body main section {
  width: 100%;
}

body main wrap {
  display: block;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

body main section.header {
  position: sticky;
  top: 0;
  background: #ffffff;
}

body main section.header wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.75rem;
}

body main section.header img.logo {
  width: 7.75rem;
}

body main section.fold {
  height: calc(100% - 4.75rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body main section.fold h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.75rem;
  margin-bottom: 0;
}

body main section.fold h1 em {
  color: #d4af37;
  font-style: normal;
}

body main section.fold p {
  font-size: 1.25rem;
}

body main section.fold carousel {
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}

body main section.fold carousel img {
  max-width: 10rem;
  max-height: 10rem;
}

body main .cta {
  margin-top: 2.5rem;
}

body main .cta button {
  border: none;
  background: #2B3974;
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

body main features {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e6f0fa;
  border: 8px solid #d4af37;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  margin-top: 1rem;
}

@media screen and (max-width: 1000px) and (orientation: landscape) {
  body main features {
    margin-top: 10rem;
  }
}

body main features h2 {
  margin-bottom: 0;
  font-size: 2.25rem;
  text-align: center;
}

body main features ul {
  box-sizing: border-box;
  padding: 0 1rem 2.5rem 1rem;
  margin-left: 2rem;
}

body main section.countdown {
  text-align: center;
  margin-top: 6rem;
}

body main section.countdown em {
  text-align: center;
  font-style: normal;
  color: #d4af37;
}

body main section.countdown countdown {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
}

body main section.countdown countdown box {
  border: 1px solid #333333;
  border-radius: 0.25rem;
  width: 6.375rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
}

body main section.countdown countdown box div:first-child {
  font-size: 3rem;
  font-weight: 700;
  color: #333333;
}

body main section.countdown countdown box div:last-child {
  font-size: 1rem;
  color: #ffffff;
  background: #333333;
}

body main section.simple-exclusive-sealed {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e6f0fa;
  padding: 2rem 0;
  margin-top: 5rem;
}

body main section.simple-exclusive-sealed wrap {
  display: flex;
  flex-direction: column;
}

body main section.simple-exclusive-sealed h2 {
  text-align: center;
}

body main section.simple-exclusive-sealed ul {
  list-style-type: none;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: auto;
}

body main section.simple-exclusive-sealed ul li {
  display: flex;
  align-items: center;
}

body main section.simple-exclusive-sealed ul li svg {
  margin-right: 0.5rem;
  width: 1.5rem;
}

body main section.footer {
  padding: 3rem 0;
  text-align: center;
  font-size: 1.25rem;
}