/** Shopify CDN: Minification failed

Line 20:26 Unexpected "{"
Line 20:35 Expected ":"
Line 75:26 Unexpected "{"
Line 75:35 Expected ":"
Line 80:26 Unexpected "{"
Line 80:35 Expected ":"

**/
/* Card + flip */
.real_card {
	position: relative;
	transition: all 0.5s ease-in-out;
	min-height: 300px;
	overflow: hidden;
	border-radius: 16px;
}

    #real-people-results-{{ section.id }} .real_front_box{
      position: absolute;
      inset: 0;
      background: var(--card-bg);
      color: var(--card-text);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
.real_back {
	position: absolute;
    width:100%;
    height:100%;
    top:auto;
	left: 0;
	right: 0;
	bottom:-100%;
    margin:auto;
	background-color: #016e37;
	color: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	text-align: center;
	transition: all 0.5s ease-in-out;
    /* opacity: 0; */
}
    .real_card:hover .real_back{
        /* opacity: 1; */
        bottom:0%;
    }
    /* FRONT */
.real_front_box {
	position: relative;
}
.real_front_box::before {
	content: " ";
	position: absolute;
	background-color: #00000050;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

    #real-people-results-{{ section.id }} .real_img {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }
    #real-people-results-{{ section.id }} .real_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.real_content p {
	font-size: 22px;
	line-height: 28PX;
	font-weight: 600;
	color: #fff;
	position: absolute;
	top: 30px;
	left: 20px;
	right: 20px;
}
.real_front_bottom {
	position: absolute;
	top: auto;
	left: 20px;
	bottom: 30px;
}
.real_front_bottom h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
.real_front_bottom span {
	font-size: 18px;
	color: #fff;
}

    /* BACK */
.real_front_top h3 {
	font-size: 22px;
	line-height: 28PX;
	font-weight: 600;
	color: #fff;
}
.real_back p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
@media screen and (max-width:1400px){
.real_back {
	padding: 20px;
}
}
@media screen and (max-width:991px){
.real_front_box {
	height: 600px;
}
}
@media screen and (max-width:767px){
.real_front_box {
	height: unset;
}
}
@media screen and (max-width:575px){
.real_back {
	padding: 10px;
}
.real_front_top h3 {
	font-size: 20px;
	line-height: 25PX;
}
.real_content p {
	font-size: 20px;
	line-height: 26PX;
}
.real_front_bottom h3 {
	font-size: 21px;
}
}