.parent {
    position: relative;
    z-index: 0;
    height: 300px;
    overflow: hidden;
}

.animated-home-slider svg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    z-index: 45;
    top: 51%;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
    overflow: unset;
}

.animated-home-slider svg#svg1 {
    direction: ltr;
    transform: translate(50%, -50%) scaleX(-1);
}

.animated-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 26px;
    height: 26px;
    overflow: hidden;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    -webkit-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.75);
    border: none;
    transition: 0.5s;
    display: grid;
    place-items: center;
    color: #fff;
}

.animated-slider-btn ion-icon {
    font-size: 1.4rem;
}

.animated-slider-btn:focus {
    outline-width: 0;
}
.animated-slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.animated-slider-btn.left {
    inset-inline-end: 10px;
}
.animated-slider-btn.right {
    inset-inline-start: 10px;
}

.animated-home-slider svg circle {
    stroke: #fff;
    fill: none;
    transition: 0.3s;
    transition-timing-function: linear;
}

.animated-home-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    display: inline-flex;
    overflow: hidden;
}

.animated-home-slider .slide {
    position: absolute;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: 1.4s;
}

.animated-home-slider .slide.tran {
    transform: scale(1.3);
}

.animated-home-slider .slide.up1 {
    z-index: 20;
}

.animated-home-slider .slide.up2 {
    z-index: 40;
}

.animated-home-slider .slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.animated-home-slider .slide .slide-content {
    width: 100%;
    padding: 0 50px;
    font-size: 2rem;
    font-weight: 800;
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    font-family: "Droid Arabic Kufi Regular", sans-serif;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animated-home-slider svg circle.steap {
    stroke-width: 0;
}

.animated-home-slider svg circle.streak {
    stroke-width: 82px;
}

@media only screen and (min-width: 578px) {
    .animated-home-slider .slide .slide-content {
        font-size: 3rem;
        padding: 0 80px;
    }
}
@media only screen and (min-width: 768px) {
    .parent {
        height: 500px;
    }
    .animated-slider-btn {
        width: 40px;
        height: 40px;
    }
    .animated-slider-btn ion-icon {
        font-size: 2.4rem;
    }
    .animated-slider-btn.left {
        inset-inline-end: 20px;
    }
    .animated-slider-btn.right {
        inset-inline-start: 20px;
    }
    .animated-home-slider .slide .slide-content {
        font-size: 4.5rem;
    }
}
