
.gallery {
	width: 100%;
	padding-top: 20px;
}
.gallery-container a {
   /** display: flex; **/
    height: 400px;
    align-items: center;
}
.gallery-container {
	/** align-items: center;
	display: flex;
	height: 400px; **/
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
	margin-top: 45px;
    margin-bottom: 40px;
	padding: 30px 30px 40px;
	border-radius: 4px 4px;
}
.gallery-item {
	height: 266px;
	position: absolute;
	transition: all .3s ease-in-out;
	width: 266px;
	z-index: 0
}
.gallery-item.gallery-item-selected {
	/* box-shadow: 0 0 30px rgba(255, 255, 255, .6), 0 0 60px rgba(255, 255, 255, .45), 0 0 110px rgba(255, 255, 255, .25), 0 0 100px rgba(255, 255, 255, .1); */
	height: 385px;
	opacity: 1;
	left: 50%;
	transform: translateX(-50%);
	width: 580px;
	z-index: 2;
	border-radius: 5px;
	box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.25);
}
.gallery-item.gallery-item-previous,
.gallery-item.gallery-item-next {
	height: 334px;
	opacity: 1;
	width: 334px;
	z-index: 1;
	border-radius: 5px;
	box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.25);
}

.gallery-item.gallery-item-previous {
	left: 31%;
	transform: translateX(-50%)
}
.gallery-item.gallery-item-next {
	left: 69%;
	transform: translateX(-50%)
}
.gallery-item.gallery-item-first {
	left: 21.3%;
	border-radius: 5px;
	transform: translateX(-50%);
	box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.25);
}
.gallery-item.gallery-item-last {
	left: 78.7%;
	transform: translateX(-50%);
	box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
}
.gallery-controls {
    position: absolute;
    z-index: 5;
    text-align: center;
    width: 100%;
}
.gallery-controls button {
	border: 0;
	cursor: pointer;
	font-size: 0px;
	margin: 0 20px;
	padding: 0 12px;
	text-transform: capitalize
}
.gallery-controls button:focus {
	outline: none
}
.gallery-controls-previous {
	position: relative
}
.gallery-controls-previous::after {
    border: solid #DB3548;;
    border-width: 1px 0px 1px 1px;
    content: '';
    display: inline-block;
    height: 70px;
    position: absolute;
    right: 400px;
    width: 40px;
    top: -41px;
    border-radius: 6px 0px 0px 6px;
}
.gallery-controls-previous::before {
    border: solid rgba(255,255,255,.71);
    border-width: 0 2px 2px 0;
    content: '';
    display: inline-block;
    height: 20px;
    padding: 2px;
    right: 410px;
    position: absolute;
    top: -23px;
    transform: rotate(135deg) translateY(-50%);
    transition: left .15s ease-in-out;
    width: 20px;
}
.gallery-controls-next::after {
    border: solid #DB3548;
    border-width: 1px 1px 1px 0px;
    content: '';
    display: inline-block;
    height: 70px;
    position: absolute;
    left: 400px;
    width: 40px;
    top: -41px;
    border-radius: 0px 6px 6px 0px;
}

.gallery-controls-next {
	position: relative
}
.gallery-controls-next::before {
    border: solid rgba(255,255,255,.71);
    border-width: 0 2px 2px 0;
    content: '';
    display: inline-block;
    height: 20px;
    padding: 2px;
    position: absolute;
    left: 410px;
    transform: rotate( -45deg) translateY(-50%);
    transition: right .15s ease-in-out;
    width: 20px;
    top: -9px;
}
.gallery-controls-next:hover::before {
	right: -18px
}
.gallery-nav {
    bottom: -60px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}
.gallery-nav li {
	background: rgba(54, 85, 148, 1);
	border-radius: 50%;
	height: 7px;
	margin: 5px;
	width: 7px
}
.gallery-nav li.gallery-item-selected {
	background:rgba(107, 139, 201, 1);
	width:9px;
    height: 9px;
	margin-top: 4px;
}
@media only screen and (max-width: 1100px){
	.gallery-item {
		height: 200px;
		width: 200px;
	}
	.gallery-item.gallery-item-selected {
		height: 305px;
		width: 460px;
	}
	.gallery-item.gallery-item-previous, .gallery-item.gallery-item-next {
		height: 250px;
		width: 250px;
	}
	.gallery-item.gallery-item-previous {
		left: 33%;
	}
	.gallery-item.gallery-item-next {
		left: 67%;
	}
	.gallery-item.gallery-item-last {
		left: 74.7%;
	}
	.gallery-item.gallery-item-first {
		left: 25%;
	}
	.gallery-controls-previous:before {
		right: 317px;
	}
	.gallery-controls-previous:after {
		right: 310px;
	}
	.gallery-controls-next:before {
		left: 317px;
	}
	.gallery-controls-next:after {
		left: 310px;
	}
	.gallery-container {
		margin-top: 0px;
	}
	.gallery-nav {
		bottom: -20px;
	}
	.site_center {
		margin-top: 30px;
	}
	.slide_inway {
		height: 100%;
		padding-bottom: 36px;
	}
	.gallery {
		padding-top: 0px;
	}
}
@media only screen and (max-width: 991px){
	.gallery-controls-previous:after {
		right: 302px;
	}
	.gallery-controls-previous:before {
		right: 310px;
	}
	.gallery-controls-next:before {
		left: 310px;
	}
	.gallery-controls-next:after {
		left: 302px;
	}
	.gallery-item.gallery-item-next {
		left: 69%;
	}
	.gallery-item.gallery-item-previous {
		left: 31%;
	}
}
@media (max-width: 810px) {
	.gallery-controls button {
		margin: 0 10px;
	}
}
@media only screen and (max-width: 860px){
	.gallery-item.gallery-item-selected {
		height: 280px;
		width: 400px;
	}
	.gallery-item.gallery-item-previous, .gallery-item.gallery-item-next {
		height: 240px;
		width: 240px;
	}
	.gallery-item.gallery-item-next {
		left: 66%;
	}
	.gallery-item.gallery-item-previous {
		left: 33%;
	}
	.gallery-item.gallery-item-last {
		left: 73.7%;
	}
	.gallery-controls-previous::before {
		right: 272px;
	}
	.gallery-controls-previous::after {
		right: 268px;
	}
	.gallery-controls-next::before {
		left: 263px;
	}
	.gallery-controls-next::after {
		left: 258px;
	}
}
@media only screen and (max-width: 768px){
	.gallery-controls-previous::before {
		right: 254px;
	}
	.gallery-controls-previous::after {
		right: 246px;
	}
	.gallery-controls-next::after {
		left: 238px;
	}
	.gallery-controls-next::before {
		left: 248px;
	}
	.gallery-nav {
		bottom: 0px;
	}
	.gallery-container {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 600px){
	.gallery-controls-next::after {
		left: 199px;
	}
	.gallery-controls-next::before {
		left: 210px;
	}
	.gallery-controls-previous::after {
		right: 204px;
	}
	.gallery-controls-previous::before {
		right: 215px;
	}
	.gallery-item.gallery-item-selected {
		height: 220px;
		width: 300px;
	}
	.gallery-item.gallery-item-previous, .gallery-item.gallery-item-next {
		height: 190px;
		width: 190px;
	}
	.gallery-item {
		height: 160px;
		width: 160px;
	}
	.gallery-container {
		height: 100%;
	}
	.slide_inway {
		margin-top: 115px;
	}
	.user_type_backimg {
		border-top: 0px #162d5b solid;
	}
}
@media only screen and (max-width:560px){
	.gallery-controls-next::after {
		left: 186px;
	}
	.gallery-controls-next::before {
		left: 196px;
	}
	.gallery-controls-previous::before {
		right: 203px;
	}
	.gallery-controls-previous::after {
		right: 190px;
	}
	.gallery-container {
    height: 285px;
}
}

@media only screen and (max-width:500px){
.gallery-container {
    height: 250px;
}
	}
@media only screen and (max-width: 460px){
	.gallery-item.gallery-item-selected {
		height: 180px;
		width: 250px;
	}
	.gallery-item.gallery-item-previous, .gallery-item.gallery-item-next {
		height: 150px;
		width: 170px;
	}
	.gallery-item {
		height: 120px;
		width: 136px;
	}
	.slide_inway {
		margin-top: 115px;
	}
	.gallery-container {
		height: 250px;
	}
	.slide_inway {
		padding-bottom: 35px;
	}
	.gallery-controls-next::before {
		left: 150px;
	}
	.gallery-controls-next::after {
		left: 153px;
	}
	.gallery-controls-previous::before {
		right: 156px;
	}
	.gallery-controls-previous::after {
		display: none;
	}
	.gallery-controls-next::after {
		display: none;
	}
}
@media only screen and (max-width: 380px){
	.gallery-controls-previous::before {
		right: 150px;
	}
	.gallery-controls-next::before {
		left: 145px;
	}
}
@media only screen and (max-width: 330px){
	.gallery-controls-previous::before {
		right: 130px;
	}
	.gallery-controls-next::before {
		left: 126px;
	}
}