@media (max-width: 1099.98px) {
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  nav {
    margin: 0;
  }
  nav ul {
    flex-direction: column;
  }
  #curtain {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    z-index: 11;
  }
  #curtain span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    transform-origin: bottom left;
    transition: 0.5s ease-in-out;
    transform: rotate(-90deg);
    overflow: auto;
  }
  #curtain span:nth-child(1) {
    transform: rotate(-90deg);
    background: linear-gradient(to right, #9c0008, #f56a00);
    transition-delay: 0.2s;
  }
  #curtain span:nth-child(2) {
    transform: rotate(-90deg);
    background: linear-gradient(to right, #232526, #414345);
    transition-delay: 0.1s;
  }
  #curtain span:nth-child(3) {
    transform: rotate(-90deg);
    background: linear-gradient(to right, #f56a00, #fa903f);
    transition-delay: 0s;
    height: 100vh;
    overflow: auto;
  }
  #curtain.active span {
    transform: rotate(0deg);
    height: 100vh;
  }
  #curtain.active span:nth-child(1) {
    z-index: 1;
    transition-delay: 0s;
  }
  #curtain.active span:nth-child(2) {
    z-index: 2;
    transition-delay: 0.1s;
  }
  #curtain.active span:nth-child(3) {
    z-index: 3;
    transition-delay: 0.2s;
  }
  .toggle {
    display: flex;
    position: relative;
    top: auto;
    transform: none;
    right: auto;
    transition: .5s;
    z-index: 10000;
    margin-right: 20px;
  }

  .search-phone__wrapper .callback-menu-mobile {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-30deg, #f56a00 0%, #fa903f 100%);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
  }

  #curtain.active .search-phone__wrapper .callback-menu-mobile {
    display: none;
  }

  #curtain.active .toggle {
    z-index: 110;
  }
  #curtain .main-menu {
    position: absolute;
    transition: 0.2s;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
    top: 50%;
    left: 0;
    display: flex;
    align-items: start;
  }
  #curtain.active .main-menu {
    padding-top: 60px;
    visibility: visible;
    opacity: 1;
    transition-delay: 0.7s;
    z-index: 101;
  }
  #curtain ul li {
    list-style: none;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  #menu-main-menu > li:last-child {
    margin-bottom: 250px;
  }
  #curtain ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  .menu-main-menu .sub-menu li {
    width: 100%;
  }
  /* ---------- BURGER ANIMATION ---------- */
  .menu {
    display: flex;
    cursor: pointer;
    width: 30px;
    height: 20px;
  }
  .menu .line {
    position: absolute;
    transform-origin: center;
    width: 100%;
    border-radius: 4px;
    height: 2px;
    transition: 0.4s;
    background-color: #df6a01;
  }
  .menu .line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .open .line {
    background-color: #fff;
  }
  .menu .line:nth-child(3) {
    bottom: 0;
  }
  .menu.open .line:nth-child(2) {
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
  }
  .menu.open .line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }
  .menu.open .line:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }
}
.active .toggle-menu-wrapper {
  height: 65px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #f56a00, #fa903f);
  z-index: 101;
  transition: 1.1s ease;
}

/* _____PC_____ */

.toggle-pc-menu {
  display: flex;
  position: relative;
  cursor: pointer;
  width: 27px;
  height: 16.9px;

}

.toggle-pc-menu .line {
  position: absolute;
  transform-origin: center;
  width: 100%;
  border-radius: 4px;
  height: 2px;
  transition: 0.4s;
  background-color: #df6a01;
}

.toggle-pc-menu .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
	width: 60%;
}

.toggle-pc-menu .line:nth-child(3) {
  bottom: 0;
	width: 80%;
}