/* product header and product title */
.productHeader .exploreButton{
    margin-left: 0px;
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    padding: 5px 20px;
    border: 1px solid blue;
    justify-content: space-between;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.574);
    transition: all 0.5s ease;
    cursor: pointer;
    margin-left: 1200px;
    margin-bottom: 20px;
}
.productHeader .exploreButton p{
    margin-right: 3px;
    font-size: 20px;
    color: blue;
}
.productHeader .exploreButton a{
  text-decoration: none;
}
.productHeader .exploreButton:hover {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.574);
}
.productHeader .exploreButton:active {
    box-shadow: none;
}
.productHeader .exploreButton img{
    padding: 0;
    margin: 0;
}

/* product header and product title */
.producttitleName{
    width: 266px;
    height: 58px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: 58px;
    text-align: center;
    letter-spacing: 0.235em;
    color: transparent;
    -webkit-text-stroke: 1.5px #46599D;
    -webkit-text-size-adjust: unset;
    margin: auto;
}
/* product card slider  */

/* Slideshow container */
.slideshow-container{
    width: 1300px;
    position: relative;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: rgb(0, 157, 255);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* The dots/bullets/indicators */
  .productall .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(0, 217, 255);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .dotHolder .active, .productall .dot:hover {
    background-color: blue;
    height: 20px;
    width: 20px;
  }
  
  /* Fading animation */
  .fade1 {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade1 {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }

  .productall {
    width: 1400px;
    margin: auto;
  }