/*
*/
.simple-slider {
    margin-top: 56px;
    margin-bottom: 56px;
}

@media screen and (min-width: 1024px) {
    .simple-slider {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

/*
*/
.simple-slider {
    padding: 0 16px;
}

@media screen and (min-width: 1281px) {
    .simple-slider {
        padding: 0;
    }
}

.simple-slider.brown-bg,
.simple-slider.grey-bg,
.simple-slider.green-bg {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media screen and (min-width: 1024px) {

    .simple-slider.brown-bg,
    .simple-slider.grey-bg,
    .simple-slider.green-bg {
        padding-top: 102px;
        padding-bottom: 102px;
    }
}

.simple-slider.grey-bg {
    background: var(--light-grey);
}

.simple-slider.green-bg {
    background: var(--green);
}

.simple-slider.green-bg h3 {
    color: var(--dark-blue);
}

.simple-slider h3 {
    margin: 0;
}

.simple-slider--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .simple-slider--container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 64px;
    }
}

.simple-slider--header {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .simple-slider--slider {
        order: 9;
        width: 100%;
    }
}

.simple-slider--nav {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .simple-slider--nav {
        flex-direction: row;
        align-items: center;
    }
}

.simple-slider.brown-bg {
    background: #CFC4C6;
}

.simple-slider.brown-bg h3 {
    color: #423638;
}

.simple-slider.brown-bg .link {
    color: #423638;
}

.simple-slider.brown-bg .link::after {
    background: #423638;
}

.simple-slider.brown.grey-bg h3 {
    color: #423638;
}