/* full screen button */

.full-screen-link {
	position: relative;
	width: 100%;
	height: 80vh;
	z-index: 10;
	overflow:hidden;
}

.full-screen-link:before {
	position: absolute;
	top: 0;
	height: 3px;
	width: 100%;
	background: var(--gold-gradient);
	left:0;
}

.full-screen-link:after {
	position: absolute;
	bottom: 0;
	height: 3px;
	width: 100%;
	background: var(--gold-gradient);
	left:0;
}

.full-screen-link .image {
	width: 100%;
	height: 100vh;
	background-size:cover;
	background-position: center;
}

.full-screen-link .info {
	text-align:center;
}

.full-screen-link .wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	padding: 0 6%;
	left: 0;
	display: flex;
	justify-content: center;
	align-items:center;
	
}
.full-screen-link .text{
	position:relative;
	z-index:10;
	padding:15px;
	background:rgba(0,0,0,0.75);
}
.full-screen-link .text .text-wrapper{
  padding: 15px;
  border: 1px solid var(--gold-color);
 }
.full-screen-link h3 {
	color: var(--white-color);
	font-size: 2em;
	font-weight: 700;
	margin:0;
}
.full-screen-link h3 span{

  display: block;
}
.full-screen-link p {
	color: var(--gold-color);

	margin:0.5em auto 0 auto;
}
.full-screen-link .button-wrapper{
	margin-top:15px;
	position:relative;
}
/* SALE */

.full-screen-link.sale .sale-bg{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: var(--red-color);
	mix-blend-mode:soft-light;
	
}

.full-screen-link.sale .text{
	background:var(--red-color);
}
.full-screen-link.sale .text-wrapper{
	border:none;
}
.full-screen-link.sale p{
	color:#fff;
}
@media screen and (max-width:920px){
	.full-screen-link h3 {
		font-size:1.5em;
	}
}