@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Fira Sans";
  src: url("FiraSans-Bold.ttf");
}
@font-face {
  font-family: "FA";
  src: url("fa-solid-900.ttf");
}
* {
  margin: 0;
}

h1 {
  font-family: "Fira Sans", sans-serif;
}

h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

h2, h3, h4, h5, h6 {
  color: #333;
}

a {
  color: #009ee3;
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}
body .bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body .overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
.container .title {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  max-width: 320px;
}
.container .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  height: 400px;
  border-radius: 5px;
  background-color: #fff;
}
.container .card img {
  height: 120px;
  max-width: 200px;
  margin: 70px 0 60px;
}
.container .card .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
}
.container .oslink {
  margin-top: 30px;
  color: #fff;
  white-space: nowrap;
}

.btn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  border: none;
  outline: none !important;
}
.btn:hover {
  cursor: pointer;
}
.btn.btn-download {
  background-color: #ffc660;
  color: #333;
}
.btn.btn-download:hover {
  background-color: #ffcf7a;
}

.dropdown {
  height: 38px;
}
.dropdown div {
  cursor: pointer;
  height: 18px;
  width: 200px;
  margin-right: 10px;
  padding: 8px;
  font-size: 1rem;
  border-radius: 3px;
  border: 1px solid #e3e5e7;
  background-color: #fff;
}
.dropdown div:after {
  font-family: "FA", sans-serif;
  font-weight: 900;
  content: "\f0d8";
  float: right;
  transition: all 0.15s ease;
}
.dropdown div.rot:after {
  transform: rotate(180deg);
}
.dropdown ol {
  width: calc(100% - 10px);
  position: relative;
  z-index: 4;
  margin-top: 5px;
  padding: 0;
  border-radius: 5px;
  border: 1px solid #e3e5e7;
  background-color: #fff;
  list-style: none;
}
.dropdown ol li {
  cursor: pointer;
  padding: 7px 10px;
}
.dropdown ol li:hover {
  background-color: #e8eaec;
}

.hidden {
  display: none !important;
}

.logo {
  position: fixed;
  z-index: 3;
  left: 20px;
  bottom: 20px;
  width: 75px;
}

@media (max-width: 576px) {
  .container {
    top: 45%;
  }
  .container .card {
    width: 325px;
    height: unset;
    background-color: transparent;
  }
  .container .card img {
    margin: 30px 0;
  }
  .container h1, .container h2, .container h3, .container h4, .container h5, .container h6 {
    color: #fff;
  }
  .container .title {
    max-width: 90%;
    margin-bottom: 0;
  }
  .container .oslink {
    white-space: unset;
    text-align: center;
  }
  .btn {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
  }
  .logo {
    bottom: 40px;
  }
}

/*# sourceMappingURL=download_page.css.map */
