.quote-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #ffffff;
}

.quote-section.bg-white {
    color: var(--color-primary);
}

.quotes-slide-controls {
    position: absolute;
    top: 100%;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 1.75rem;
}
.quotes-dot {
    outline:0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.quotes-dot path {
    fill: #ffffff;
}

.quote-author {
    margin-top: 2rem;
}

.quote-subheading {
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 1.75rem;
}
.font-normal {
    font-weight: 400;
}
.quotes-dot path {
    fill:var(--color-primary-light);
}
.quotes-dot.active path {
    fill: #ffffff;
}
.quote-section.bg-white .quotes-dot path{
    fill: var(--color-primary-tint);
}
.quote-section.bg-white .quotes-dot.active path{
    fill: var(--color-primary);
}
.quotes-dot svg {
    width: 0.8rem;
}
.quotes-slider {
    list-style: none;
    position: relative;
}
.quotes-slide {
    position: relative;
    display: none;
}
.quotes-slide.active {
    display: block;
    opacity: 0;
    -webkit-animation-name: fade-in;
            animation-name: fade-in;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.background-shape {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    top: 0;
    height: 100%;
    justify-content: space-between;
}
.quote {
    z-index: 1;
    position: relative;
    font-weight: 700;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    padding-top: 15%;
    padding-bottom: 25%;
}

.c-primary .cls-3{fill: var(--color-primary);}
.c-secondary .cls-3{fill: var(--color-secondary);}
.c-tertiary .cls-3{fill: var(--color-tertiary);}
.c-quarternary .cls-3{fill: var(--color-quarternary);}

.quotation-mark{
    width: 15%;
    height: 5rem;
    display: flex;
    justify-content: center;
align-items: center;
}
.quotation-mark svg {
    width:100%;
}
.quotation-shape-container {
    padding: 0;
}
.quotation-mark-bottom {
    align-self: end;
}

@media only screen and (min-width: 48rem) {
    .quote-section {
        padding-top: 3rem;
        padding-bottom: 0;

    }
    .quotation-shape-container {
        padding: 0 10%;
    }
    
    .quotes-slide-controls {
        top: 80%;
    }

    .quote-subheading {
        top: 10%;
    }
    .quote{
        z-index: 1;
        position: absolute;
        font-weight: 700;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        top: 0;
        left: 10%;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .background-shape {
        position: relative;
        z-index: 0;
        width: 100%;
        max-height: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-top: 10%;
        padding-bottom: 10%;
    }
}

@media only screen and (min-width: 62rem) {
    .quotation-shape-container {
        padding: 0 20%;
    }
    .quote-section {
        padding-top: 6rem;
        padding-bottom: 0;

    }
}