header {
  padding: 27px 30px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.3s;
  opacity: 1;
}
header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(16px);
  background: rgba(1, 1, 15, 0.7);
  z-index: 1;
}
header .lm-logo {
  display: flex;
  width: 132px;
  position: relative;
  z-index: 2;
  transform: translateY(-7px);
}
header .header-actions-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .lm-menu {
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  width: calc(100% - 185px);
  padding-right: 36px;
  position: relative;
  z-index: 2;
}
header .menu {
  display: flex;
  position: relative;
  gap: 32px;
}
header .menu > li {
  display: flex;
  align-items: center;
}
header .menu > li.last-item {
  margin-left: auto;
}
header .menu > li > a {
  font-size: 16px;
  color: var(--lm-color-white);
  display: block;
  transition: all 0.3s;
  line-height: 18px;
}
header .menu > li > a:hover {
  -webkit-mask-image: linear-gradient(-75deg, rgba(89, 175, 255, 0.6) 30%, #59afff 50%, rgba(237, 255, 248, 0.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}
@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
header .nav-icon {
  z-index: 5;
}
header .nav-icon.third span:nth-child(4) {
  width: 70%;
  right: 0;
  left: auto;
}
header .launch-app {
  display: none;
}
@media (max-width: 991px) {
  header .lm-menu {
    padding-left: 20px;
    margin-left: 20px;
  }
  header .menu {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 15px 30px;
  }
  header .header-actions-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 53vh;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(17px);
  }
  header .header-actions-wrapper.active {
    display: block;
  }
  header .lm-header-actions {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
  }
  header .launch-app {
    display: inline-flex;
  }
  header .lm-menu {
    margin-left: 0px;
    overflow-y: auto;
    padding: 40px 20px 0;
    width: 100%;
  }
  header .lm-menu li {
    text-align: center;
  }
  header .lm-menu li.home {
    margin-bottom: 20px;
  }
  header .lm-menu li.home a {
    font-size: 16px;
    color: var(--lm-color-white);
    display: block;
    transition: all 0.3s;
    line-height: 18px;
  }
  header .lm-button-outline {
    min-width: 130px;
    padding: 0 15px;
    font-size: 14px;
  }
  header .menu {
    display: grid;
  }
  header .menu > li {
    margin-left: 0;
    justify-content: center;
    gap: 40px;
  }
  header .menu > li.last-item {
    margin-left: unset;
  }
  header .lm-header-actions .lm-button-primary-small {
    height: 30px;
    font-size: 13px;
    padding: 0px 10px;
  }
}
header .lm-header-actions .lm-button-primary-small {
  text-transform: lowercase;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 80px;
  padding-top: 70px;
  padding-bottom: 37vh;
  background: url("../../images/footer-logo-new.jpg") no-repeat center bottom/1614px;
}
footer .lm-footer-logo {
  margin-top: -8px;
}
footer .lm-footer-logo + p {
  max-width: 240px;
  margin-top: 10px;
}
footer h2 {
  margin-bottom: 20px;
}
footer ul {
  display: grid;
  gap: 12px;
}
footer ul.follow-us {
  /* grid-template-columns: repeat(3, 1fr); */
}
footer ul a {
  color: var(--lm-color-body);
  font-size: 15px;
  line-height: 17px;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  gap: 6px;
}
footer ul a:hover {
  color: var(--lm-color-white);
}
footer .lm-footer-menu .home a {
  color: var(--lm-color-white-fade-100);
  display: block;
  transition: all 0.3s;
  font-size: 14px;
  margin-bottom: 10px;
}
footer .lm-footer-menu .home a:hover {
  color: var(--lm-color-white);
}
footer #menu-footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 255px;
  margin-left: auto;
}
footer #menu-footer-menu > li > a {
  color: var(--lm-color-white-fade-100);
  text-align: center;
  display: block;
  transition: all 0.3s;
  font-size: 14px;
}
footer #menu-footer-menu > li > a:hover {
  color: var(--lm-color-white);
}
footer .lm-footer-menu-second li {
  position: relative;
}
footer .lm-footer-menu-second li:first-child:before {
  display: none;
}
footer .lm-footer-menu-second li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lm-color-white-fade-100);
}
@media (max-width: 1300px) {
  footer {
    background: url("../../images/footer-logo-new.jpg") no-repeat center bottom/126%;
  }
}
@media (max-width: 991px) {
  footer .lm-col-4 {
    width: calc(33.33333333% - 24px);
  }
  footer ul.follow-us {
    grid-template-columns: unset;
  }
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 17vh;
    margin-top: 40px;
    padding-top: 40px;
    background: url("../../images/footer-logo-mb.jpg") no-repeat center bottom/100vw;
  }
  footer #menu-footer-menu {
    flex-wrap: wrap;
    flex-direction: column;
    width: auto;
    text-align: right;
    gap: 16px;
  }
  footer #menu-footer-menu li {
    width: 100%;
  }
  footer #menu-footer-menu li:before {
    display: none;
  }
  footer #menu-footer-menu li a {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .page-template-page-sl-token footer {
    margin-top: 0;
  }
}
.footer-popup-triggers {
  position: fixed;
  bottom: 7%;
  right: 25px;
  width: 90px;
  z-index: 3;
  transition: all 0.3s;
}
.footer-popup-triggers.changed {
  bottom: -100px;
}
.footer-popup-triggers img {
  max-width: 100%;
  display: block;
  box-shadow: 0px 0px 12px 1px rgba(255, 255, 255, 0.5);
  border-radius: 9px;
}
@media (max-width: 767px) {
  .footer-popup-triggers {
    bottom: 5%;
    right: 12px;
  }
}

.footer-popup {
  position: fixed;
  bottom: -400px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 12;
  transition: all 0.3s;
}
.footer-popup.active {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.footer-popup .close-footer-popup {
  position: absolute;
  top: 14px;
  right: 11px;
  z-index: 3;
}
.footer-popup .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-popup .inner > img {
  max-width: 90px;
}
.footer-popup ul li a {
  height: 30px;
  padding: 3px 20px;
  color: #fff;
  background: #0E03C9;
  background: linear-gradient(14deg, #0e03c9 12%, #0077ff 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
}
.footer-popup ul li a:hover {
  background: linear-gradient(12deg, #0077ff 14%, #0e03c9 100%);
}
.footer-popup > img {
  border-radius: 20px;
  max-width: 420px;
}
.footer-popup h2 {
  text-align: left;
  margin-top: 0;
  font-size: 22px;
  color: #fff;
  font-family: var(--font-bold);
  margin-bottom: 10px;
}
.footer-popup p {
  color: #fff;
  max-width: 300px;
  flex: 1;
}
.footer-popup .content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer-popup {
    width: calc(100% - 20px);
    right: 10px;
  }
  .footer-popup.active {
    bottom: 3px;
  }
  .footer-popup > img {
    width: 100%;
    height: 225px;
    object-fit: cover;
  }
  .footer-popup p {
    max-width: 100%;
    font-size: 16px;
  }
  .footer-popup .content {
    padding: 20px;
  }
  .footer-popup ul {
    display: flex;
    margin-bottom: 20px;
  }
  .footer-popup ul li a {
    height: 32px;
    padding: 3px 10px;
    font-size: 14px;
  }
  .footer-popup ul li:first-child svg {
    width: 25px;
    height: 25px;
  }
  .footer-popup ul li:nth-child(2) svg {
    width: 24px;
    height: 18px;
  }
  .footer-popup .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-popup .inner > img {
    max-width: 90px;
  }
}