.header {
  margin: 0 296px;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: space-between;

  .left-side {
    .add-on {
      display: flex;
      align-items: center;
      background: linear-gradient(360deg, rgba(243, 98, 20, 0.15) 0%, rgba(243, 98, 20, 0) 100%);
      border: 1px solid #F36214;
      border-radius: 45px;
      padding: 5px 20px;
      gap: 7px;
      width: 290px;
      height: 30px;
      margin-bottom: 17px;

      p {
        color: #F36214;
        font-family: ClashDisplay-Medium;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
      }
    }

    h2 {
      width: 672px;
      font-family: 'ClashDisplay-Bold';
      font-weight: 700;
      font-size: 42px;
      line-height: 52px;
      color: #FFFFFF;
      margin: 0;
    }

    .infos {
      display: flex;
      align-items: center;

      .info {
        display: flex;
        align-items: center;

        .icon {
          width: 12px;
          height: 18px;
          color: #F36214;
          margin-right: 8px;
        }

        p {
          font-family: 'ClashDisplay-Medium';
          font-weight: 500;
          font-size: 16px;
          line-height: 20px;
          color: #945833;
          margin-right: 12px;
        }
      }
    }

    .buttons {
      display: flex;
      align-items: center;

      p {
        font-family: 'ClashDisplay-Semibold';
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 1.2px;
        color: #FFFFFF;
      }

      .button-1,
      .button-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 40px;
        border-radius: 16px;
        gap: 4px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
      }

      .button-1 {
        background: #F36214;
        margin-right: 15px;

        &:hover {
          background: #9e4414;
        }
      }

      .button-2 {
        border: 1px solid #FFFFFF;

        &:hover {
          border-color: #b3b3b3;
          background: #acacac1a;
        }
      }
    }
  }

  .glow-wrapper {
    height: 0;
    overflow: hidden;

    .glow {
      overflow: hidden;
      position: absolute;
      width: 1561px;
      height: 1561px;
      left: -243px;
      top: -725px;
      background: radial-gradient(50% 50% at 50% 50%, #42281A 0%, rgba(15, 11, 10, 0) 100%);
      z-index: -1;
      pointer-events: none;
      animation: pulse 45s infinite ease-in-out;
    }
  }

  /* MOBILE */
  @media screen and (max-width: 768px) {
    margin: 0 40px;
    flex-direction: column;
    height: auto;

    .left-side {
      width: 100%;
      flex-direction: column;
      align-items: center;
      margin: 15vh 0 20vh;

      .add-on {
        width: auto;
        padding: 0 20px;
        height: auto;
        flex-wrap: wrap;

        p {
          margin: 9px 0;
        }
      }

      h2 {
        width: 100%;
        font-size: 28px;
        line-height: 36px;
        text-align: center;
      }

      .infos {
        align-items: flex-start;
        gap: 8px;
        margin: 0 0 5px;

        .info p {
          font-size: 12px;
        }
      }

      .buttons {
        align-items: stretch;
        width: 100%;
        gap: 10px;

        .button-1,
        .button-2 {
          width: 100%;
          padding: 9px 15px;
          margin-right: 0;
        }

        p {
          font-size: 14px;
        }
      }
    }
    .glow {
      display: none;
    }
    .image {
      display: none;
    }
  }

  /* TABLET */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    margin: 0 80px;
    height: auto;
    padding: 60px 0;

    .left-side {
      width: 60%;

      h2 {
        font-size: 36px;
        line-height: 44px;
        width: 100%;
      }

      .add-on {
        width: 250px;
        padding: 5px 15px;
      }

      .infos .info p {
        font-size: 15px;
      }

      .buttons {
        gap: 12px;

        .button-1,
        .button-2 {
          padding: 0 30px;
          font-size: 15px;
        }
      }
    }

    .image {
      width: 40%;

      img {
        max-width: 350px;
        height: auto;
      }
    }
  }

  /* ULTRA WIDE */
  @media screen and (min-width: 2500px) {
    margin: 0 400px;
    height: 80vh;

    .left-side {
      h2 {
        font-size: 48px;
        line-height: 56px;
        width: 720px;
      }

      .add-on {
        width: 320px;
        padding: 5px 25px;
      }

      .infos .info p {
        font-size: 18px;
      }

      .buttons .button-1,
      .buttons .button-2 {
        padding: 0 50px;
        font-size: 18px;
      }
    }

    .glow-wrapper .glow {
      width: 1800px;
      height: 1800px;
      left: -300px;
      top: -800px;
    }

    .image img {
      max-width: 500px;
      height: auto;
    }
  }
}

