*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
  height: 100%;
  width: 100%;
}

button {
  cursor: pointer;
}

span {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

a {
  text-decoration: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type="search"]::-ms-clear {
  display: none;
}

.page {
  flex: 1 1 auto;
  margin-top: 4.3vw;

  @media (max-width: 767px) {
    margin-top: 17vw;
  }
}

html,
body {
  height: 100%;
  line-height: 1;
  background-color: var(--white);
  color: var(--black);

  font-family: "Open Sans";
  font-size: 0.5208335vw;
  box-sizing: border-box;

  @media (max-width: 768px) {
    font-size: 1.5625vw;
    font-size: calc((100 / 375) * 10vw);
  }
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

._container {
  padding: 18rem 16rem 0;
  position: relative;

  @media (max-width: 767px) {
    padding: 10rem 1.6rem 0;
  }
}
