.slide-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.single-slide {
    box-sizing: border-box;
    padding: 0 11px;
    margin: 5px;
    text-align: center;
}

.single-slide:first-child {
    flex: 0 0 66%;
}

.single-slide:not(:first-child) {
    flex: 0 0 33.33%;
}

.slides-wrapper:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 440px;
    content: '';
    background: linear-gradient(90deg, rgba(36, 64, 142, 0) 0%, #020c27 100%);
}

.slide {
	position: relative;
}

.collapse-link.active svg {
	transform: rotate(180deg);
}