@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');
* {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

[class*='__container'] {
  max-width: 972px;
  margin: 0 auto;
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page {
  flex: 1 1 auto;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.menu__list {
  display: flex;
}

.header__logo {
  color: #1caeed;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
}
.header__logo span {
  color: #fb49f4;
}

.menu__link {
  font-size: 1.25em;
  /* line-height: 19px; */
  color: rgba(0, 0, 0, 0.85);
  margin: 0 0 0 52px;
}

@media (max-width: 767px) {
  .menu {
    position: absolute;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #0e697d;
    padding: 40px 0 0 0;
  }

  .menu__list {
    font-size: 28px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
  }

  .menu__link {
    color: #fff;
  }

  .menu__link {
    white-space: nowrap;
  }

  .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }

  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
}

.menu.active {
  left: 0;
}
