* {
  padding: 0;
  margin: 0;
  font-family: 'titillium_webregular';
  transition: all .2s;
}
a {
  color: #ec8f24;
}
a:hover {
  cursor: pointer;
}
ol {
  margin-left: 1rem;
}
h1 {
  font-family: 'titillium_webbold';
  letter-spacing: 0.1rem;
  font-size: 2.7rem;
}
p {
  font-family: 'titillium_weblight';
}
.click {
  cursor: pointer;
}
.page {
  width: 100%;
  height: auto;
}
.fixed-image {
  max-width: 100%;
  transition: none;
}
select {
  border-radius: 5px;
  padding: 0.2rem;
  border: 2px solid lightgrey;
}
.align-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.arrow {
  border: solid grey;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@media (max-width: 1240px) {
  .click:focus {
    outline: none;
  }
}