@media only screen and (max-width: 1860px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1610px) {
  html {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1300px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1000px) {
  html {
    font-size: 12px;
  }

  .bg-menu {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    transform: translateY(-100%);
    z-index: 999;
  }

  .nav.open {
    display: flex;
    transform: translateY(0);
  }
  .menu {
    display: none;
  }
}

@media only screen and (max-width: 410px) {
}

@media only screen and (min-width: 1000px) {
  .mobile-main-menu {
    display: none;
  }

  .bg-menu {
    display: none;
  }

  .contact-email {
    display: none;
  }

  .navbar {
    display: none !important;
  }
}
