* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  src: url("../font/OpenSansB.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Open Sans";
  src: url("../font/OpenSansR.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../font/OpenSansL.ttf") format("truetype");
  font-weight: light;
}
@font-face {
  font-family: "Oswald";
  src: url("../font/OswaldEL.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Oswald";
  src: url("../font/OswaldL.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Oswald";
  src: url("../font/OswaldR.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Oswald";
  src: url("../font/OswaldB.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/MontserratEL.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/MontserratM.ttf") format("truetype");
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald";
}

body {
  font-family: "Open Sans";
  font-weight: normal;
  width: 100%;
  background: #000;
  overflow-x: hidden;
}
body.no_scroll {
  overflow-y: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

header {
  width: 100vw;
  height: 100px;
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
header .menu {
  display: flex;
  flex-direction: column;
  height: 21px;
  justify-content: space-between;
  cursor: pointer;
}
header .menu div {
  width: 30px;
  height: 5px;
  border: 2px solid #fff;
  border-radius: 4px;
  position: relative;
  z-index: 0;
}
header .menu div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease;
}
header img.lo {
  max-width: 100%;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 0px), -50%);
  opacity: 1;
  transition: all 0.25s ease;
}
header button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
header button img {
  max-width: 50px;
}
header button.log_btn {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  transform: translateX(-100px);
}
header button.acc_btn {
  padding: 15px 0;
  position: absolute;
  right: 30px;
}
header button.acc_btn p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
header a.l {
  text-decoration: none;
  color: #fff;
  transform: translateX(-50px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  opacity: 0;
  transition: all 0.2s ease;
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100px;
  min-height: 10rem;
  background: linear-gradient(180deg, #000 0, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
header.m .menu div::after {
  width: 100%;
}
header.m img.lo {
  transform: translate(calc(-50% + 100px), -50%);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
}
header.m a.l {
  transform: translateX(0px);
}
header.m a.l:nth-of-type(1) {
  opacity: 1;
  pointer-events: initial;
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
}
header.m a.l:nth-of-type(2) {
  opacity: 0.5;
}
header.m a.l::after {
  width: 100%;
}
header.m button.acc_btn {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header.m button.acc_btn p {
  max-width: 50px;
}
header.h button.log_btn {
  pointer-events: initial;
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
  opacity: 1;
  transform: translateX(0);
}
header.h button.acc_btn {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  transform: translateX(100px);
}

.mm {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100vw;
  height: 100vh;
  padding: 0 30px 40px 30px;
  background: #000;
  transform: translateX(-100vw);
  transition: all 0.4s ease;
}
.mm .holder {
  flex: 1;
  padding: 180px 0 20px;
  display: flex;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
.mm .holder ul li {
  max-width: -moz-max-content;
  max-width: max-content;
  list-style: none;
  font-size: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translate(-100px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
.mm .holder ul li:nth-of-type(2) {
  transition-delay: 0.15s;
}
.mm .holder ul li:nth-of-type(3) {
  transition-delay: 0.2s;
}
.mm .holder ul li:nth-of-type(4) {
  transition-delay: 0.25s;
}
.mm .holder ul li:nth-of-type(5) {
  transition-delay: 0.3s;
}
.mm .holder ul li:nth-of-type(6) {
  transition-delay: 0.35s;
}
.mm .holder ul li, .mm .holder ul li a {
  color: #fff;
  text-decoration: none;
}
.mm .holder ul li a.a {
  font-size: 12px;
}
.mm .holder ul li a.a.im {
  display: flex;
  align-items: center;
}
.mm .holder ul li a.a.im img {
  max-width: 20px;
  margin-right: 5px;
}
.mm .holder .main {
  width: 100%;
  transition: all 0.4s ease;
}
.mm .holder .main.h {
  transform: translateX(-100%);
}
.mm .holder .main.adm a {
  font-size: 18px;
}
.mm .holder .main:not(.adm) ul li:nth-of-type(3) {
  margin-top: 25px;
}
.mm .holder .side {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px 0 20px;
  transform: translateX(101%);
  transition: all 0.4s ease;
}
.mm .holder .side.h {
  transform: translateX(0%);
}
.mm .holder .side .sub {
  display: none;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mm .holder .side .sub::-webkit-scrollbar {
  display: none;
}
.mm .holder .side .sub a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
}
.mm .holder .side .sub p.h span {
  cursor: pointer;
}
.mm .holder .side .sub .d {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 45px;
}
.mm .holder .side .sub .d p {
  font-size: 30px;
  font-family: "Oswald";
  margin-bottom: 10px;
}
.mm .holder .side .sub.h {
  display: flex;
}
.mm .pr_token a {
  color: #fff;
  display: flex;
  font-size: 10px;
  align-items: center;
  text-decoration: none;
}
.mm .pr_token a img {
  width: 19px;
  margin-right: 5px;
}
.mm .crypto_prices {
  margin-bottom: 15px;
}
.mm .crypto_prices p {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 10px;
  transition: all 0.5s ease;
}
.mm .crypto_prices p img {
  width: 20px;
  margin-right: 5px;
}
.mm .crypto_prices p:nth-of-type(1) {
  transform: translateY(20px);
  opacity: 1;
}
.mm .crypto_prices p:nth-of-type(2) {
  transform: translateY(20px);
  opacity: 0;
}
.mm .crypto_prices.moved p:nth-of-type(1) {
  transform: translateY(0px);
  opacity: 0;
}
.mm .crypto_prices.moved p:nth-of-type(2) {
  transform: translateY(0px);
  opacity: 1;
}
.mm .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mm .foot img {
  max-width: 15px;
}
.mm .foot .s {
  display: flex;
  align-items: center;
}
.mm .foot .s a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
  transition-delay: 0.2s;
}
.mm .foot .s a:nth-of-type(2) {
  transition-delay: 0.3s;
}
.mm .foot .s a:nth-of-type(3) {
  transition-delay: 0.4s;
}
.mm .foot .s a:nth-of-type(4) {
  transition-delay: 0.5s;
}
.mm .foot .s a:nth-of-type(5) {
  transition-delay: 0.6s;
}
.mm .foot button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
  transition-delay: 0.6s;
}
.mm .foot button img {
  width: 30px;
}
.mm.m {
  transform: translateX(0vw);
}
.mm.m ul li {
  opacity: 1;
  transform: translate(0px);
}
.mm.m .foot .s a, .mm.m .foot button {
  opacity: 1;
  transform: translateX(0px);
}

.cookies_popup {
  position: fixed;
  bottom: -100px;
  right: 10px;
  height: 100px;
  background: #111;
  z-index: 998;
  max-width: 400px;
  border-radius: 6px;
  width: calc(100% - 20px);
  padding: 20px;
  transition: all 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cookies_popup:not(.hidden) {
  bottom: 10px;
}
.cookies_popup, .cookies_popup a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.cookies_popup a {
  font-weight: bold;
}
.cookies_popup button {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 0;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.cookies_popup button div {
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cookies_popup button div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cookies_popup .txt {
  width: 100%;
}

.user_menu {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.user_menu.show {
  display: flex;
}
.user_menu.active {
  width: 100%;
  opacity: 1;
}
.user_menu button:nth-of-type(1) {
  position: absolute;
  z-index: 0;
  width: 25px;
  height: 25px;
  top: 40px;
  right: 40px;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.user_menu button:nth-of-type(1) div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
}
.user_menu button:nth-of-type(1) div:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.user_menu button:nth-of-type(1) div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.user_menu a, .user_menu button:nth-of-type(2) {
  border: none;
  background: none;
  outline: none;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.user_menu a {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
.user_menu button:nth-of-type(2) {
  margin-top: 20px;
  font-size: 16px;
}

.login {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.login .holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  padding: 40px 30px;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.login .holder .head {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  width: 100%;
}
.login .holder .head p {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  font-size: 18px;
  padding: 0 6px 8px;
  border-bottom: 1px solid #fff;
}
.login .holder .head button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.login .holder .head button div {
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.login .holder .head button div:nth-of-type(1) {
  transform: rotate(-45deg);
}
.login .holder .head button div:nth-of-type(2) {
  transform: rotate(45deg);
}
.login .holder input {
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  margin-top: 18px;
  padding-bottom: 8px;
}
.login .holder input::-moz-placeholder {
  opacity: 0.5;
}
.login .holder input::placeholder {
  opacity: 0.5;
}
.login .holder input::-moz-placeholder {
  font-size: 16px;
  color: #fff;
}
.login .holder input, .login .holder input::placeholder {
  font-size: 16px;
  color: #fff;
}
.login .holder .head, .login .holder input, .login .holder button.t:nth-of-type(1), .login .holder p.t {
  max-width: 400px;
}
.login .holder button.t {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.login .holder button.t:nth-of-type(1) {
  opacity: 0.5;
  margin-top: 10px;
  padding: 5px 0;
  width: 100%;
  text-align: left;
}
.login .holder button.t:nth-of-type(2) {
  margin: 30px auto 0;
  font-size: 16px;
  padding: 0 2px 6px;
  border-bottom: 1px solid #fff;
}
.login .holder p.t {
  margin-top: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
}
.login .holder p.t a {
  color: #fff;
  text-decoration: none;
}
.login.a {
  pointer-events: initial;
}
.login.a .holder {
  transform: translateX(0);
}
.login.fp input#p {
  display: none;
}
.login.fp .holder button.t:nth-of-type(1) {
  display: none;
}

.notification {
  position: fixed;
  bottom: 10px;
  right: -400px;
  z-index: 1000;
  width: calc(100% - 20px);
  border-radius: 6px;
  height: 80px;
  max-width: 400px;
  padding-top: 20px;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.2078431373);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transition: all 0.15s ease-in-out;
}
.notification.g {
  right: 10px;
}
.notification.d {
  bottom: -80px;
}
.notification .content {
  flex: 1;
  padding: 0 20px 10px;
}
.notification .content button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  padding-left: 3px;
}
.notification .timer div {
  width: 100%;
  border-radius: 10px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2509803922);
}
.notification .timer div.g {
  transition: all 3s linear;
  width: 0;
}

footer {
  padding: 80px 30px 20px;
  font-size: 12px;
  color: #fff;
}
footer .links .box {
  padding: 20px 0;
  border-bottom: 1px solid #bbb;
}
footer .links .box .h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
footer .links .box .h p {
  color: #bbb;
}
footer .links .box .h span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 8px;
}
footer .links .box .h span div {
  display: block;
  width: 10px;
  height: 1px;
  background: #bbb;
  transform-origin: left;
  transform: translateX(0px) rotate(-45deg);
  transition: all 0.3s ease;
}
footer .links .box .h span div:first-of-type {
  transition-delay: 0.15s;
  transform-origin: right;
  transform: translateX(0px) rotate(45deg);
}
footer .links .box .h.swap span div {
  transform: translateX(-7px) rotate(-45deg);
}
footer .links .box .h.swap span div:first-of-type {
  transform: translateX(7px) rotate(45deg);
}
footer .links .box .h:not(.swap) ~ ul {
  display: none;
}
footer .links .box ul {
  list-style: none;
  padding-top: 10px;
}
footer .links .box ul a {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  font-size: 12px;
}
footer .trustpilot-widget {
  transform: translateX(-19px);
  margin-top: 40px;
}
footer .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
footer .r .footer_r {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}
footer .r .footer_r * {
  color: #fff !important;
}
footer img {
  max-width: 70px;
}

li.HIDDEN {
  pointer-events: none !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  opacity: 0.5 !important;
}

@media screen and (min-width: 600px) {
  header button.acc_btn p {
    max-width: 150px;
  }
  header.m button.acc_btn p {
    max-width: 100px;
  }
}
@media screen and (max-width: 850px) {
  .user_menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 850px) {
  header.m button.acc_btn p {
    max-width: 150px;
  }
  .user_menu {
    width: 300px;
    height: 0px;
    top: 80px;
    left: auto;
    right: 0;
    opacity: 1;
    transform: translate(0);
    background: #000;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0 30px;
    overflow: hidden;
  }
  .user_menu button:nth-of-type(1) {
    display: none;
  }
  .user_menu a, .user_menu button:nth-of-type(2) {
    font-size: 16px;
    font-weight: normal;
    display: block;
    max-width: -moz-max-content;
    max-width: max-content;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .user_menu a {
    margin-bottom: 15px;
  }
  .user_menu a:nth-of-type(1) {
    margin-top: 30px;
    transition-delay: 0.05s;
  }
  .user_menu a:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  .user_menu a:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  .user_menu button:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .user_menu.show {
    display: block;
  }
  .user_menu.active {
    width: 300px;
    height: 190px;
  }
  .user_menu.active a, .user_menu.active button:nth-of-type(2) {
    transform: translateX(0px);
    opacity: 1;
  }
  footer {
    padding: 80px 30px 40px 30px;
  }
  footer .links {
    display: flex;
  }
  footer .links .box {
    width: 150px;
    padding: 0;
    border: none;
  }
  footer .links .box .h {
    pointer-events: none;
    padding-bottom: 5px;
  }
  footer .links .box .h span {
    display: none;
  }
  footer .links .box .h:not(.swap) ~ ul {
    display: initial;
  }
  footer .links .box:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media screen and (min-width: 900px) {
  .login {
    width: 500px;
  }
  .login::before {
    background: #000;
    opacity: 1;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    left: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .login .holder {
    background: none;
  }
  .login .holder .head, .login .holder input, .login .holder button.t:nth-of-type(1), .login .holder p.t {
    max-width: 340px;
  }
  .login.a {
    pointer-events: initial;
  }
  .login.a::before {
    left: 0;
  }
  .login.a .holder {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1024px) {
  header {
    justify-content: flex-end;
  }
  header img.lo {
    left: 100px;
    top: calc(50% + 20px);
  }
  header .menu {
    opacity: 0;
  }
  header a.l {
    transform: translateX(0);
    opacity: 1;
    pointer-events: initial;
    margin-right: 100px;
  }
  header:not(.h) a.l {
    transform: translateX(-50px);
  }
  .mm {
    width: 200px;
    transform: translateX(0);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mm .holder {
    align-items: center;
  }
  .mm .holder .main {
    width: 100%;
  }
  .mm .holder .side {
    transform: translateX(0);
    pointer-events: none;
    width: 200px;
    left: auto;
    right: 0;
  }
  .mm .holder .side .sub {
    display: flex;
    position: absolute;
    opacity: 0;
    top: 50%;
    right: 0;
    width: 180px;
    transform: translateY(-50%);
    align-items: flex-start;
    transition: opacity 0.3s ease;
  }
  .mm .holder .side .sub a {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .mm .holder .side .sub p.h {
    justify-content: flex-start;
    font-size: 18px;
  }
  .mm .holder .side .sub p.h span:nth-of-type(1) {
    display: none;
  }
  .mm .holder .side .sub .d {
    align-items: flex-start;
  }
  .mm .holder .side .sub .d p {
    font-size: 20px;
  }
  .mm .holder .side .sub.active {
    pointer-events: initial;
    opacity: 1;
  }
  .mm .holder div.adm ul li:nth-of-type(7) {
    margin-top: 0;
  }
  .mm .holder ul li {
    transform: translate(0px);
    opacity: 1;
    font-size: 20px;
  }
  .mm .holder ul li a.a {
    font-size: 12px;
  }
  .mm .holder .main:not(.adm) ul li:nth-of-type(3) {
    margin-top: 30px;
  }
  .mm .foot {
    width: 140px;
  }
  .mm .foot .s a, .mm .foot button {
    opacity: 1;
    transform: translateX(0px);
  }
  .mm .foot .s {
    width: 100%;
  }
  .mm .foot img {
    max-width: 14px;
  }
  footer {
    padding: 80px 30px 30px 230px;
  }
}
@media screen and (min-width: 1280px) {
  footer {
    padding: 80px 30px 30px 250px;
  }
}/*# sourceMappingURL=reset.css.map */