
.footer-produkty .contact-info
{
    color: black;
}
.cop-produkty {
    margin-top: 0px;
}
.produkty-main-page {
  width: 100%;
  max-height: 15vh;
  margin-top: 50px;
  background-image: url(../img/vitamin\ c6.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;
}
.text-produkty-page h2 {
  font-size: 2.7rem;
}
.text-produkty-page {
  margin-top: 140px;
  box-shadow: 0px 5px 10px rgb(255, 221, 201);
  text-align: center;
  background: rgb(255, 251, 247);
  padding: 0px 30px 0px 30px;
  backdrop-filter: blur(10px);
  color: var(--main-color);
  border-radius:50px;
}


/***box produkty***/

.box {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 123, 0, 0.793) 100%);
    position: relative;
    max-width: 350px;
    height: 350px;
    border-radius: 50px;
  }
  .box .box-img {
    width: 100%;
    height: 330px;
    position: absolute;
    overflow: hidden;
  }
  .box .box-img img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover;
    object-position: center;
    z-index: 500;
    transition: transform 0.5s ease;
  }
  .box .box-img img:hover {
    transform: scale(1.1);
    transition: 0.5s;
  }
  .title-product {
    border-radius: 50px;
    display: flex;
    bottom: 0px;
    position: absolute;
    width: 100%;
    margin-top: 40px;
    height: 80px;
    padding: 12px 50px 12px 15px;
    color: rgb(255, 255, 255);
    background: radial-gradient(circle at bottom, rgba(255, 85, 0, 0) 0%, rgba(255, 0, 0, 0.137) 70%, rgba(255, 123, 0, 0.903) 100%);
    backdrop-filter: blur(10px);
    z-index: 800;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.17);
    border: 2px solid rgba(255, 159, 69, 0.903);
  }
  .title-product h3 {
    margin: auto;
    font-size: 1rem;
    font-weight: 600;
  }
  .box .bx-left-arrow-alt {
    right: 10px;
    margin-top: 15px;
    position: absolute;
    margin-left: 100px;
    padding: 0px 10px;
    font-size: 24px;
    color: white;
  }
  .back-vice {
    background: -webkit-linear-gradient(right, var(--second-color), rgb(255, 174, 99));
    padding: 10px;
    border-radius: 30px;
    max-width: 71%;
    margin: auto;
  }
  .back-vice:hover {
    transition: 0.5s;
    border-radius: 5px;
  }
  .back-vice span{
    color: white;
    font-size: 20px;
    font-weight: 500;
  }


  /****Responzivita*****/

  @media (max-width: 700px) {
    .box .bx-left-arrow-alt {
      display: none;
    }
    .back-vice span {
      font-size: 15px;
    }
    .box .box-img {
      height: 300px;
    }
    .box {
      width: 270px;
      margin: auto;
    }
    .text-produkty-page h2 {
        font-size: 19px;
      }
      .title-product {
        height: 80px;
      }
      .title-product .bx {
        margin-top: 25px;
      }
      .title-product h3 {
        font-size: 13px;
        margin-right: 10px;
        padding-left: 30px;
      }
  }