.step-h1 {
    font-weight: 500;
}
.step-1 , .step-2 , .step-3 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.num {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 8px auto;
    border: 1px solid #1D2019;
    color: #1D2019;
    text-align: center;
    font-size: 0.8rem;
    text-justify: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    /*padding-top: 8px;*/
}

.num:hover {
    background-color: #1e3d58;;
    color:white;
}

.num span {
    margin: auto;
    width: max-content;
    height: max-content;
    padding: 0;
    display: block;
}

.num-p {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Roboto', serif;
    color: black;
}

.img-wapper {
    display: block;
    position: relative;
}

.img-1 , .img-2 , .img-3 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    display: none;
    z-index: -1;
}
.img-1 img , .img-2 img , .img-3 img {
    width: 100%;
    height: 100%;
}


.img-1 {
    display: block;
}


@media screen and (max-width: 768px) {
    .img-wapper {
        display: none;
    }
}

.show-img {
    transition: all 200ms;
    position: relative;
    display: flex;
    padding: 0;
    cursor: pointer;
}

.show-lay {
    position: absolute;
    display: block;
    opacity: 0;
    background-color: #6c757d;
    top:0;
    left: 0;
    right: 100%;
    bottom: 0;
    transition: all 200ms ease;
}

.show-img:hover > .show-lay {
    opacity: 0.2;
    right: 0;
}