/** Shopify CDN: Minification failed

Line 41:16 Expected ":"

**/
.section-lp-coaches-expert .section_coaches_heading {
    font-size: 42px;
    letter-spacing: normal;
    font-family: var(--font-recoleta-medium-family);
    color: #141414;
    font-weight: 500;
    text-align: center;
    margin: 0px;
    margin-bottom: 40px;
}

.section-lp-coaches-expert .expert-reviews-container .tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 40px;
}

.section-lp-coaches-expert .expert-reviews-container .tab {
    cursor: pointer;
    border: 1px solid rgb(230 234 243);
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    font-family: var(--font-ambit-semibold-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #141414;
    transition: background-color 0.35s cubic-bezier(0, 0, 0, 0), transform 0.25s ease;  
    border-color 0.35s cubic-bezier(230, 234, 243, 1), 
}

.section-lp-coaches-expert .expert-reviews-container .tab.active {
	background-color: #2474f5;
	color: white;
    border-color: #2474f5;
}
.section-lp-coaches-expert .expert-reviews-container .tab:hover{
    border-color: rgb(36 116 245 / 50%);
    background-color: #2474f50d;
}

.section-lp-coaches-expert .expert-reviews-container .reviews {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-bottom: 30px;
}

.section-lp-coaches-expert .expert-reviews-container .reviews_card {
	background: white;
	width: 100%;
	overflow: hidden;
	display: none;
	/* Initially hidden */
}

.section-lp-coaches-expert .expert-reviews-container .reviews_card.active {
	display: block;
}

.section-lp-coaches-expert .expert-reviews-container .reviews_card .card_panel {
	column-gap: 48px;
	row-gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	display: grid;
}

.section-lp-coaches-expert .expert-reviews-container .reviews_card .card_text_block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.section-lp-coaches-expert .expert-reviews-container .card_image_block .main_expert_image {
	width: 100%;
	display: block;
}

.section-lp-coaches-expert .expert-reviews-container .quote p {
    font-size: 26px;
    color: #141414;
    margin-bottom: 10px;
    line-height: 31.8px;
    font-weight: 400;
    font-family: var(--font-body-family);
    margin-top: 0;
}

.section-lp-coaches-expert .expert-reviews-container .source p {
    font-size: 14px;
    color: #737373;
    line-height: 16.3px;
    margin: 0;
    margin-top: 24px;
}

.section-lp-coaches-expert .card_video_block video {
	width: 100%;
	max-width: 750px;

	border-radius: 24px;
}

.section-lp-coaches-expert .card_video_block video.video_play_for_mobile {
	display: none;
}

@media screen and (max-width: 1024px) {
    .section-lp-coaches-expert .section_coaches_heading {
        font-size: 36px;
    }
	.section-lp-coaches-expert .expert-reviews-container .quote p {
		font-size: 20px;
		line-height: 28.8px;
	}
    .section-lp-coaches-expert .expert-reviews-container .tab {
        font-size: 14px;
    }
}

@media screen and (max-width: 749px) {
	.section-lp-coaches-expert .card_video_block video.video_play_for_mobile {
		display: block;
	}

	.section-lp-coaches-expert .card_video_block video.video_play_for_desktop {
		display: none;
	}

	.section-lp-coaches-expert .expert-reviews-container .reviews_card .card_panel {
		grid-template-columns: repeat(1, 1fr);
                row-gap: 32px;
	}

	.section-lp-coaches-expert .expert-reviews-container .tabs {
		gap: 12px;
	}

    .section-lp-coaches-expert .expert-reviews-container .quote p{
        max-width:100%;
    }
        .section-lp-coaches-expert .section_coaches_heading {
        font-size: 30px;
    }
}