.references .content a {
    color: #337ab7;
}

.references .content .top {
    margin-bottom: 40px;
}

.references .content .divider {
    margin-bottom: 80px;
    text-align: center;
}

.references .content .divider img {
    width: auto;
    max-height: 40px;
}

.references .content .bottom {
    margin-top: 80px;
    font-size: 25px;
    line-height: 45px;
}

.references .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 40px;
}

.references .items .reference {
    position: relative;
    border-radius: 5px;
    background: var(--white);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.references .items .reference .quote {
    padding: 35px;
    font-style: italic;
}

.references .items .reference .quote .heading {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.2em;
}

.references .items .reference .quote .body {
    color: #777;
}

.references .items .reference .author {
    padding: 20px;
    background-color: var(--gray);
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    align-items: center;
}

.references .items .reference .author > div {
    display: inline-block;
    vertical-align: middle;
}

.references .items .reference .author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.references .items .reference .author .name {
    font-weight: bold;
}

.references .items .reference .author .name > .sub-label {
    font-weight: normal;
}

.references .splide {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.references .splide__track {
    padding: 30px !important;
}

@media (max-width: 992px) {
    .references .splide {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .references .splide {
        padding: 0 30px;
    }

    .references .splide__arrow--prev {
        left: 0;
    }

    .references .splide__arrow--next {
        right: 0;
    }
}

@media (max-width: 576px) {
    .references .items {
        grid-template-columns: 100%;
    }

    .references .splide {
        max-width: 425px;
    }
}

@media (max-width: 500px) {
    .references .splide {
        max-width: 375px;
    }
}

@media (max-width: 450px) {
    .references .splide {
        max-width: 325px;
        padding: 0;
    }

    .references .splide__track {
        padding: 15px !important;
    }
}