@font-face {
  font-family: "Albert Sans";
  src: url("./font/AlbertSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

.outer {
  display: flex;
  justify-content: center;
  width: 100%;
  .inner {
    padding: 100px 32px;
    max-width: 1300px;
    width: calc(100% - 64px);
    @media (max-width: 650px) {
      padding: 100px 16px;
      width: calc(100% - 32px);
    }
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Albert Sans";
  margin: 0;
}

a {
  text-decoration: none;
  color: white;
}

h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  color: rgb(53, 53, 53);
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  .slider {
    display: flex;
    height: 266px;
    width: 1500px;
    position: relative;
    overflow: hidden;
    .slide {
      height: 100%;
      display: flex;
      align-items: center;
      animation: slideshow 60s linear infinite;
      img {
        height: 100%;
        margin-right: 16px;
      }
    }
    &::before,
    &::after {
      height: 100%;
      width: 200px;
      position: absolute;
      content: "";
      background: linear-gradient(
        to right,
        white 0%,
        white 10%,
        rgba(245, 248, 255, 0) 100%
      );
      z-index: 2;
    }
    &::before {
      left: 0;
      top: 0;
    }
    &::after {
      right: 0;
      top: 0;
      transform: rotateZ(180deg);
    }
    @media (max-width: 800px) {
      height: 200px;
    }
  }
}

.telegram-box {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  img {
    height: 30px;
  }
  .contact-box {
    h3 {
      margin: 0;
      font-size: 16px;
      letter-spacing: 1px;
      font-weight: 300;
      margin-bottom: -4px;
    }
    a {
      font-size: 12px;
      letter-spacing: 1px;
      opacity: 0.5;
    }
  }
  &:hover {
    transform: scale(1.025);
  }
}

header {
  background-image: linear-gradient(
      180deg,
      rgb(0, 0, 0, 0.4) 0%,
      rgb(0, 0, 0, 0.8) 100%
    ),
    url("./images/header.jpg");
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100vh;
  color: white;
  .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 100px 0px !important;
    .navbar {
      width: 100%;
      padding: 30px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.771);
      display: flex;
      align-items: center;
      justify-content: space-between;
      nav {
        padding-left: 40px;
        display: flex;
        gap: 16px;
        a {
          font-size: 16px;
          letter-spacing: 0.7px;
          &:hover {
            transform: scale(1.05);
          }
        }
        @media (max-width: 650px) {
          padding: 0;
          width: 100%;
          justify-content: center;
        }
      }
      .right-box {
        padding-right: 40px;
        @media (max-width: 650px) {
          display: none;
        }
      }
    }
    .headline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      max-width: 950px;
      .video {
        width: 200px;
        height: 200px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        video {
          width: 325px;
        }
      }
      h1 {
        margin: 0;
        font-size: 60px;
        font-weight: 500;
        text-align: center;
        @media (max-width: 650px) {
          font-size: 40px;
        }
      }
      .content-box {
        display: flex;
        gap: 56px;
        .item {
          display: flex;
          align-items: center;
          gap: 14px;
          img {
            width: 20px;
            opacity: 0.6;
          }
          span {
            font-size: 16px;
          }
        }
        @media (max-width: 650px) {
          flex-wrap: wrap;
          justify-content: center;
          gap: 16px;
        }
      }
      p {
        margin: 0;
        padding-top: 6px;
        text-align: center;
        font-size: 16px;
        line-height: 28px;
        opacity: 0.8;
      }
    }
  }
  @media (max-width: 650px) {
    .video {
      margin-top: 100px;
    }
    height: auto;
  }
}

.basic-paragraph {
  color: rgb(53, 53, 53);
  margin: 0;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.vision {
  text-align: center;
  .inner {
    h2 {
      padding-bottom: 32px;
    }
    p {
      padding-bottom: 52px;
    }
  }
}

.einblick {
  background-color: rgba(241, 241, 241, 0.657);
  text-align: center;
  .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    h2 {
      padding-bottom: 32px;
    }
    p {
      max-width: 990px;
    }
    .gallery {
      display: flex;
      gap: 32px;
      padding-top: 64px;
      .item {
        width: 50%;
        img {
          width: 100%;
          max-height: 450px;
          object-fit: cover;
        }
        h3 {
          font-size: 32px;
          font-weight: 500;
          margin: 0;
          padding: 24px 0 8px 0;
        }
        p {
          margin: 0;
          padding-top: 8px;
          opacity: 0.4;
        }
      }
      @media (max-width: 800px) {
        flex-direction: column;
        gap: 64px;
        .item {
          width: 100%;
        }
      }
    }
  }
}

.ausblick {
  .inner {
    .top {
      display: flex;
      align-items: center;
      gap: 150px;
      .text-content {
        width: 50%;
        p {
          padding: 24px 0;
        }
        button {
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 20px 24px;
          border: none;
          background-color: rgb(65, 124, 240);
          color: white;
          border-radius: 6px;
          img {
            width: 25px;
          }
          &:hover {
            opacity: 0.9;
          }
        }
      }
      .box-wrapper {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        .item {
          width: calc(50% - 16px);
          h4 {
            margin: 0;
            font-size: 24px;
            font-weight: 500;
            padding: 32px 0 24px 0;
            border-top: 2.5px solid rgba(211, 211, 211, 0.317);
          }
          p {
            margin: 0;
            padding-bottom: 32px;
            opacity: 0.4;
          }
        }
      }
      @media (max-width: 1150px) {
        gap: 75px;
      }
      @media (max-width: 1075px) {
        flex-direction: column;
        .text-content {
          width: 100%;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .box-wrapper {
          width: 100%;
          .item {
            @media (max-width: 600px) {
              width: 100%;
            }
          }
        }
      }
    }
    .bottom {
      text-align: center;
      padding-top: 64px;
      font-size: 16px;
    }
  }
}

.kontakt {
  text-align: center;
  background-image: linear-gradient(
      180deg,
      rgb(0, 0, 0, 0.7) 0%,
      rgb(0, 0, 0, 0.7) 100%
    ),
    url(./images/header.jpg);
  background-size: cover;
  background-position: 50% 40%;
  .inner {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    h2 {
      color: white;
      padding-bottom: 40px;
      @media (max-width: 650px) {
        font-size: 34px;
      }
    }
    .line {
      width: 250px;
      height: 2.5px;
      background-color: rgba(211, 211, 211, 0.167);
      margin-bottom: 40px;
    }
    img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 50%;
    }
    h4 {
      color: white;
      margin-bottom: 0;
    }
    .job {
      padding-top: 8px;
      color: white;
      font-size: 16px;
      opacity: 0.6;
    }
  }
}

.footer {
  background-color: rgba(241, 241, 241, 0.657);
  .inner {
    max-width: 1400px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    .logo {
      width: 220px;
    }
    .box-wrapper {
      display: flex;
      gap: 16px;
      .content-box {
        display: flex;
        flex-direction: column;
        width: 50%;
        min-width: 300px;
        h4 {
          font-size: 22px;
          font-weight: 500;
          margin: 0;
          padding-bottom: 24px;
          border-bottom: 2.5px solid rgba(211, 211, 211, 0.527);
        }
        a {
          color: black;
        }
        .legal {
          padding-top: 10px;
          .legal-item {
            display: block;
            margin-top: 24px;
            font-size: 16px;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-color: rgb(211, 211, 211);
            text-decoration-thickness: 2px;
            opacity: 0.8;
            &:hover {
              opacity: 1;
            }
          }
        }
        &:last-child {
          .telegram-box {
            margin-top: 34px;
          }
          h5 {
            margin: 0;
            padding-top: 32px;
            font-weight: 400;
            font-size: 16px;
          }
          p {
            margin: 0;
            font-size: 14px;
            padding-top: 12px;
            opacity: 0.5;
          }
        }
      }
    }
    @media (max-width: 1000px) {
      flex-direction: column;
      gap: 80px;
      align-items: center;
      text-align: center;
      .content-box {
        &:last-child {
          align-items: center;
          h4 {
            width: 100%;
          }
        }
      }
    }
    @media (max-width: 750px) {
      .box-wrapper {
        flex-direction: column;
        gap: 64px;
      }
    }
  }
}

.legal {
  header {
    height: auto;
    background-image: none;
    .nav-inner {
      justify-content: space-between;
      padding: 0 50px;
      .logo-box {
        padding: 0;
        justify-content: center;
      }
    }
    a {
      color: rgb(116, 116, 116) !important;
      &:hover {
        opacity: 0.8;
      }
    }
  }
  .content {
    padding: 50px;
  }
  @media (max-width: 620px) {
    h2 {
      font-size: 26px;
    }
  }
}

.nav-outer {
  height: 100px;
  background-color: rgba(241, 241, 241, 0.657);
  .nav-inner {
    height: 100%;
    nav {
      height: 100%;
      display: flex;
      align-items: center;
    }
  }
}
