#industries-section .single-industry-wrapper{
    border-radius: 0 5rem 5rem 0;
    background: #F7F9FB;
    padding: 60px 40px;
    position: relative;
    left: -35px;
    z-index: 1;
}
#industries-section .single-industry-image{
    z-index:2;
}
@media screen and (max-width:768px){
    #industries-section .single-industry-wrapper{
        margin-top: 20px;
        padding: 20px;
        border-radius: 0;
        left: 0;
    }
}
.progress {
    display: block;
    width: 10%;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;

    background-color: #f5f5f5;
    background-image: linear-gradient(to right, #ED6E1F, #ED6E1F);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
}

.view-more-pill {
    width: 27%;
    bottom: 0;
    right: 19%;
    box-shadow: 0 4px 25px 11px #F9F9F9;
    border-radius: 40px;
}

.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(calc(50% - 115px));
}

.nav-arrows .prev-arrow,
.nav-arrows .next-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-arrows .prev-arrow {
    position: absolute;
    left: 10px;
}

.nav-arrows .next-arrow {
    position: absolute;
    right: 10px;
}

@media screen and (min-width: 900px) {
    .nav-arrows {
        width: 105%;
        margin: -55px;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 968px) {
    .nav-arrows .slick-arrow svg {
        max-width: 60px;
    }
}

@media screen and (max-width: 768px) {
    .nav-arrows {
        width: 100%;
        margin: 0;
        top: 250px;
        left: 0;
        transform: translateY(-50%);
    }
}