:root {
  --color-black: #000;
  --color-white: #fff;
  --color-primary: var(--color-black);
  --color-secondary: var(--color-white);
}

@font-face {
  font-family: "BagossExtended-Regular";
  src: url("../fonts/BagossExtended-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

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

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-secondary);
  font-family: "BagossExtended-Regular", sans-serif;
  height: 100%;
  margin: 0;
  color: var(--color-primary);
}

.rows {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 1.6875rem;
  padding-bottom: 2.4375rem;
}

@media (min-width: 64rem) {
  .rows {
    padding-top: 3.4375rem;
    padding-bottom: 4.5rem;
  }
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 0.3125rem;
}

@media (min-width: 64rem) {
  .wrapper {
    grid-template-columns: repeat(20, 1fr);
    grid-gap: 0.625rem;
  }
}

.inner {
  width: 100%;
  margin: 0 auto;
  grid-column-start: 2;
  grid-column-end: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3125rem;
}

@media (min-width: 64rem) {
  .inner {
    grid-column-end: 20;
    grid-gap: 0.625rem;
    grid-template-columns: repeat(18, 1fr);
  }
}

@media (min-width: 64rem) {
  .wrapperOpeningMobile,
  .wrapperAddressMobile {
    display: none;
  }
}

.wrapperAddressDesktop {
  display: none;
}

@media (min-width: 64rem) {
  .wrapperAddressDesktop {
    display: grid;
  }
}

.opening,
.header,
.claim,
.address {
  grid-column-start: 1;
  grid-column-end: 3;
  width: 100%;
}

@media (min-width: 64rem) {
  .header {
    grid-column-end: 19;
  }
}

@media (min-width: 64rem) {
  .claim {
    grid-column-end: 19;
  }
}

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

@media (min-width: 64rem) {
  .logo {
    width: 11.25rem;
    height: auto;
  }
}

.button {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 0.9375rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  white-space: nowrap;
}

@media (min-width: 64rem) {
  .button {
    font-size: 1.25rem;
    padding: 1.5rem 2rem;
  }
}

.button:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.button div {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

h1 {
  font-size: 3.4375rem;
  line-height: 3.4375rem;
  letter-spacing: 0.01em;
  font-weight: normal;
  margin: 0;
}

@media (min-width: 64rem) {
  h1 {
    font-size: 7.5rem;
    line-height: 7.5rem;
  }
}

@media (min-width: 120rem) {
  h1 {
    font-size: 10rem;
    line-height: 10rem;
  }
}

h2,
p {
  font-size: 1.5625rem;
  line-height: 1.5625rem;
  letter-spacing: 0.02em;
  font-weight: normal;
  margin: 0;
}

@media (min-width: 64rem) {
  h2,
  p {
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: 0.01em;
  }
}

a {
  color: var(--color-primary);
}

.flex-small {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
}

@media (min-width: 64rem) {
  .flex {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
    grid-column-start: 1;
    grid-column-end: 19;
  }
}

.flex .opening,
.flex .address {
  width: auto;
}

.opening .flex-small {
  max-width: 12rem;
  width: 100%;
}

.opening-small h2 {
  margin-bottom: 0.5rem;
}
.opening .flex-small:last-child {
  margin-bottom: 1rem;
}

.flex .opening {
  flex-grow: 0;
  padding-left: 2rem;
  max-width: 20rem;
  width: 100%;
}

.flex .address {
  flex-shrink: 1;
}
