.--nav-wrapper {
  position: sticky;
  top: 0;
  height: 100dvh;
  z-index: 100;
  background: var(--maincolor);
  border-right: 1px solid var(--graydarkmain);
}

.--nav-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: auto;
  gap: 48px;
  padding: 48px;
  background: var(--maincolor);
  transition: 0.3s ease-in-out;
}

.--nav-mobile-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.--nav-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.--nav-content img {
  width: 100%;
  height: auto;
  max-width: 192px;
  min-height: 192px;
  object-fit: cover;
  border-radius: 12px;
  object-position: 60%;
  transition: 0.3s ease-in-out;
}
.--available-card {
  font-size: var(--smalltext);
  font-weight: 500;
  color: var(--secondary);
  background: var(--greendarkmain);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: auto;
}

.--nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  background: var(--maincolor);
  transition: 0.1s ease-in-out;
}

.--nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}

.--nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 12px;
  border-radius: 12px;
  padding: 12px;
  color: var(--graymain);
  transition: 0.3s;
  cursor: pointer;
}

.--nav-link.active {
  background-color: var(--graydarkmain);
}

.--nav-link:hover:not(.active) span,
.--contact-text:hover span {
  color: var(--secondary);
}

.--nav-link:hover:not(.active) .ph-color,
.--contact-text:hover .ph-color {
  color: var(--secondary);
  transform: scale(1.5);
}

.--socmed-icons {
  display: flex;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  width: 100%;
}

.--socmed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.--socmed-icon:hover .ph-color {
  color: var(--secondary);
  transform: scale(1.5);
}

.--nav-hamburger {
  width: 24px;
  height: 24px;
  display: none;
}

.--nav-hamburger img {
  /* width: 100%;
  height: auto; */
  width: 24px;
  height: 24px;
}

.active {
  top: 0 !important;
}
