.gallery {
  width: 100%;
  overflow: hidden;
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 465px;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    margin-top: -33px;
}

.gallery-item {
  height: 200px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 248px;
  z-index: 0;
}
.gallery-item img{
  height: 100%;
}
.gallery-item p{
    font-size: 15px;
    margin-top: 15px;
}

.gallery-item-1 {
  left: 14%;
  opacity: .4;
  transform: translateX(-50%);
}

.gallery-item-2,
.gallery-item-4 {
  height: 250px;
  opacity: 1;
  width: 300px;
  z-index: 1;
}

.gallery-item-2 {
  left: 28%;
  transform: translateX(-50%);
}

.gallery-item-3 {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  height: 350px;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 515px;
  z-index: 2;
}

.gallery-item-4 {
  left: 72%;
  transform: translateX(-50%);
}

.gallery-item-5 {
  left: 85%;
  opacity: .4;
  transform: translateX(-50%);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  position: absolute;
    top: 58%;
    width: 83%;
    z-index: 9;
}

.gallery-controls button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  margin: 0 20px;
  padding: 0 12px;
  text-transform: capitalize;
  color: transparent;
}
.gallery-controls-add{
  display: none;
}

.gallery-controls button:focus {
  outline: none;
}

.gallery-controls-previous {
  left: 0;
  position: absolute;
}

.gallery-controls-previous::before {
  border: 1px solid #000;
    content: '\2039';
    display: inline-block;
    height: 48px;
    left: -10px;
    position: absolute;
    top: -20px;
    transition: left 0.15s ease-in-out;
    width: 20px;
    color: #000;
    font-size: 44px;
    line-height: 1;
    font-weight: 300;
}

.gallery-controls-previous:hover::before {
  left: -18px;
}

.gallery-controls-next {
    right: 88px;
    position: absolute;
}

.gallery-controls-next::before {
    border: 1px solid #000;
    content: '\203A';
    display: inline-block;
    height: 48px;
    right: -10px;
    position: absolute;
    top: -20px;
    transition: left 0.15s ease-in-out;
    width: 20px;
    color: #000;
    font-size: 44px;
    line-height: 1;
    font-weight: 300;
}

.gallery-controls-next:hover::before {
  right: -18px;
}

.gallery-nav {
  bottom: -15px;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;
}

.gallery-nav li {
  background: #ccc;
  border-radius: 50%;
  height: 10px;
  margin: 0 16px;
  width: 10px;
}

.gallery-nav li.gallery-item-selected {
  background: #555;
}