
.standard-banner .inner{
	padding:100px 100px 150px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 100;
}
.standard-banner .inner h1{
	font-size: 2.7rem;
	font-weight: 700;
	color: #fff;
	background: rgba(0,0,0,0.5);
	padding: 15px 35px 15px;
	border-radius: 10px;
	line-height: 2.8rem;
}
.bannercover{
	width: 100%;
	position: absolute;
	background:rgba(0,0,0,0.175);
	mix-blend-mode: multiply;
	height: 100vh;
	min-height: 350px;
	max-height: 900px;
	width: 100%;
	z-index: 1;
	top:0;
	left: 0;
}

main.page-content,
.testimonial-content{
	width: 100%;
	margin: -3.99vw 0 3.99vw;
	padding: 2.5vw 0;
	position: relative;
	background: #fff;
	color: #707070;
	z-index: 3;
}
main.standard-page{
	padding-bottom: 5vw;
}

main.page-content:before,
.testimonial-content:before{
	position: absolute;
	width: 110vw;
	height: 5vw;
	transform: translateX(-50%) translateY(-50%) rotate(2.5deg);
	left: 50%;
	top:0;
	content: "";
	background: #fff;
}	
main.page-content:after,
.testimonial-content:after{
	position: absolute;
	width: 110vw;
	height: 5vw;
	transform: translateX(-50%) translateY(50%) rotate(2.5deg);
	left: 50%;
	bottom:0;
	content: "";
	background: #fff;
}

main.page-content blockquote{
	width: calc(100% - 220px);
	margin: 60px auto;
	border-radius: 40px;
	background: #F6F6F6;
	border: #ccc 1px solid;
	color: #707070;
	text-align: center;
	padding:40px 70px;
	position: relative;
	font-size: 1em;
}
main.page-content blockquote p{
	margin: 10px 0;
}
main.page-content blockquote cite{
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1em;
	margin-top: 20px;
	font-style: normal;
	font-weight: 700;
}
main.page-content blockquote:after{
	position: absolute;
	right: 15px;
	bottom: 15px;
	content: "";
	background: url(../images/blockquotes/blockquote-smile.svg) no-repeat;
	background-size: cover;
	background-position: center;
	width: 60px;
	height: 49px;
}



.page-gallery{
  width: 100%;
  padding: 20px 0px 80px;
}
.page-gallery ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content:  center;
  list-style: none;
  padding: 0 0px;
  margin: 0;
}
.page-gallery ul li{
/*  width: 50%;*/
  overflow: hidden;
  border: 1px solid #f6f6f6;
  position: relative;
  display: flex;
  margin: 10px;
    border-radius: 10px;
}
.page-gallery ul li a.gallery_image{
  object-fit: cover;
  position: relative;
 /* height: 20vw;*/
  width: 100%;
  overflow: hidden;
  transition: all ease-in-out 0.4s;
  display: block;
}
.page-gallery ul li a .the-gallery-image{
  object-fit: cover;
  width: 100%;
  height: 100%;
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1.3);
  filter: grayscale(0%);
  z-index: 200;*/
}
.page-gallery ul li:hover a .the-gallery-image{
  filter: grayscale(100%);
}
.the-gallery-cover{
  background: rgba(0,0,0,0.3);
  opacity: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:0;
  transition: all ease-in-out 0.4s;
  left: 0;
  z-index: 200;
}

.the-gallery-cover:after{
  /*content: url(images/zoom.svg);*/
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.page-gallery ul li:hover .the-gallery-cover{
  opacity: 1;
}
.gallery_image-cover-link{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  background: (0,0,0,0);
  z-index: 800;
}

@media screen and (max-width:700px){
	.standard-banner .inner h1 {
	    font-size: 2rem;
    	line-height: 1.2em;
	}
	.standard-banner .inner{
		padding:170px 40px 120px;
	}
	main.standard-page .inner{
		display: flex;
		flex-wrap: wrap;
	}
	.wp-block-image{
		order: 2;
		float: none;
		width: 100%;

	}
	.wp-block-image figure,
	.alignright.size-large,
	.alignleft.size-large{
		width: 100%;
		padding-left: 0;
		float: none;
		margin: 30px 0 20px 0px;
		text-align: center;
	}
	.wp-block-image figure img,
	.alignright.size-large img,
	.alignleft.size-large img{
		width: 100%;
		max-width: 250px;
		height: auto;
	}
}