.desk__wrap {
  display: grid;
  grid-template-areas:
  'header header header header'
  'main disc disc disc '
  'rec disc disc disc';
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
}

.d--mobile-wrapper {
    max-width: 440px;
    width: calc(100vw - 67vw);
/*  max-width: 32.5%; */
}

.d--desktop-wrapper {
  display: flex !important;
  background: url(../assets/images/bg-desktop-6.jpg) no-repeat center center;
  background-size: cover;
  width: 66.6vw;
  right: 0;
  top: 0;
  position: fixed;
  height: 100vh;
  padding-top: 1.5rem;
  z-index: 2022;
}

.d--desktop-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.d--flex {
  display: flex;
}

.d--header {
  position: fixed;
  top: 0;
  background: var(--white);
  width: 100%;
  /* background-color: rgba(255, 255, 255, 0.5); */
  z-index: 2022;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  box-shadow:
  0 3px 6px rgba(0, 0, 0, 0.05),
  0 3px 6px rgba(0, 0, 0, 0.05);
}

.d--search-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #F2F1F1;
  width: 22rem;
  padding-left: 1.0rem;
  padding-right: 1.2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row-reverse;
}

.d--navbar__search-input {
  display: block;
  width: 100%;
  border: none;
  background: none;
  font-size: 1.0rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  outline: none;
  padding: 0.5rem;
  padding-left: 0;
  padding-right: 0.5rem;
}

.d--navbar__search-input::placeholder {
  color: #BAB9B9;
}

.d--intro {
  padding-top: 5rem;
}

.d--logo {
  object-fit: cover;
  border-radius: 0.8rem;
  padding: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  height: 1rem;
  width: 7rem;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.25),
    0 4px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255,255,255, 0.9);
}

.d--logo img {
  filter: brightness(20px) contrast(20px) saturate(30px);
}

.d--menu {
  position: absolute;
  z-index: 20;
  display: flex;
  margin-top: 1rem;
  color: var(--white);
  gap: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.d--menu li {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  min-width: fit-content;
  border-radius: 1rem;
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
}

.d--menu img:not(:nth-of-type(1)) {
  color: white;
  fill: white;
  filter: brightness(20) invert(1);
}

.d--menu img:nth-of-type(1) {
  opacity: 0.8;
  filter: invert(1);
}

.d--menu li.active {
  background: var(--white);
  color: rgb(108, 108, 108);
}

.d--menu li:hover:not(:active) {
  background: rgba(255, 255, 255, 0.2);
}
