#site_banner {
  object-fit: cover; 
  width: 100%; 
  max-height: 80vh;
}
#banner_col {
    position: relative;
    display: inline-block;
}

#banner_next {
    position: absolute;
    top: 50%;
    right: 3%;
    padding: 0;
}

#banner_previous {
  position: absolute;
  top: 50%;
  left: 3%;
  padding:0;
}

.icon-next {
  font-size: 3rem; 
  color: white;
}

.icon-previous {
  font-size: 3rem; 
  color: white;
}

.stripText {
  font-size: 0.9rem;
}

.photoGallery {
  height: 10vw;
}

.vl {
  border-left: 6px solid green;
  height: 100%;
}

.footerProductsText {
  font-size: small;
}

.iconSize {
  font-size: x-large;
}

@media screen and (max-width: 600px) {
  #banner_next {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(0, -50%);
  }

  #banner_previous {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translate(-50%, -50%);
  }

  .stripText {
    font-size: 0.5rem;
  }

  .photoGallery {
    height: 50vw;
  }

}