/* screen - 01-desktop-cover */

.x01-desktop-cover {
  background-color: var(--ebony-clay);
  cursor: pointer;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.x01-desktop-cover > *
{
  margin-right: 63px;
}
.x01-desktop-cover h1 {
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-family-bebas_neue);
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 10.08px;
  line-height: 36px;
  mix-blend-mode: normal;
  text-align: right;
  width: auto;
}
.x01-desktop-cover img {
  background-color: transparent;
  height: 468px;
  mix-blend-mode: normal;
  width: 749px;
  margin-top: 152px;
  margin-bottom: 180px;
}

@media only screen and (max-device-width: 1024px){
  .x01-desktop-cover{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .x01-desktop-cover > *
  {
    margin-right: auto;
    margin-left: auto;
  }
  .x01-desktop-cover h1 {
    width: 90%;
    text-align: center;
     letter-spacing: 0.22em;
  }
  .x01-desktop-cover img {
    width: 90%;
    height: auto;
    margin-top: 50%;
    margin-bottom: 180px;
  }
}

