@media only screen and (max-width: 1260px) {
  body {
    font-size: 15px;
  }

  .container {
    max-width: 760px;
  }

  .header {
    top: 10px;
  }

  .header__menu {
    position: fixed;
    width: 50%;
    background: #fff;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 50px;
    transition: 0.3s ease;
    transform: translateX(200%);
  }

  .header__menu .has-child:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
    right: 0;
    top: 8px;
    transition: 0.3s ease;
  }

  .header__menu li {
    margin-bottom: 25px;
  }

  .header__menu li a {
    color: #202020;
  }

  .header__menu li:hover .sub-menu {
    min-height: 0;
  }

  .header__menu li.active:after {
    transform: rotate(180deg);
  }

  .header__menu li.active .sub-menu {
    max-height: 1000px;
    margin-top: 10px;
  }

  .header .sub-menu {
    padding: 0;
    padding-left: 10px;
    position: relative;
    max-height: 0;
    overflow: hidden;
    transform: none;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    width: 270px;
  }

  .header .sub-menu li a {
    color: #000;
  }

  .header__lang {
    margin-left: auto;
    margin-right: 30px;
    gap: 8px;
    font-size: 16px;
  }

  .header__burger {
    width: 25px;
    height: 20px;
    padding: 3px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    z-index: 150;
  }

  .header__burger span {
    background: #fff;
    height: 2px;
    width: 100%;
    transition: 0.3s ease;
  }

  .header.active .header__menu {
    opacity: 1;
    transform: translateX(0);
  }

  .header.active .header__burger span {
    background: #202020;
  }

  .header.active .header__burger span:nth-child(1) {
    transform: translate(1px, 4px) rotate(45deg);
    width: 20px;
  }

  .header.active .header__burger span:nth-child(2) {
    width: 20px;
    transform: translate(1px, -8px) rotate(-45deg);
  }

  .header.active .header__burger span:nth-child(3) {
    display: none;
  }

  .first {
    padding-top: 130px;
  }
}

@media only screen and (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .container {
    max-width: 400px;
  }

  h1 {
    font-size: 26px;
  }

  .header.active {
    position: fixed;
  }

  .header.active .header__menu {
    width: 100%;
  }

  .header .sub-menu li a {
    font-size: 12px;
  }

  .first__title {
    margin-bottom: 12px;
  }

  .first__subtitle {
    margin-bottom: 24px;
  }

  .package {
    padding: 20px 10px;
  }
}