@import url(font.css) screen;

:root {
  --dark: #27272b;
  --light_grey: #f5f5f5;
  --white: #ffffff;
}

body {
  font-family: "Noto Sans Regular", Arial, sans-serif;
  font-size: 16px;
  color: var(--dark);
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: "Fixture Expanded Bold", "Arial Black", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 60px;
  color: #27272b;
  letter-spacing: -2px;
  text-align: center;
  line-height: 56px;
  margin-bottom: 40px;
  max-width: 614px;
}

h1.bottom-small {
  margin-bottom: 10px;
}

p {
  margin: 24px 0;
  max-width: 410px;
  padding: 0 20px;
}

p.shared-preset {
  font-family: "Noto Sans Semibold", Arial, sans-serif;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 16px;
}

p.name {
  margin-bottom: 16px;
}

p.download-text {
  margin-bottom: 40px;
}

a.button {
  font-family: "Noto Sans Bold", "Arial Bold", sans-serif;
  background-color: transparent;
  border: 3px solid #ffffff;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  line-height: 1;
  min-width: 175px;
  padding: 20px 60px 20px 20px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.222s, color 0.222s, border-color 0.222s;
  text-align: left;
  color: var(--white);
}

a.button:after {
  content: " ";
  background-image: url(../images/arrow_right.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 19px;
  height: 8px;
  line-height: 24px;
  position: absolute;
  right: 16px;
  top: 22px;
}

a.button:hover {
  background-color: #ffffff;
  color: var(--dark);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img.logo {
  margin-top: 100px;
  display: block;
}

.eq-preset-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /*padding-top: 100px;*/
}

.eq-preset-bg {
  max-width: 343px;
  max-height: 148px;
}

.eq-preset-svg {
  background: var(--light_grey);
  background-image: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  /* border: 2px solid rgba(151,151,151,0.30); */
  border-radius: 4px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hide {
  display: none !important;
}

.show {
  display: block;
}

.download {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  background-color: var(--white);
  padding-bottom: 60px;
}

.download a {
  padding: 0 12px;
  transition: opacity 0.222s;
}

.download a:hover {
  opacity: 0.5;
}

#dark {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 120px 0;
  background: var(--dark);
}

#dark h1 {
  color: var(--white);
}

#dark p {
  color: var(--white);
  margin-bottom: 40px;
  margin-top: -8px;
}

#dark p a {
  color: var(--white);
  transition: opacity 0.222s, color 0.222s;
}

#dark p a:hover {
  opacity: 0.6;
}

.preset-image {
  height: 400px;
  width: 500px;
  display: block;
}

.divider {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
