/**
	MOBILE MENU
**/
@media (max-width: 999px) {
  #nova-container {
    position: relative;
    will-change: transform, transition;
    transition: transform 0.5s ease;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden; }
    #nova-container.open {
      will-change: transform;
      transform: translate3d(calc(-75%), 0, 0); }
  #nova-menu {
    display: block;
    position: fixed;
    top: 0px;
    right: -75%;
    width: 75%;
    background: #e9e9e9;
    height: 100%;
    z-index: 9999;
    will-change: transform, transition, left, right;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2) inset; }
    #nova-menu.close {
      right: -75%;
      display: none !important; }
    #nova-menu .navbar-nav {
      transform: translate3d(100px, 0, 0);
      transition: transform 1s cubic-bezier(0.03, 0.7, 0, 0.99);
      padding: 0px;
      margin: 0px;
      background: transparent !important; }
      #nova-menu .navbar-nav li {
        list-style: none; }
      #nova-menu .navbar-nav a {
        color: black !important;
        padding-left: 15px; }
      #nova-menu .navbar-nav.open {
        transform: translate3d(0, 0, 0); }
      #nova-menu .navbar-nav .dropdown > a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      #nova-menu .navbar-nav .dropdown a {
        font-size: 18px !important; }
      #nova-menu .navbar-nav .dropdown .dropdown-menu {
        display: none; }
  #nova-menu-toggle {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 65%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    background: #e9e9e9;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
    z-index: 12; }
    #nova-menu-toggle header {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      font-size: 19px; }
      #nova-menu-toggle header a {
        color: black; }
    #nova-menu-toggle ul {
      margin: 0px;
      padding: 0px;
      height: 83%;
      overflow-y: auto;
      transform: translate3d(100px, 0, 0);
      transition: transform 1s cubic-bezier(0, 0.41, 0.05, 1.01); }
      #nova-menu-toggle ul.open {
        transform: translate3d(0, 0, 0); }
    #nova-menu-toggle ul, #nova-menu-toggle li {
      list-style: none; }
      #nova-menu-toggle ul a, #nova-menu-toggle li a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: block;
        color: black;
        padding: 11px 17px;
        margin: 0px 5px; }
    #nova-menu-toggle.open {
      transform: translate(0px); } }

/**
	POPUP
**/
#popup {
  position: fixed;
  left: 50%;
  top: 100px;
  z-index: 99999;
  max-width: 100% !important; }
  @media (max-width: 992px) {
    #popup {
      width: 85%;
      max-width: 90%; } }
  #popup .popup-content {
    position: relative;
    left: -50%;
    transform: scale(0.1);
    transition: all 1s;
    opacity: 0; }
    #popup .popup-content.open {
      will-change: transform, opacity;
      transform: scale(1);
      opacity: 1; }
    #popup .popup-content img {
      max-width: 100%; }
      @media (max-width: 992px) {
        #popup .popup-content img {
          max-width: 100%; } }
  #popup .popup-close {
    transform: scale(0);
    text-align: center;
    background: black;
    float: right;
    padding: 0px 11px 2px 11px;
    border-radius: 30px;
    color: white;
    font-size: 20px;
    border: 2px solid white;
    position: absolute;
    right: 0px;
    margin-top: -15px;
    margin-right: -15px;
    transition: transform 0.4s;
    cursor: pointer; }
    #popup .popup-close.show {
      transform: scale(1); }

.nova-bg-dark {
  position: fixed;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.4s; }
  .nova-bg-dark.open {
    opacity: 1; }

/*# sourceMappingURL=nova-engine.css.map */