.footer__nav {
  padding: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  flex-wrap: wrap;
}
.footer__nav li {
  margin: 5px;
}
.footer__nav a {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.footer__wrap {
  padding: 15px 0 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .footer__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 15px 0;
  }
}
.footer__logo {
  max-width: 100%;
  height: 45px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 576px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}
@media (max-width: 990px) {
  .footer__text {
    text-align: center;
  }
}

.modal-bg {
  opacity: 0.6;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  background: #000;
  visibility: hidden;
}

.modal-game {
  position: fixed;
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 15px 15px 15px;
  border-radius: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 9999;
  height: 350px;
  visibility: hidden;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 990px) {
  .modal-game {
    max-width: 900px;
    height: 370px;
  }
}
.modal-game__close {
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
}
.modal-game__wrap {
  display: flex;
}
.modal-game iframe {
  width: 100%;
  box-sizing: border-box;
  height: 290px;
  object-fit: cover;
}

.modal-active {
  visibility: visible;
}

.btn-up {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  background: #cf222d;
}

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