.proklik-main-page {
    width: 100%;
    max-height: 15vh;
    margin-top: 50px;
    background-image: url(../img/vitamin\ c5.png);
    background-size: cover;
    background-position: top;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .proklik-produkt-con {
    width: 80%;
    margin: auto;
  }

  .img-proklik-outer {
    display: flex; 
    justify-content: center; 
    margin-bottom: -100px;
  }
  
  .img-proklik-inner {
    width: 100%;
    height: 350px; 
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 123, 0, 0.793) 100%);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .img-proklik-inner img {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 0px; 
  }

  .img-proklik-outer a {
    margin-top: 320px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.192);
    padding: 10px 100px;
    border-radius: 50px;
    color: var(--main-color);
    position: absolute;
    background: white;
    border-bottom: 1px solid var(--main-color);
  }
  .img-proklik-outer a:hover {
    transition: 0.3s;
    color: white;
    background: var(--second-color);
  }


  .content-proklik {
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 90px 40px 90px 40px;
    border-radius: 50px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.192);
  }
  .content-proklik b {
    color: var(--main-color);
    margin-right: 5px;
  }
  .content-proklik ul li {
    text-align: center;
    margin: auto;

    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    max-width: 500px;
    border-radius: 50px;
    color: white;
    background: -webkit-linear-gradient(right, var(--second-color), var(--main-color));
  }

  .content-proklik a:hover {
    transition: 0.3s;
    color: white;
    background: var(--second-color);
  }



  @media (max-width: 800px) {
    .content-proklik ul li {
      padding: 10px 30px;
      margin-left: 0px;
    }
    .proklik-produkt-con {
      width: 100%;
    }
      .content-proklik a {
        position: relative;
        margin: auto;
        padding: 10px 30px;
      }
      .img-proklik {
        margin-left: 0px;
      }
    .content-proklik {
        box-shadow: none;
      }
  }