#slider {
    padding-top: 220px;
    padding-bottom: 200px;
    position: relative;
    background-size: cover;
}

.slider-simple .container {
    gap: 50px;
}

#slider-wave {
    z-index: 3;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}

#slider-wave img {
    display: block;
}

#slider .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

#slider h1 {
    color: #fff;
}

#slider .description {
    font-size: 24px;
}

#slider .buttons-group {
   margin-top: 30px;
}

#slider .list {
    margin-top: 30px;   
    font-size: 18px;
    color: var(--site-black);
    display: grid;
    gap: 5px;
}

#slider .list .item {
    display: flex;
    align-items: center;
    color: #fff;
}

#slider .list .item svg {
    height: 22px;
    width: auto;
    display: block;
    margin-right: 12px;
}

#slider .list .item svg * {
    fill: var(--site-primary);
}

.slider-image-parts {
    position: relative;
}

.outline {
    position: relative;
    display: inline;
}

.outline img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -55px;
    right: -55px;
    margin: auto;
    transform: scaleY(0.8) scaleX(1.1);
    z-index: -1;
}

.circles-wrap {
    width: 400px;
    height: 400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 85px;
    grid-template-rows: 85px;
    place-content: center;
    border-radius: 50%;
}

.circles-wrap .circle {
    grid-area:1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--site-black);
    animation: spin 8s var(--d,0s) linear infinite; /* duration = 12s, numbor of item = 6 so a delay of 12/6 = 2s */
    transform:rotate(0) translate(200px) rotate(0);
}

.circles-wrap .circle img {
    width: 75%;
}

.circles-wrap .circle:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    margin: auto;
    border-bottom: 1px dashed #fff;
    opacity: 0.5;
}

.slider-image-parts .circles-logo {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 100px;
    right: 100px;
    margin: auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

@keyframes spin {
    100% {
        transform: rotate(1turn) translate(200px);
    }
}

@media (max-width: 980px) {
    #slider {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    #slider .container {
        grid-template-columns: 1fr;
    }

    #slider h1 {
        font-size: 52px;
    }

    #slider .buttons-group {
        margin-top: 50px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .circles-wrap {
        display: none;
    }

    .slider-image-parts {
        display: none;
    }
}