body {
	--color-text: #4a525e;
	--color-bg: #121a27;
	--color-link:#4682B4;
	--color-link-hover: #fff;
	--color-gallery-title: #fff;
	--color-gallery-number:#4682B4;
	--color-gallery-link: #fff;
	--color-gallery-link-bg:#121a27;
	--color-gallery-link-hover: #121a27;
	--color-gallery-link-bg-hover: #fff;
	--color-gallery-text:#fff;
	--cursor-stroke: none;
	--cursor-fill: #4682B4;
	--cursor-stroke-width: 1px;
}




.gallery {
	display: flex;
	margin-left: 12vw;
	padding-right: 12vw;
}

.gallery__item {
	margin: 0 3vw;
	display: grid;
	grid-template-areas: '... ...' 
						 '... gallery-image'
						 '... ...' ;
	grid-template-columns: 8rem 21vmax;
	grid-template-rows: 8rem 28vmax 3rem;
}

.gallery__item-img {
	grid-area: gallery-image;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	transform-origin: 50% 100%;
}

.gallery__item-imginner {
	background-size: cover;
    background-position: 50% 0;
    width: 100%;
    height: 100%;
	border-radius:20px;
}
.drop-shadow {
    -webkit-filter: drop-shadow(0px 30px 30px rgba(0,0,0,.8));
    filter: drop-shadow(0px 0px 30px rgba(0,0,0,.8));
    }

.gallery__item-caption {
	grid-area: 1 / 1 / 4 / 3;
	display: grid;
	grid-template-areas: 'gallery-number gallery-title' 
						 'gallery-link ...'
						 'gallery-link gallery-tags' ;
	grid-template-columns: 8rem auto;
	grid-template-rows: 8rem auto 3rem;

}

.gallery__item-number {
	grid-area: gallery-number;
	font-size: 6rem;
	font-size: clamp(2.5rem,9vw,6.5rem);
	justify-self: end;
	padding-right: 2rem;
	color: var(--color-gallery-number);
}

.gallery__item-title {
	grid-area: gallery-title;
	margin: 0;
	font-size: 4rem;
	font-size: clamp(2rem,5vw,4rem);
	color: var(--color-gallery-title);
}

.gallery__item-number,
.gallery__item-title,
.gallery__text {
	font-family: moret, serif;
	font-weight: 800;
	font-style: italic;
	align-self: center;
}

.gallery__item-link {
	grid-area: gallery-link;
	align-self: end;
	font-size: 1.5rem;
	background: var(--color-gallery-link-bg);
	color: var(--color-gallery-link);
	text-decoration: none;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	position: relative; 
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.border-gradient {
	 border: 2px solid;
  border-image-slice: 1;
  border-width: 1px;
}

.border-gradient-gold{
	width: 125px;
  height: 125px;
  border: double 2px transparent;
  border-radius: 80px;
  background-image: linear-gradient(#121a27, #121a27), radial-gradient(circle at top left, #fcf6ba,#aa771c,#fcf6ba,#aa771c);
  background-origin: border-box;
  background-clip: content-box, border-box;
 /* border-image-source: linear-gradient(to left, #aa771c, #fbf5b7);
	 border-radius: inherit;*/
}

.gallery__item-link:focus,
.gallery__item-link:hover {
	background: var(--color-gallery-link-bg-hover);
	color: var(--color-gallery-link-hover);
	text-decoration: none;
}

.gallery__item-tags {
	grid-area: gallery-tags;
	justify-self: end;
	font-size: 1.5rem;
	display: grid;
	grid-auto-flow: column;
	grid-gap: 1rem;
	cursor: pointer;
}

.gallery__text {
	font-size: 20vw;
	line-height: 0.8;
	margin: 0 10vw 0 14vw;
	text-transform: lowercase;
	color: transparent;
	-webkit-text-stroke: 1px var(--color-gallery-text);
	text-stroke: 1px var(--color-gallery-text);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.gallery__text-inner {
	display: block;
}
.iframe {
	width:100%;
	height:100%;
	display:block;
}
@media screen and (max-width:767px){
	
.border-gradient-gold{
	width: 90px;
  height: 90px;
  border: double 2px transparent;
  border-radius: 80px;
	margin-left:20px;
 /* border-image-source: linear-gradient(to left, #aa771c, #fbf5b7);
	 border-radius: inherit;*/
}
	
}
@media screen and (max-width:767px) {
	.content {

	}
	.gallery {
		display:block;

	}
	.gallery__text {
		width:100%;
		float:none;
		margin:40px 0 40px 0;
		text-align:center;
	}

.gallery-item{
		width:100%;
	float:none;
		
	}
	.is-inview {
		display:hidden;
	}
}