@media screen and (max-width: 800px) {
  body {
    max-width: 800px;
    /* overflow: hidden; */
  }

  .container {
    width: 100%;
  }

  .nav-list {
    display: none;
  }

  .page-header {
    height: 100px;
  }

  .page-header-cont {
    display: flex;
    justify-content: space-between;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  .header-nav > a.header-logo-link {
    margin-right: 0;
  }

  .hamburger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* trying adaptive menu */
  /* .topnav li:first-child {
    margin-top: 25px;
  }

  .topnav li:not(:last-child) {
    display: none;
  }

  .topnav {
    position: relative;
  }

  .topnav a.icon {
    position: absolute;
    left: -20px;
    top: 20px;
  }

  .topnav.responsive li {
    display: block;
  } */

  .contacts-list {
    display: none;
  }

  /* Modal */

  .modal {
    width: 300px;
    height: 400px;
  }

  .modal form {
    display: block;
  }

  .modal form > ul:last-child {
    display: none;
  }

  /* Index */

  .hero {
    background-image: url(../img/Hero-container.jpg);
    background-size: cover;
    height: auto;
  }

  .hero-title {
    display: none;
  }

  .section.hero {
    margin: 0 auto;
  }

  .welcome p.main-text {
    width: auto;
    text-align: center;
    margin: 0 auto;
  }

  .time > .container {
    width: 350px;
  }

  /* Services */
  .services-list,
  .prices-list {
    display: none;
  }

  .services-list-adaptive .services-item {
    margin-bottom: 25px;
  }

  /* Info */

  .info .section-title {
    margin-bottom: 0;
    font-size: 30px;
    text-transform: none;
    margin-right: 20px;
  }

  .info-item p,
  .info-item li {
    font-size: 18px;
  }

  .info-item {
    justify-content: space-between;
    padding: 20px 10px;
  }

  /* Contacts */

  .section.main-map iframe {
    width: 100%;
    height: 300px;
  }

  /* Footer */

  .map {
    display: none;
  }
}

@media (min-width: 801px) {
  .nav-list-adaptive {
    display: none;
  }

  .services-list-adaptive {
    display: none;
  }

  .submit-adaptive {
    display: none;
  }
}

/* ==========================MOBILE MENU============================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu > li:not(:last-child) {
  margin-bottom: 25px;
}

.mobile-menu.responsive {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 50px;
  right: 50px;
}

.mobile-menu a {
  font-size: 20px;
}

@media (min-width: 801px) {
  .mobile-menu {
    display: none;
  }

  .hamburger-menu {
    display: none;
  }
}
