#shop_cta {
	padding: 5.555rem 0;
	.content-width {
		.grid.row:first-of-type {
			grid-template-columns: 1fr 1fr;
			margin-bottom: 0.833rem;
			.widget.cta {
				padding-top: 57.02%;
			}
		}
		.grid.row:last-of-type {
			grid-template-columns: 1fr 1fr 1fr;
			.widget.cta {
				padding-top: 86.3%;
			}
		}
		.grid.row {
			grid-column-gap: 0.833rem; 
		}
		.widget.cta {
			@include bg_img_cover();
			border-radius: 30px;
			position: relative;
			@include ease(all, 0.25s);
			z-index: 10;
			.widget-filter {
				position: absolute;
				width: 100%;
				height: 100%;
				z-index: 15;
				top: 0;
				left: 0;
				border-radius: 1.6rem;
				@include ease(all,0.25s);
			}
			.widget-overlay {
				position: absolute;
				color: #fff;
				top: 85%;
				left: 25%;
				@include translate(-25%, -85%);
				width: 75%;
				z-index: 20;
				p:first-of-type {
					font-family: opensans_bold;
					font-size: 1.555rem;
					line-height: 1.45;
				}
				p:last-of-type {
					font-size: 1.111rem;
					line-height: 1.45;
				}
				span{
					color: #fff;
					font-family: opensans_bold;
					@include flexbox();
					align-items: center;
					.arrow {
						@include bg_img_contain();
						padding-top: 1rem;
					    width: 3rem;
					    margin-left: 1rem;
					}
				}
			}
		}
		.widget.cta:hover {
			.widget-filter {
				background: rgba(0,0,0,0.5);
				filter: brightness(50%);
			}
		}
	}
}