#popup {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}

#popup.active{
  opacity: 9999999;
  visibility: visible;
}

#popup .container {
  margin: 0 auto;
  box-sizing: content-box;
  max-width: calc(1430px + 2 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}



.menu-items {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: clamp(40px, 18vh, 180px);
  padding-bottom: clamp(40px, 14vh, 110px);
  gap: 5vh;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .menu-items {
    height: 100vh;
    /* height: calc(100vh - 100px); */
    justify-content: space-between;
    padding-bottom: 70px;
    padding-top: 100px;
  }
}




.menu-items ul {
  font-size: clamp(35px, 3.846vw + 20.769px, 90px)!important;
  text-transform: uppercase;
}
.menu-primary li a{
  font-size: clamp(35px, 3.846vw + 20.769px, 90px)!important;
  text-transform: uppercase;
    font-weight: 300!important;
}

.menu-items1 li {
  font-weight: 300!important;
}

.menu-items2 {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .menu-items2 {
    height: 60vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 104px;
    gap: 5vh;
  }

  .get-in-touch {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

.get-in-touch * {
  color: #fff;
}

.get-in-touch h2 {
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(30px, 1.399vw + 24.823px, 50px);
  margin-bottom: clamp(3px, 0.979vw - 0.622px, 17px);
}

.get-in-touch li {
  line-height: 1.5;
  font-size: clamp(14px, 0.42vw + 12.446px, 20px);
}

.get-in-touch a {
  font-weight: 300;
  font-size: clamp(14px, 0.42vw + 12.446px, 20px);
  line-height: 1.5;
}

.get-in-touch ul a {
  font-weight: 600;
}

.get-in-touch ul {
  margin-bottom: clamp(0px, 0.35vw - 1.295px, 5px);
}


#close-popup {
  right: 0;
  background-color: transparent;
  border: none;
  position: absolute;
  top: clamp(10px, 10vh, 100px);
}

#close-popup img {
  width: clamp(25.5px, 1.329vw + 20.583px, 44.5px);
  height: auto;
}

@media screen and (max-width: 768px) {
  #close-popup {
    top: 50px;
  }
}


#close-popup svg {
  fill: #5ef92b;
  transition: filter 0.3s ease;
}

.menu-filter-btn span {
  cursor: pointer;
}

.menu-items a,
.td-none {
  text-decoration: none;
}

.menu-primary li a,
.menu-secondary li a {
  transition-duration: 0s;
}

.menu-items .orange:hover {
  color: var(--collor-orange);
}

.menu-items .yellow:hover {
  color: var(--collor-yellow);
}

.menu-items .green:hover {
  color: var(--collor-green);
}

.menu-items .cyan:hover {
  color: var(--collor-cyan);
}

.menu-items .pink:hover {
  color: var(--collor-pink);
}

.menu-items .color3d:hover {
  color: #fff;
  font-weight: 600;
  text-shadow: var(--text-shadow-white);
}

.menu-items .rainbow {
  position: relative;
}



#get-in-touch:hover * {
  color: var(--collor-pink);
}

@media screen and (min-height:700px) and (max-width: 500px) {
  .menu-items {
    gap: 10vh;
  }
}


@media screen and (max-width: 500px) {
  #popup .container {
    display: block;
  }

  .menu-items {
    /* height: 100vh; */
    height: calc(100% - 200px);
    justify-content: space-between;
    padding-bottom: 30px;
  }

  .menu-items2 {
    height: 37vh;
    gap: 3vh!important;
  }
}
