#home.header {
  background: #05060A;

  .content {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    right: 0;
    color: white;
    margin: auto;
    padding-top: 56px;
    width: 100%;

    .nav_mobile {
      display: none;

      .links {
        display: none;
      }
    }

    .navigationContainer {
      display: flex;
      justify-content: space-between;
      align-items: center;

      .headerText {
        font-size: 48px;
        text-shadow: 0 48px 13px rgba(255, 255, 255, 0.2);
      }

      .navigation {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 64px;

        .link {
          font-size: 24px;
          font-weight: 100;
        }
      }

      .actions {
        display: flex;
        align-items: center;
        gap: 24px;

        .button {
          box-shadow: 4px 4px 4px #fff2;
        }

        .language {
          position: relative;
          display: flex;
          flex-direction: column;

          .languages {
            position: absolute;
            top: 100%;
            background-color: #05060A;
            display: flex;
            flex-direction: column;
            gap: 5px;
            text-align: left;
            width: 100%;
          }
        }
      }
    }
  }

  .imgContainer {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: auto;

    .image {
      width: 100%;
      height: initial;
      object-fit: cover;
      mix-blend-mode: lighten;
      background-color: #05060A;
    }

    .headerText_mobile {
      display: none;
    }

    .quality {
      position: absolute;
      width: fit-content;
      left: 0;
      right: 0;
      top: 50%;
      font-size: 8rem;
      margin: auto;
      z-index: 10;
      color: white;
      pointer-events: none;
    }

    .button_mobile {
      display: none;
    }
  }
}

/* @media (width > 2500px) {
  .navigationContainer {
    margin-top: 21%;
  }
} */

@media (width < 1235px) {
  #home.header {
    .content {
      .navigationContainer {
        justify-content: initial;
        gap: 20px;

        .headerText {
          display: none;
        }

        .nav_mobile {
          display: block;
          position: relative;

          .burgerButton {
            background: none;
            outline: none;
            border: none;
          }

          .links {
            position: absolute;
            flex-direction: column;
            padding: 16px;
            background: linear-gradient(130deg, white, #999 30%);
            border-radius: 0 32px 32px;
            display: flex;
            gap: 8px;

            .link {
              font-weight: 300;
            }
          }
        }

        .navigation {
          display: none;
        }

        .actions {
          .button {
            display: none;
            box-shadow: 4px 4px 4px #fff2;
          }
        }
      }
    }

    .imgContainer {
      width: 100%;
      max-width: 100%;
      max-height: initial;

      .headerText_mobile {
        font-size: 4rem;
        font-weight: 600;
        color: white;
        display: block;
        position: absolute;
        width: fit-content;
        left: 0;
        right: 0;
        top: 40%;
        margin: auto;
        z-index: 10;
      }

      .quality {
        font-size: 2rem;
        color: #C2C2C2;
        font-weight: 600;
      }

      .button_mobile {
        display: block;
        text-align: center;
        position: absolute;
        width: fit-content;
        left: 0;
        right: 0;
        top: 60%;
        margin: auto;
        z-index: 10;
        font-size: 13px;
        width: 154px;
      }
    }
  }
}

@media (width < 700px) {
  #home.header {
    .content {
      .navigationContainer {
        justify-content: initial;
        gap: 20px;

        .headerText {
          display: none;
        }

        .nav_mobile {
          display: block;
          position: relative;

          .burgerButton {
            background: none;
            outline: none;
            border: none;
          }

          .links {
            position: absolute;
            flex-direction: column;
            padding: 16px;
            background: linear-gradient(130deg, white, #999 30%);
            border-radius: 0 32px 32px;
            display: flex;
            gap: 8px;

            .link {
              font-weight: 300;
            }
          }
        }

        .navigation {
          display: none;
        }

        .actions {
          .button {
            display: none;
            box-shadow: 4px 4px 4px #fff2;
          }
        }
      }
    }

    .imgContainer {
      width: 100%;
      max-width: 100%;
      max-height: initial;

      .headerText_mobile {
        font-size: 2rem;
        font-weight: 600;
        color: white;
        display: block;
        position: absolute;
        width: fit-content;
        left: 0;
        right: 0;
        top: 35%;
        margin: auto;
        z-index: 10;
      }

      .quality {
        font-size: 16px;
        color: #C2C2C2;
        font-weight: 600;
      }

      .button_mobile {
        display: block;
        text-align: center;
        position: absolute;
        width: fit-content;
        left: 0;
        right: 0;
        top: 60%;
        margin: auto;
        z-index: 10;
        font-size: 13px;
        width: 154px;
      }
    }
  }
}