:root {
  --theme-blue: #008ad8;
  --theme-black: #000;
  --theme-white: #fff;
}

body {
  background-color: var(--theme-white);
}

.downloadspage-hero-title {
  color: var(--theme-black);
  font-weight: 700;
}

.downloadspage-hero-title-active {
  color: var(--theme-blue);
}

.downloadspage-hero-btn {
  display: block;
  background-color: var(--theme-blue);
  border-radius: 12px;
  text-decoration: none;
  color: var(--theme-white);
  width: 240px;
  height: 60px;
  line-height: 60px;
  padding: 0 8px;
  text-align: center;
  font-weight: 500;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.downloadspage-hero-btn .iconify {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
}

.downloadspage-hero-btn:hover {
  background-color: var(--theme-black);
  color: var(--theme-blue);
}

.downloadspage-hero-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.downloadspage-options-item {
  padding: 0 1rem;
  height: 600px;
  background-color: var(--theme-blue);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.downloadspage-options-item-title {
  margin-top: 1rem;
  font-weight: 800;
  color: var(--theme-white);
}

.downloadspage-options-item-btn {
  color: var(--theme-blue);
  background-color: var(--theme-white);
  text-decoration: none;
  display: block;
  width: 100px;
  height: 50px;
  text-align: center;
  font-weight: 700;
  line-height: 50px;
  border-radius: 12px;
  margin-top: 1rem;
  margin-bottom: 5rem;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.downloadspage-options-item-btn:hover {
  opacity: 0.8;
}

.downloadspage-options-item-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 576px) {
  .downloadspage-options-item {
    height: 400px;
  }
  .downloadspage-options-item-img {
    height: 200px;
  }
}
/*# sourceMappingURL=downloads.css.map */