/** 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: 112rem;
    margin: 0 auto;
    display: block;
	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;
    }
}

/* Container Setup */
.card_panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.card_panel video {
  display: block;
  width: 100%;
  cursor: pointer;
}

/* Center Play Icon (Blue Triangle) */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Let clicks pass through to the video */
  z-index:1
}

/* Hide Play Icon when playing */
.video-card.playing .play-icon {
  opacity: 0 !important;
  pointer-events: none;
}

/* Bottom Controls (Pause/Mute) */
.video_controls {
  position: absolute;
  bottom: 20px;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show buttons only on hover when playing */
.video-card.playing:hover .video_controls {
  opacity: 1;
}

.video_pause_btn { right: 20px; }
.video_mute_btn { right: 70px; }

/* Mute Toggle Visibility */
.video-card.is-muted .icon-volume-on { display: none; }
.video-card:not(.is-muted) .icon-volume-off { display: none; }