/** Shopify CDN: Minification failed

Line 120:1 Expected "}" to go with "{"

**/
.outlast-trends-grid {
	padding: 127px 0 100px;

}
.outlast-trends__header{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: flex-end;
	margin-bottom: 100px;
}
.outlast-trends_title {
	margin: 0;
}
.outlast-trends__desc {
    max-width: 439px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
    margin-left: auto;
    color: #404040;
}

.outlast-trends__wrapper {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    align-items:start;
}
.outlast-trends__wrapper .outlast-trends-wrap {
    height: 100%;
    background: #FAF7F2;
}
.outlast-trends {
	perspective: 1200px;
	aspect-ratio: 1.12;
}
.outlast-trends__inner{
	position: relative;
	width: 100%;
	height: 100%;
	transition: .7s;
	transform-style: preserve-3d;
}
.outlast-trends:hover .outlast-trends__inner{
	transform: rotateY(180deg);
}
.outlast-trends__front,
.outlast-trends__back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
}
.outlast-trends__front{
	padding: 20px;
	display: flex;
	flex-direction: column;
}
.outlast-trends__front h3{
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: -0.84px;
	color: #6B3E1F;
}
.outlast-trends__front p{
	margin: 0;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: -0.28px;
	color: #737373;
}
.outlast-trends__front img{
	margin: auto;
	width: 80px;
}
.outlast-trends__back{
	transform: rotateY(180deg);
	overflow: hidden;
}
.outlast-trends__back img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.outlast-trends h3 {
	font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.6px;
    color: #404040;
    padding: 20px;    margin: 0;
}
@media(max-width:989px){
	.outlast-trends h3 {
	    font-size: 16px;
	    line-height: 24px;
	    padding: 15px;
}
@media(max-width:749px){
	.outlast-trends-grid {
	    padding: 100px 0 50px;
	}
	.outlast-trends__wrapper {
		grid-template-columns:1fr;
	}
	.outlast-trends__header {
	    grid-template-columns: 1fr;
	    margin-bottom: 50px;
	}
	.outlast-trends__desc {
		max-width: 100%;
	}
}