@font-face {
  font-family: "Inter";
  src: url("Inter.ttf");
}

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

html, body {
  width: 100%;
  background: #fff;
  overflow-wrap: break-word;
}

:root {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 1.4;
  color: #222;
}

h1, h2 {
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

p, ul {
  font-size: 16px;
}

p,
li,
.row.spread .col > :not(.flag) {
  margin-bottom: 0.4rem;
}

ul {
  list-style: none;
}

li::before {
  content: "- ";
}

b {
  font-weight: 600;
}

a {
  color: #222;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #000;
}

section {
  margin-bottom: 1.5rem;
}

img {
  display: block;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.flag {
  height: 1.2rem;
  width: auto;
  align-self: flex-start;
  margin-top: auto;
  border-radius: 0;
  background: none;
}

.row {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  align-items: center;
}

.row.spread {
  column-gap: 1.5rem;
  justify-content: space-between;
  align-items: stretch;
}

.col {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
}

.col.spread {
  row-gap: 1.5rem;
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}

.gallery > .col {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 37rem) {
  .gallery > .col {
    flex-basis: 40%;
  }

  .row.spread {
    row-gap: 1.5rem;
  }

  main {
    padding: 1rem !important;
  }

  main.col.spread {
    row-gap: 1rem;
  }

  section {
    margin-bottom: 0.5rem;
  }
}

.tooltip {
  position: relative;
}

.tooltip .tooltip-img {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 100;
  width: 14rem !important;
}

.tooltip:hover .tooltip-img {
  display: block;
}
