:root {
    --carousel-blue: #0078FF;
}

.carousel-outer {
    display: flex;
    flex-direction: column;
    width: 747px;
    margin-top: 54px;
    margin-bottom: 189px;
}

.carousel-outer>div {
    display: flex;
    justify-content: space-between;
}

.carousel-outer>.text>div {
    word-wrap: break-word;
    text-align: center;
    width: 110px;
}

.carousel-outer>.text {
    /* width: 50px; */
    word-wrap: break-word;
    color: #C1C7D1;
}

.carousel-outer>.text>.active {
    color: var(--carousel-blue);
}

.circle {
    width: 30px;
    height: 30px;
    background-color: #D9D9D9;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    flex-grow: 0;
}

.circle::after {
    content: '';
    width: 18px;
    height: 18px;
    background-color: #C1C7D1;
    border-radius: 50%;
    display: inline-block;
    transform: translate(6px, 6px);
}

.circle.active {
    background-color: #fff;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
}

.circle.active::after {
    background-color: var(--carousel-blue);
}

.carousel-outer>.text>div {
    flex-grow: 0;
}

.carousel-outer>.circles>.line {
    background: linear-gradient(transparent 45%, #E6E8EC, #E6E8EC, transparent 55%);
}

.carousel-outer>div>.filler {
    flex-grow: 1;
}

.carousel-outer>.text>.spacer {
    width: 50px;
}

.carousel-outer>.circles>.spacer {
    width: 85px;
}

.carousel-outer>.text {
    margin-bottom: 25px;
}

.carousel-content {
    text-align: justify;
}

.carousel-content-1 {
    display: flex;
    gap: 96px;
}

.carousel-content-1 {
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--text-color);
}

.carousel-content-1 .left img {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .5))
}