.gradient-title {
  padding: 15px 5px;
  margin: 10px 0px;
  color: #fff;
  background: rgb(220,11,88);
  background: linear-gradient(90deg, rgba(220,11,88,1) 26%, rgba(133,69,145,1) 79%);
  letter-spacing: 0.5px;
}

.gallery-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.kun-gallery {
  flex: 1;
}

.kun-gallery ul {
  list-style-type: none;
  padding: 0;
}

.kun-gallery li {
  display: inline-block;
  padding: 0;
}

.kun-gallery ul li a {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.kun-gallery ul li a:hover {
  opacity: .9;
}
.kun-gallery ul li {
  position: relative;
  overflow: hidden;
  width: calc(33% - 3px);
  height: 25vw;
}

.kun-lightbox {
  z-index: 999999;
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  display: none; /* changed to work on gallery */
}

.kun-modal {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.gallery-container .left-arrow,
.gallery-container .right-arrow,
.gallery-container .close-icon {
  position: absolute;
  color: white;
  top: 50%;
  line-height: 0;
  left: 20px;
  font-size: 4vw;
  font-weight: 300;
  font-family: sans-serif;
  cursor: pointer;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-container .right-arrow {
  right: 20px;
  left: auto;
}

.gallery-container .close-icon {
  top: 20px;
  right: 20px;
  left: auto;
  font-size: 3vw;
}

.kun-lightbox img {
  max-width: 80%;
  max-height: 80%;
  height: auto;
  width: auto;
  margin: auto;
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}