.hero__text h1 {
    color: #111111;
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 30px;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h1 {
    top: 0;
    opacity: 1;
}

.single-services .hero__items
{
    height: 65vh;
    padding-top: 75px;
}

.how-works__list.steps__list
{
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 620px)
{
    .hero__text h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media screen and (max-width: 992px)
{
    .how-works__list.steps__list
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 540px)
{
    .how-works__list.steps__list
    {
        grid-template-columns: repeat(1, 1fr);
    }
}