@import url("https://fonts.googleapis.com/css2?family=Finlandica:wght@400;500;700&display=swap");
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

.hidden {
  display: none !important;
}

body {
  height: 100vh;
  font-family: "Finlandica", sans-serif;
  font-size: 16px;
}
body > div {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
body > div > header {
  flex: 0 0 8rem;
}
body > div > main {
  flex: 1 1 auto;
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem 0;
}
@media only screen and (min-width: 1024px) {
  body > div > main {
    padding: 1rem 5rem;
  }
}
body > div > footer {
  display: flex;
  flex: 0 0 8rem;
  align-items: center;
  justify-content: center;
}

.flex-container {
  display: flex;
}
.flex-container.flex-wrap {
  flex-wrap: wrap;
}
.flex-container.flex-column {
  flex-direction: column;
}
.flex-container.flex-column.center-x {
  align-items: center;
  justify-content: flex-start;
}
.flex-container.center-x-y {
  align-items: center;
  justify-content: center;
}
.flex-container.center-x {
  justify-content: center;
}
.flex-container .flex-item {
  flex: 1 1 auto;
}
.flex-container .flex-item.flex-percent-25 {
  flex-basis: 236px;
}

header {
  display: block;
  padding: 1rem 0;
}
@media only screen and (min-width: 1024px) {
  header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header > * {
  flex: 1 1 33%;
}
header .logo img {
  width: 150px;
  height: 150px;
}

nav ul {
  display: none;
}

.cases .flex-item {
  margin: 3rem;
}
.cases figure {
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
}
.cases figure figcaption {
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem 0 0.3rem;
}
.cases figure figcaption span {
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.cases img {
  max-width: 236px;
  width: 100%;
  border-radius: 20px;
}
.cases .price {
  display: flex;
  flex: 0 0 auto;
  font-size: 3rem;
  font-weight: bold;
  transform: translateX(-0.6rem);
}
.cases .currency-type {
  font-size: 1.6rem;
  display: inline-block;
  padding: 0.5rem 0.2rem;
}
.cases .buy-me-container {
  width: 100%;
  max-width: 236px;
  padding: 1.25rem 0;
}
.cases button {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #777;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
}
.cases button:hover {
  background: #eee;
}
.cases form {
  width: 100%;
}
.cases form table {
  width: 100%;
}
.cases form table input {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.25rem;
  font-size: 1rem;
  border: 1px solid grey;
  border-radius: 4px;
}
.cases form .button-container {
  justify-content: space-between;
}
.cases form .button-container button {
  margin: 0 0.7rem 0 0;
  padding: 0 0.7rem;
  border: 0;
  font-size: 0.9rem;
}