@media screen and (max-width: 999px) {
  .box-quarter {
    width: 150px;
  }

  .explore a,
  .footer-links {
    width: 50%;
  }
}

@media screen and (max-width: 525px) {

  .explore a,
  .footer-links {
    width: 100%;
  }
}

/* Disable Body Scrolling */
body.body-show-footer,
body.body-show-popup,
body.body-show-dashboard-menu {
  overflow: hidden;
}

.footer-holder {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  max-height: calc(50vh);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  transform: translateY(100%);
  box-shadow: 0 -5px 28px rgba(0, 0, 0, 0.25);
  border-radius: 15px 15px 0 0;
}

.footer-mask {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999998;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.body-show-footer .footer-mask {
  visibility: visible;
  opacity: 1;
}

.body-show-footer .footer-holder {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-hide {
  display: none !important;
}

.welcome .welcome-wrapper .welcome-content h1 {
  font-size: 18px;
}

.welcome .welcome-wrapper .welcome-content h2 {
  font-size: 26px;
  padding-bottom: 5px;
}

.wrap-footer-end {
  text-align: center;
}

.wrap-main {
  max-width: 1190px;
  margin: auto 15px;
}

/* Floated Menu */
.topnav .topnav-items.topnav-menu {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  pointer-events: none;
}

.body-scroll-down .topnav .topnav-items.topnav-menu {
  transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
}

.topnav .topnav-items.topnav-menu .topnav-menu-wrapper {
  pointer-events: all;
  border-radius: 30px;
  overflow: hidden;
  padding: 8px;
  margin: auto;
  box-shadow: rgba(1, 20, 82, 0.2) 0px 0px 7px 0px;
  background-color: var(--nav-float-bg);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  width: auto;
}

.topnav .topnav-menu-wrapper a.topnav-menu-item {
  border-radius: 30px;
  padding: 0;
  box-sizing: border-box;
  width: 40px;
  text-align: center;
}

.topnav .topnav-menu-wrapper a.topnav-menu-item:not(:first-child) {
  margin-left: 5px;
}

.topnav .topnav-menu-wrapper a.topnav-menu-item c {
  display: inline-block;
  font-size: 24px;
}

.topnav a.topnav-menu-item span {
  display: none;
}

/* home */
.features-image img {
  max-height: 380px;
}