.gallery {
  width: 100%; position:relative
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 400px;
  margin: 0 auto;
  max-width: 90%;
  position: relative;
}

.gallery-item {
  height: 150px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 150px; transform: translateX(-10%);
  z-index: 0; background:#ffffff; border-radius:10px; padding:50px; border:1px solid #213e80
}

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

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

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

.gallery-item-3 {
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
-moz-box-shadow:    0px 0px 10px 3px rgba(0, 0, 0, 0.2);
box-shadow:         0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  height: 254px;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 254px;
  z-index: 2
}

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

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

.gallery-controls {
  /*display: flex;
  justify-content: center;*/
  margin:0; position:absolute; top:50%; z-index:2; left:0; right:0; width:100%; display:flex; justify-content:space-between; margin-top:-12px
}

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

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

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

.gallery-controls-previous::before {
  border: solid #a7aec5;
  border-width: 0 2px 2px 0;
  content: '';
  display: inline-block;
  height: 25px;
  left: -10px;
  padding: 2px;
  position: absolute;
  top: 0;
  transform: rotate(135deg) translateY(-50%);
  transition: left 0.15s ease-in-out;
  width: 25px;
}

.gallery-controls-previous:hover::before {
  left: -18px; border: solid #213e80; border-width: 0 2px 2px 0;
}

.gallery-controls-next {
  position: relative; right:0
}

.gallery-controls-next::before {
  border: solid #a7aec5;
  border-width: 0 2px 2px 0;
  content: '';
  display: inline-block;
  height: 25px;
  padding: 2px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: right 0.15s ease-in-out;
  width: 25px;
}

.gallery-controls-next:hover::before {
  right: -18px; border: solid #213e80; border-width: 0 2px 2px 0;
}

.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;
}