* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto';
  width: 100%;
  height: 100%; 
  overflow-x: hidden;
  background-color: #f7839800;
}

.header {
  background: #D9E6FF;
  height: 60px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between
}

.nav-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 52.2px;
  margin-left: 25px;
}

.logo img{
  height: 43px;
  width: 52.2px;
}

.nav-menu {
  display: flex;
  margin-right: 50px;
  list-style: none;
}

.nav-menu-item {
  font-size: 18px;
  margin: 0 10px;
  line-height: 60px;
  text-transform: uppercase;
  width: max-content;
}

.nav-menu-link:hover,
.nav-menu-link_active {
  color: #f78398;
  transition: 0.5s;
}

/* TOGGLE */
.nav-toggle {
  color: white;
  background: none;
  border: none;
  font-size: 30px;
  padding: 0 20px;
  line-height: 50px;
  cursor: pointer;

  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .header {
    height: 60px;
  }

  .logo {
    font-size: 25px;
    padding: 0 20px;
    line-height: 60px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin: 0;
    position: fixed;
    top: 60px;
    width: 100%;
    padding: 0px 0;

    background-color: #ffffff;
    box-shadow: 2px 2px 4px rgba(104, 104, 104, 0.2);

    height: 315px;
    overflow-y: auto;

    left: 100%;
    transition: left 0.3s;
  }

  .nav-menu-item {
    display: flex;
    justify-content: center;
    line-height: 70px;
    width: 350px;
    border-bottom: 1px solid black;
  }

  .nav-menu-link:hover,
  .nav-menu-link_active {
    background: none;
    color: #f78398;
  }

  .nav-toggle {
    display: block;
    color: black;
  }

  .nav-menu_visible {
    left: 0;
  }

  .nav-toggle:focus:not(:focus-visible) {
    outline: none;
  }
}
