/* Main Review Section */
.review-section {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

/* Header */
.review-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 125px;
    row-gap: 16px;

}
.review-body {
    width: 60%;
}
.review-header{
    width: 40%;
}

.review-header h2 {
    color: #303030;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.6px;
}

.review-header p {
    color: #303030;
    text-align: left;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 10px;
}

.get-in-touch {
    display: inline-flex;
    align-items: center;
    border: none;
    color: #303030;
    background: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px 12px 8px 0px;
    cursor: pointer;
}

/* Carousel Body */
.review-body {
    height: auto;
    position: relative;
    margin-right: 25px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* overflow: hidden; */
}

/* Slide Styles */
.carousel-slide {
    position: absolute;
    max-width: 100%;
    height: auto;
    background-color: #fff;
    border-top: 5px solid #EA5400;
    border-radius: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;

}
.review-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center
}

/* Title */
.titleReviewSnippet {
    color: var(--Neutral, #303030);
    /* Desktop/H4 */
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(180deg, #EA5400 0%, #FE9A63 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Manrope, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.6px;
}
/* Review Text */
.review-text > p {
    color: var(--Neutral, #303030);
    text-align: center;

    /* Desktop/Body Text */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    align-self: stretch;
}
/* Reviewer Info */
.reviewer-name {
    font-size: 16px;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 24px;
    width: fit-content;
    border-radius: 40px;
    background: var(--accent-1, #F3F3F3);
    margin: 0;
    margin-block-start: .5rem;
    margin-block-end: 1rem;
}

/* Review Rating */
.review-rating {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;

    border-radius: 40px;
    border: 1px solid var(--accent-2, #F3F3F3);
    background: var(--Pure-White, #FFF);

    /* DS */
    box-shadow: -1px 4px 8px 0px rgba(0, 0, 0, 0.05);

    padding: 8px 16px;
}
.review-rating > img{
    width: 20px;
    height: 20px;
}
.review-out-of{
    text-align: center;

    /* Desktop/H5 */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */

    background: var(--Secondary, linear-gradient(180deg, #EA5400 0%, #FE9A63 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #fff;
    background: var(--Secondary, linear-gradient(180deg, #EA5400 0%, #FE9A63 100%));
    /* background-image: url('/wp-content/uploads/2024/10/arrow.svg'); */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.carousel-btn.prev {
    left: -25px;    
}
.carousel-btn.prev img {
    transform: rotateY(180deg);
    width: 30px;
    height: 30px;
}

.carousel-btn.next {
    right: -25px;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .review-body {
        width: 80%;
        display: flex;
        justify-content: center;
    }
}
/* Tablet & Mobile */

@media screen and (max-width: 1024px) {
    .review-body {
        width: 80%;
        display: flex;
        justify-content: center;
    }
    .review-section{
        flex-direction: column;
        align-items: center;
        row-gap: 16px;

    }
    .review-header{
        align-items: center;
        width: 80%;
        padding-right: 0px;
        row-gap: 8px;
    }
    .review-header p{
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
	.review-header{
		width: 100%;
	}
	.review-body{
		width: 100%;
		margin: 0px;
	}
    .carousel-btn.prev {
        display: none;   
    }
    
    .carousel-btn.next {
        display: none;
    }
}