.header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 500;
}

.menu-container {
  -ms-overflow-style: none;
  overflow-y: scroll;
  overscroll-behavior: contain;
  position: relative;
  scrollbar-width: none;
  touch-action: none;
}

.menu-button {
  align-items: center;
  background-color: #fff;
  border-radius: 45px;
  display: flex;
  flex-direction: column;
  height: 45px;
  justify-content: center;
  position: fixed;
  right: 35px;
  top: 40px;
  width: 45px;
  z-index: 50;
}

.hamburger-icon {
  display: flex;
  height: 8px;
  position: relative;
  width: 25px;
}

.hamburger-icon span {
  background-color: #000;
  display: block;
  height: 1px;
  transform: translateY(5px);
  transform-origin: center center;
  transition: transform .2s ease;
  width: 25px;
  z-index: 200;
}

.hamburger-icon span::before {
  top: -4px;
  background-color: #000;
  content: "";
  height: 1px;
  position: absolute;
  transform-origin: center center;
  transition: transform .2s ease;
  width: 25px;
}

.hamburger-icon span::after {
  top: 4px;
  background-color: #000;
  content: "";
  height: 1px;
  position: absolute;
  transform-origin: center center;
  transition: transform .2s ease;
  width: 25px;
}

.menu-text {
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2227%22%20height%3D%227%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M8.624%206h-1.19V3.14c0-.551-.079-.95-.236-1.195-.154-.247-.415-.37-.784-.37-.311%200-.576.156-.795.467-.215.311-.323.684-.323%201.118V6H4.102V3.042c0-.978-.346-1.467-1.036-1.467-.321%200-.586.147-.795.441-.205.294-.307.675-.307%201.144V6H.774V.75h1.19v.83h.02c.38-.635.932-.953%201.656-.953.362%200%20.679.1.949.302.273.199.46.46.558.785.39-.725.971-1.087%201.744-1.087%201.155%200%201.733.713%201.733%202.138V6Zm5.896-2.302h-3.58c.015.485.163.86.447%201.123.287.263.68.395%201.18.395.56%200%201.074-.168%201.542-.503v.959c-.478.3-1.11.451-1.897.451-.772%200-1.379-.237-1.82-.713-.437-.478-.656-1.15-.656-2.014%200-.817.241-1.482.723-1.995a2.377%202.377%200%200%201%201.805-.774c.717%200%201.273.23%201.666.692.393.462.59%201.102.59%201.923v.456Zm-1.149-.84c-.003-.428-.104-.76-.302-.995-.199-.24-.472-.36-.82-.36-.343%200-.633.125-.872.375-.236.25-.381.576-.436.98h2.43ZM20.328%206h-1.19V3.042c0-.981-.346-1.472-1.04-1.472-.362%200-.661.137-.897.41-.236.27-.354.612-.354%201.026V6h-1.194V.75h1.194v.872h.02c.394-.664.961-.995%201.703-.995.57%200%201.006.186%201.307.559.301.369.451.904.451%201.605V6Zm6.035%200h-1.19v-.83h-.02c-.345.635-.882.953-1.61.953-1.24%200-1.861-.745-1.861-2.235V.75h1.19v3.015c0%20.943.363%201.415%201.091%201.415.352%200%20.641-.13.867-.39.229-.26.343-.6.343-1.02V.75h1.19V6Z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 8px;
  margin-top: 6px;
  text-align: center;
  width: 27px;
}

.menu-container.open .hamburger-icon span {
  background: transparent;
}
.menu-container.open .hamburger-icon span::before {
  transform: rotate(20deg);
  top: 0;
}
.menu-container.open .hamburger-icon span::after {
  transform: rotate(-20deg);
  top: 0;
}

.menu-content {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: right 0.5s ease, opacity 0.4s ease;
  z-index: 40;
  overflow: hidden;
}

.menu-container.open .menu-content {
  right: 0;
}

.menu-content-list {
  background-color: #c4fffd;
  color: #181818;
  height: 100%;
  position: absolute;
  width: 75vw;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 40px;
}

.menu-container.open .menu-content-list {
  right: 0;
}

.menu-list {
  display: flex;
  flex-direction: column;
  height: 100svh;
  padding: 16vh 30px 25px 45px;
}

.menu-list li {
  font-size: 14px;
  margin-bottom: 15px;
  list-style-type: none;
  transition: transform 0.3s ease;
}

.menu-company {
  margin-bottom: 0;
  margin-top: auto;
}

.company-copy {
  margin-top: 15px;
}

.menu-list li:hover {
  transform: translateX(20px);
}

.menu-list a {
  color: #181818;
  font-weight: 700;
  text-decoration: none;
}

.menu-instagram svg {
  width: 20px;
}

.menu-instagram svg path {
  fill: none;
}

.menu-company li {
  margin-bottom: 0;
  margin-top: auto;
  font-size: 14px;
  list-style-type: none;
}

@media screen and (min-width: 900px) {
  .menu-button {
      border-radius: 65px;
      height: 65px;
      width: 65px;
  }
  .hamburger-icon {
    height: 22px;
    width: 35px;
  }
  .hamburger-icon span {
    height: 2px;
    transform: translateY(10px);
    width: 35px;
  }
  .hamburger-icon span::before {
    top: -10px;
  }
  .hamburger-icon span::after {
    top: 10px;
  }
  .hamburger-icon span::before, .hamburger-icon span::after {
    content: "";
    height: 2px;
    width: 35px;
  }
  .menu-text {
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234%22%20height%3D%229%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M9.605%208V3.488c0-.942-.148-1.604-.446-1.985-.293-.38-.76-.57-1.4-.57-.59%200-1.1.253-1.53.76-.43.509-.645%201.146-.645%201.912V8h-.673V3.437c0-1.67-.635-2.505-1.905-2.505-.61%200-1.118.256-1.523.77-.405.507-.608%201.166-.608%201.977V8H.201V.5h.674v1.245h.03C1.426.793%202.19.317%203.196.317c.547%200%201.013.159%201.399.476.39.312.654.725.79%201.238.235-.542.57-.962%201.004-1.26.44-.303.916-.454%201.428-.454%201.641%200%202.461%201.016%202.461%203.047V8h-.674Zm3.091-3.72c0%201.03.237%201.835.71%202.416.48.581%201.134.872%201.964.872.84%200%201.66-.31%202.46-.93v.717a4.384%204.384%200%200%201-2.6.828c-.966%200-1.748-.347-2.343-1.04-.596-.693-.894-1.672-.894-2.937%200-1.094.31-2.014.93-2.761C13.548.693%2014.36.317%2015.355.317c.933%200%201.648.327%202.146.981.498.655.747%201.548.747%202.681v.3h-5.552Zm4.849-.616c-.03-.864-.237-1.536-.623-2.014-.385-.479-.918-.718-1.596-.718-.703%200-1.287.237-1.75.71-.46.47-.743%201.143-.85%202.022h4.819ZM25.206%208V3.635c0-1.802-.65-2.703-1.948-2.703-.723%200-1.316.266-1.78.798-.464.528-.696%201.182-.696%201.963V8h-.674V.5h.674v1.362h.03c.546-1.03%201.4-1.545%202.563-1.545.81%200%201.43.27%201.86.813.43.537.645%201.306.645%202.307V8h-.674Zm7.88%200V6.638h-.028c-.523%201.03-1.328%201.545-2.417%201.545-1.773%200-2.66-1.116-2.66-3.347V.5h.682v4.167c0%201.016.166%201.753.498%202.212.337.46.864.689%201.582.689.698%200%201.262-.256%201.692-.77.435-.512.652-1.195.652-2.05V.5h.674V8h-.674Z%22%2F%3E%3C%2Fsvg%3E);
    height: 9px;
    margin-top: 5px;
    width: 34px; 
  }
  .menu-content-list {
    width: 450px;
  }
  .menu-list li {
    font-size: 18px;
  }
  .menu-list li svg {
    width: auto;
  }
  .company-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
  }
  .company-address, .company-tel {
    font-size: 14px;
  }

  .company-copy {
    font-size: 12px;
  }
}