
/* GENERAL */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .section--index {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background: url("https://media.bizj.us/view/img/11984066/gettyimages-867528050*1200xx5472-3078-0-285.jpg") center center / cover no-repeat;
    }

    /* VIDEO BACKGROUND */
    .bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .section--index::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .72);
      z-index: 1;
    }

    .header--index,
    .wp--index,
    footer {
      position: relative;
      z-index: 2;
    }

    .container {
      width: min(1120px, 90%);
      margin: 0 auto;
    }

    .header--index {
      padding: 36px 0;
    }

    .header--index .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-main {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-main img {
      width: 58px;
    }

    .logo-text span {
      display: block;
      line-height: 1.1;
    }

    .logo-text span:first-child {
      font-size: 30px;
      font-weight: 800;
    }

    .logo-text span:last-child {
      font-size: 15px;
      font-weight: 600;
    }

    .header--socmed {
      display: flex;
      gap: 16px;
    }

    .header--socmed a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      color: #0866c2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: .3s;
    }

    .header--socmed a:hover {
      background: #0866c2;
      color: #fff;
      transform: translateY(-4px);
    }

    .wp--index {
      min-height: calc(100vh - 112px);
      display: flex;
      align-items: center;
      padding-bottom: 45px;
    }

    .row {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      align-items: center;
      gap: 50px;
    }

    /* SLIDER FOTO PEJABAT */
    .side--img {
      position: relative;
      height: 100%px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .side--img img {
      position: absolute;
      max-width: 100%;
      max-height: 100%px;
      object-fit: contain;
      opacity: 0;
      animation: fadeSlider 12s infinite;
      transform: translateY(35px);
    }

    .side--img img:nth-child(1) {
      animation-delay: 0s;
    }

    .side--img img:nth-child(2) {
      animation-delay: 4s;
    }

    .side--img img:nth-child(3) {
      animation-delay: 8s;
    }

    @keyframes fadeSlider {
      0% {
        opacity: 0;
      }
      8% {
        opacity: 1;
      }
      30% {
        opacity: 1;
      }
      38% {
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }

    .nav--main {
      display: grid;
      grid-template-columns: repeat(3, 170px);
      gap: 22px;
      margin-bottom: 28px;
      justify-content: end;
    }

    .nav--main a {
      height: 145px;
      background: #0866c2;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(0,0,0,.35);
      transition: .3s;
    }

    .nav--main a:hover {
      background: #0b79e5;
      transform: translateY(-6px);
    }

    .nav--main .icon {
      font-size: 42px;
      margin-bottom: 16px;
    }

    .nav--main span {
      font-size: 16px;
      font-weight: 700;
    }

    .contact--list {
      display: flex;
      justify-content: end;
      gap: 28px;
      flex-wrap: wrap;
    }

    .contact--list a {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 15px;
      font-weight: 600;
    }

    footer {
      position: fixed;
      right: 25px;
      bottom: 15px;
      font-size: 13px;
      color: rgba(255,255,255,.7);
      z-index: 5;
    }

    @media (max-width: 992px) {
      .row {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .side--content {
        order: 1;
      }

      .side--img {
        order: 2;
        height: 360px;
      }

      .side--img img {
        max-height: 360px;
        transform: translateY(0);
      }

      .nav--main {
        justify-content: center;
      }

      .contact--list {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .header--index .container {
        flex-direction: column;
        gap: 20px;
      }

      .nav--main {
        grid-template-columns: 1fr;
      }

      .nav--main a {
        width: 100%;
      }
    }
