html,
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
}

.section {
  padding: 40px 0;
}

.container {
  padding: 0 16px;
  margin: 0 auto;
  /* outline: 1px solid red; */
}

.header__nav {
  display: none;
}

.header__container {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

/*-----------menu----------------*/
.nav__list {
  display: flex;
  gap: 60px;
  padding-top: 75px;
}

.nav__link {
  display: inline-block;
  padding: 15px 0;
}

.toggle-mob-menu {
  padding: 16px 0 16px 16px;
}

.mob-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background: #fff;
  color: #323232;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.25s ease-in-out;
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu__link {
  padding: 6px 20px;
  display: block;
  font-weight: 600;
}

.mob-menu__close {
  padding: 15px 20px 15px 15px;
  margin-left: auto;
  display: block;
}
/*-----------menu-end-----------------*/

/*-------------footer-----------------*/
.footer {
  padding: 18px 0;
  background: #f7f4f2b2;
  color: #323232;
  position: relative;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__container p {
  text-align: center;
}

.footer__icon {
  order: -1;
  fill: #7b1e3c;
}

.footer__link {
  color: #7b1e3c;
  padding: 10px 0;
  display: block;
}
/*-----------footer-end----------------*/

@media screen and (min-width: 480px) {
  .container {
    width: 480px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .header__container {
    justify-content: flex-start;
  }
  .mob-menu,
  .toggle-mob-menu {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .container {
    width: 768px;
  }
}

@media screen and (min-width: 1200px) {
  .section {
    padding: 80px 0;
  }

  .container {
    width: 1200px;
  }
  .footer__container {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
  .footer__icon {
    order: 0;
  }
  .footer__link {
    display: inline-block;
  }
}
