.img-slider {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--font);
}

.img-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--header);
}

.img-slider .slide {
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.img-slider .slide img {
    z-index: 1;
    margin-left: 20%;
    width: 60%;
    border-radius: 5px;
}

.img-slider .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    margin-top: 35%;
    margin-left: 5%;
    transform: translateX(-50%);
    
}


.img-slider .navigation .btn {
    /*background: rgba(255, 255, 255, 0.5);*/
    background: var(--font-footer);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 820px) {
    .img-slider {
        width: 100%;
        height: 375px;
    }

    .img-slider .slide img {
        z-index: 1;
        margin-left: 20%;
        width: 60%;
        border-radius: 5px;
    }

    .img-slider .navigation {
        margin-top: 28%;
    }

    .img-slider .navigation .btn {
        width: 10px;
        height: 10px;
        margin: 8px;
    }
}

@media (max-width: 620px) {
    .img-slider {
        width: 100%;
        height: 300px;
    }

    .img-slider .slide img {
        z-index: 1;
        margin-left: 17%;
        width: 65%;
        border-radius: 5px;
    }

    .img-slider .navigation {
        margin-top: 28%;
    }

    .img-slider .navigation .btn {
        width: 10px;
        height: 10px;
        margin: 8px;
    }
}

@media (max-width: 420px) {
    .img-slider {
        width: 100%;
        height: 300px;
    }

    .img-slider .slide img {
        z-index: 1;
        margin-left: 10%;
        width: 80%;
        border-radius: 5px;
    }

    .img-slider .navigation {
        margin-top: 40%;
    }

    .img-slider .navigation .btn {
        width: 10px;
        height: 10px;
        margin: 8px;
    }
}
