body {
  font-family: "Roboto", sans-serif;
  color: #434455;
  background: #fff;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
}

button {
  cursor: pointer;
}

.container {
  max-width: 320px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

.header {
  background-color: #75d281;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 84px;
  height: 36px;
  display: block;
  /* padding: 14px 0; */
}

.icon-logo {
  width: 82px;
  height: 31px;
}

.header-nav-list {
  display: none;
}

.header-address-list {
  display: none;
}

.menu-btn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  display: block;
  padding: 0;
}

.icon-menu {
  width: 32px;
  height: 32px;
  fill: #030a06;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn:hover .icon-menu,
.menu-btn:focus .icon-menu {
  fill: #113916;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-right: 28px;
    padding-left: 32px;
  }

  .icon-menu {
    width: 24px;
    height: 24px;
  }

  .menu-btn {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding-right: 64px;
    padding-left: 64px;
  }

  /* .header {
    padding-top: 0;
    padding-bottom: 0;
  } */

  .header-nav {
    display: flex;
    align-items: center;
  }

  .header-logo {
    width: 106px;
    height: 45px;
    margin-right: 175px;
  }

  .icon-logo {
    width: 104px;
    height: 39px;
  }

  .header-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header-nav-link {
    font-size: 16px;
    line-height: 1.6;
    color: #030a06;
    display: block;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    /* padding: 23px 0; */
  }

  .header-address {
    font-style: normal;
    display: block;
    margin-left: auto;
  }

  .header-address-list {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-address-link {
    font-size: 16px;
    line-height: 1.6;
    color: #030a06;
    display: block;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-nav-link:hover,
  .header-nav-link:focus,
  .header-address-link:hover,
  .header-address-link:focus {
    color: #113916;
  }

  .menu-btn {
    display: none;
  }
}
