.galleryc {
  width: 100%;
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 500px;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

.gallery-item {
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 250px;
  z-index: 0;
  height:325px;
  background: rgba(236, 240, 245, 0.7)!important;
  box-shadow: none;
}

.gallery-item.gallery-item-selected {
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  z-index: 2;
  height:425px;
  background: #fff!important;
  box-shadow: 0px 27px 43px #05398878;
}

.gallery-item.gallery-item-selected .our_center_slide_img{margin-bottom:20px; width:150px; margin-left:auto; margin-right:auto; margin-top:20px;}

.gallery-item.gallery-item-previous .our_center_slide_img{margin-bottom:20px; width:120px; margin-left:auto; margin-right:auto; margin-top:10px;}

.gallery-item.gallery-item-next .our_center_slide_img{margin-bottom:20px; width:120px; margin-left:auto; margin-right:auto; margin-top:10px;}

.gallery-item.gallery-item-previous,
.gallery-item.gallery-item-next {
  opacity: 1;
  width: 250px;
  z-index: 1;
  height:375px;
    background: #fff!important;
	box-shadow: 0px 27px 43px #05398878;
}

.gallery-item.gallery-item-previous {
  left: 30%;
  transform: translateX(-50%);
}

.gallery-item.gallery-item-next {
  left: 70%;
  transform: translateX(-50%);
}

.gallery-item.gallery-item-first {
  left: 10%;
  transform: translateX(-50%);
}

.gallery-item.gallery-item-last {
  left: 90%;
  transform: translateX(-50%);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.gallery-controls button {
  border: 0;
  cursor: pointer;
  margin: 0 0px;
  padding: 0px;
  text-transform: capitalize;
  background-color: transparent;
  margin-top:-10px;
}

.gallery-controls button:focus {
  outline: none;
}

.gallery-controls-previous {
	position: relative;
	  color:transparent;

}

.gallery-controls-previous::before {
  content: '';
  display: inline-block;
  height: 100px;
  position: absolute;
  width:100px;
  background-image: url(../images/Button1.png); background-repeat: no-repeat;
  background-size: 100px 100px; 
  left: -25px;
}

.gallery-controls-previous:hover::before {

}

.gallery-controls-next {
  position: relative;
  color:transparent;
}

.gallery-controls-next::before {
  content: '';
  display: inline-block;
  height: 100px;
  position: absolute;
  width:100px;
  background-image: url(../images/Button.png); background-repeat: no-repeat;
  background-size: 100px 100px; 
  right: -35px;
}

.gallery-controls-next:hover::before {

}

.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;
}

.gallery-item.gallery-item-selected .our_center_slide_text h2{font-size:2.2rem; line-height:2rem;}
.gallery-item .our_center_slide_text h2{font-size:1.2rem; line-height:1.2rem;}
.gallery-item.gallery-item-previous .our_center_slide_text h2,
.gallery-item.gallery-item-next .our_center_slide_text h2{font-size:1.5rem; line-height:1.5rem;}