:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Roboto", sans-serif;
}
*,
::before,
::after {
  box-sizing: border-box;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
}

.header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
}

.header-nav {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 112px;
}

.header-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .header-list{
    display: none;
  }
}
.header-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.header-button {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background-color: transparent;
  border-radius: 65px;
  border: none;
  padding: 8px 14px;
}

.header-button-current {
  border: 2px solid #fff;
}

.hero-section {
  background-image: url("../images/hero-bg-mob.jpg");
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 150px;
  padding-top: 214px;
  text-align: center;
  background-size: cover;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

.hero-paragraph {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.hero-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background-color: #ff4e50;
  padding: 12px 38px;
  border-radius: 16px;
  border: none;
}
.menu-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 32px;
  background-color: #3f51b5;
  z-index: 999;

  transform: translateX(100%);
  transition: transform 250ms ease-in-out;
}
.menu-container.is-open {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }

  .header {
    padding: 36px 0;
  }

  .header-nav {
    justify-content: space-between;
    flex-direction: row;
    gap: 0px;
  }

  .header-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .header-button {
    font-size: 14px;
    padding: 6px 14px;
  }

  .hero-section {
    background-image: url("../images/hero-bg-tabl.jpg");
    padding-bottom: 233px;
    padding-top: 201px;
  }

  .hero-title {
    font-size: 52px;
    margin-bottom: 36px;
  }

  .hero-paragraph {
    font-size: 24px;
    margin-bottom: 45px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 12px 10px;
  }
  .menu-toggle{
    display: none;
}
}
@media screen and (min-width: 1440px) {
  .container {
    width: 940px;
    outline: 1px solid red;
  }

  .hero-section {
    background-image: url("../images/hero-bg-desk.jpg");
    padding-bottom: 246px;
  }
}
