.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--header);
    color: var(--white);
}

.parallax {
    height: 400px;
    background-image: url(../images/parallax.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    box-sizing: border-box;
}

.slider-wrapper {
    position: relative;
}

.slider-button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button--white {
    background: var(--white);
    ;
    border: 1px solid var(--white);
    color: var(--header);
}

.button--white:hover {
    background: var(--header);
    border: 1px solid var(--header);
    color: var(--white);
}