#work-day {
    width: 40vw;
    background-color: white;
    border-radius: 10px;
    box-shadow: 1px 1px grey; /* fixed box-shadow syntax */
    position: absolute;
    left: 30vw; /* add this to center horizontally */
    transform: translateY(-30%);
    z-index: 1;
}

.big-motto {
    text-transform: capitalize;
}

.feature img {
    width: 90%;
    float: right;
    height: 90%;
    object-fit: cover;
}

.img-about {
    width: 20vw;
}

ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: larger;
    counter-reset: steps;
}
ol li {
    margin-bottom: 1px;
    counter-increment: steps;
}
ol li::before {
    content: counter(steps);
    margin-right: 0.5rem;
    /* background: #0088ff; */
    border: 1px solid rgb(0, 166, 255);
    color: rgb(0, 166, 255);
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    line-height: 1.2em;
}

@media (min-width: 300px) {
    .img-about {
        width: 40vw;
    }
    #work-day {
      width: 80vw;
      left: 10vw;
    }

    .container-service{
      margin-top: 50px;
    }
}
/* Medium breakpoint and up */
@media (max-width: 768px) {
    .img-about {
        width: 40vw;
    }
    #work-day {
        width: 80vw;
        left: 10vw;
    }
}

@media (min-width: 768px) {
    .img-about {
        width: 35vw;
    }
    #work-day {
        width: 60vw;
        left: 20vw;
    }
}

/* Large breakpoint and up */
@media (min-width: 992px) {
    .img-about {
        width: 40vw;
    }

    #work-day {
        width: 50vw;
        left: 25vw;
    }
}

@media (min-width: 1200px) {
    .img-about {
        width: 20vw;
    }
    #work-day {
        width: 35vw;
        left: 35vw;
    }
}
