
.inner-gift-card{
	width: 100%;
	display: flex;
	aspect-ratio: 2/1.05;
	box-shadow: var(--standard-shadow);
	position: relative;
}
.gift-card-logo-holder{
	width: 33%;
	overflow: hidden;
	position: relative;
	height: 100%;
    z-index: 2;
}
.gift-card-logo-background{
    height: 100%;
    position: absolute;
    aspect-ratio: 1 / 1;
    z-index: 1;
    top: 0;
    left: -50%;
    translate: -10% 0;
    border-radius: 0 100% 100% 0;
    background: #fff;
}
.gift-card-logo{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;;
	padding:0 60px 0 40px;
	z-index: 2;
	position: relative;
}
.gift-card-logo img{
	width: 100%;
}
.gift-card-content-holder{
	width: 67%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center;
	padding: 50px 40px;
    z-index: 2;
	position: relative;
}
.gift-card-content{
	width: 100%;
}
.gift-card-content h2{
	width: 100%;
	font-size: 30px;
	margin: 0;
	line-height: 1.1em;
}
.gift-card-content p.pricing{
	width: 100%;
	font-size: 80px;
	margin: 14px 0;
	line-height: 1em;
	font-family: var(--titlefont);
}
.gift-card-content p.pricing span.currency-symbol{
    font-family: eurostile-extended, sans-serif;
    font-weight: 900;
}
.gift-card-content p.buynow{
	width: 100%;
	margin: 0;
}
.gift-card-content p.buynow a{
	padding: 15px 40px;
	display: inline-block;
	font-family: var(--titlefont);
}
.gift-card-background{
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.gift-card-background p{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.gift-card-background svg{
	height: 100%;
	width: auto;
	opacity: 0.3;
}

@media (max-width: 1350px) {
	.gift-cards-grid {
	    width: 100%;
	    max-width: 900px;
	    margin: 0 auto !important;
	}
	
	.inner-gift-card {
	    width: 100%;
	}
}

@media (max-width: 750px) {
	.gift-card-content p.pricing {
    	font-size: 50px;
	}
}

@media (max-width: 600px) {
	.gift-cards, .gift-cards.aligncenter {
    	padding: 0 40px !important;
	}

	.gift-card-content h2 {
    	font-size: 20px;
	}

	.gift-card-content p.pricing {
        font-size: 34px;
    }
}






