.section-1 {
    width: 100vw;
    height: fit-content;
    display: grid;
    justify-content: center;
    align-items: end;
    margin-top: calc(var(--regular) + var(--large) + 4rem);
}

.section-1 > div {
    width: var(--responsive-width);
    max-width: 1440px;
    height: fit-content;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: var(--large);
}

.section-1 > div > main {
    width: 100%;
}

.section-1 > div > div {
    width: 100%;
    position: relative;
    display: grid;
    gap: var(--small);
}

.testimonial {
    width: calc(100% - var(--regular) - var(--regular));
    max-width: 25rem;
    height: fit-content;
    border-radius: var(--regular);
    box-shadow: var(--shadow-light);
    padding: var(--regular);
    display: none;
    
    
    
    gap: var(--xx-small);
    background-color: var(--tertiary-color);
}

.testimonial-name-position {
    text-align: right;
}

.testimonial-1 {
    justify-self: center;
    position: relative;
}

.testimonial-2 {
    justify-self: right;
    z-index: 0;
}

.testimonial-3 {
    justify-self: left;
    position: relative;
}

.testimonial-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--xxx-small);
}

.testimonial-info h6 {
    font-weight: 400;
}

.testimonial-content {
    display: grid;
    gap: var(--xx-small);
}

.testimonial-decor {
    position: absolute;
    right: unset;
    top: unset;
    left: var(--regular);
    bottom: 0;
    display: none;
}

.testimonial-decor > svg {
    width: auto;
    height: var(--x-large);
    fill: var(--blue-lighter);
}

[data-theme="dark"] .testimonial-decor > svg {
    fill: var(--yellow);
}

.testimonial-decor > svg {
    fill: var(--blue-lighter);
}

/* 
.testimonial > .testimonial-info > div {
    background-color: var(--light-gray-60);
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 3.75rem;
    height: auto;
    display: grid;
    overflow: hidden;
}

.testimonial > .testimonial-info > div > svg {
    width: auto;
    height: 80%;
    justify-self: center;
    align-self: end;
    fill: var(--light-gray-100);
} */
/* 
.testimonial > .testimonial-info > header {
    display: grid;
} */



@media (min-width: 800px) {
    .section-1 > div {
        width: var(--responsive-width);
        max-width: 1440px;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .section-1 > div > main {
        width: 41%;
    }

    .section-1 > div > div {
        width: 55%;
        gap: var(--regular);
        aspect-ratio: 1.6 / 1.4;
    }

    .testimonial {
        padding: var(--medium);
        gap: var(--small);
        border-radius: var(--medium);
    }

    .testimonial-decor {
        position: absolute;
        right: var(--regular);
        top: calc(-1 * var(--medium));
        bottom: unset;
        left: unset;
        display: block;
    }

    .testimonial-decor > svg {
        height: var(--xx-large);
    }
    

    .section-1 > div {
        gap: 0;
    }

    .testimonial-content {
        gap: var(--x-small);
    }

    .testimonial-info {
        display: grid;
        flex-direction: unset;
        gap: var(--xxx-small);
    }

    .testimonial-2 {
        justify-self: center;
    }
    
    .testimonial-3 {
        justify-self: center;
    }
}

@media (min-width: 1024px) {
    .testimonial-decor {
        position: absolute;
        right: calc(var(--small) * -1);
        top: calc(-1 * var(--medium));
        bottom: unset;
        left: unset;
    }

    .testimonial-2 {
        /* transform: rotate(14.26deg); */
        justify-self: right;
        z-index: 0;
    }
    
    .testimonial-3 {
        right: var(--large);
        bottom: var(--large);
    }
}


/* Section 2 */
.section-2 {
    width: 100vw;
    height: fit-content;
    display: grid;
    justify-content: center;
    align-items: end;
}

.section-2 > div {
    width: var(--responsive-width);
    max-width: 1440px;
    height: fit-content;
    padding-top: calc(var(--regular) + var(--regular) + 4rem);
    padding-bottom: var(--x-large);
    display: grid;
    justify-content: center;
    align-items: end;
    gap: var(--medium);
    position: relative;
}

.section-2 > div > h1 {
    width: 100%;
    text-align: center;
}

.section-2 > div > main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--regular);
}

.section-2 > div > main > div {
    box-shadow: var(--shadow-light);
    display: grid;
    gap: var(--small);
    padding: var(--medium);
    background-color: var(--tertiary-color);
}

.section-2 > div > main > div > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2.2;
    object-fit: cover;
}
/* Section 2 */
/* Section 2 Responsive */
@media (min-width: 600px) {
    .section-2 > div > main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-2 > div > main {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Section 2 Responsive */