.google_reviews_section {
    width: 100%;

    & .container {
        position: relative;
        z-index: 1;

        & .section_top {
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            & .left_side {
                width: 100%;
                text-align: center;

                & p {
                    font-size: 2rem;
                    margin: 0 0 2rem;
                }

                & h3 {
                    font-family: "Aboreto", arial, sans-serif;
                    text-transform: uppercase;
                    font-weight: 400;
                    font-size: 5rem;
                    margin: 0;
                    line-height: 1;
                    color: var(--primary);
                    margin: 0 0 3rem;
                    letter-spacing: -2px;

                    @media (max-width: 991px) {
                        font-size: 3rem;
                        text-align: center;
                    }
                }
            }

            & .right_side {
                @media (max-width: 991px) {
                    display: none;
                }
            }
        }
    
        & .section_inner {
            margin-top: 5rem;

            @media (min-width: 992px) {
                display: flex;
                flex-direction: row;
                align-items: center;
                margin-left: -5rem;
                width: calc(100% + 10rem);
            }

            &.single-review {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-left: 0;
                width: 100%;

                & .review {
                    max-width: 600px;
                    width: 100%;
                }
            }

            & button.slick-arrow {
                @media (min-width: 992px) {
                    background: none;
                    border: none;
                    cursor: pointer;
                }

                & svg {
                    & path {
                        fill: var(--primary);
                    }
                }
            }
    
            & .review {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                
                @media (min-width: 992px) {
                    height: auto !important;
                }

                & div.text {
                    margin: 0 0 3rem;
                    text-align: center;

                    & p {
                        margin: 0;
                        color: var(--primary);

                        @media (max-width: 991px) {
                            text-align: center;
                        }

                        &:last-child {
                            margin-bottom: 0;
                        }

                        & strong {
                            font-weight: 400 !important;
                            color: #EB5B25;
                        }
                    }
                }

                & p.name {
                    font-size: 2rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    color: var(--primary);
                    margin: 0;
                }
            }

            & .slick-list {
                width: 100%;
				
				& .slick-track {
					@media (min-width: 992px) {
					    display: flex;
						align-items: stretch;
					}
				}
            }
        }
    }
}