/* Home Intro */
.home-intro {
    padding-top: 254px;
    padding-bottom: 30px;
    min-height: 790px;
}

.home-intro__title {
    font-weight: 400;
    font-size: 70px;
    line-height: 90px;
    max-width: 750px;
    color: #000000;
    margin-bottom: 33px;
}

.home-intro__btn {
    margin-bottom: 204px;
}

.home-intro__anim {
    position: absolute;
    max-width: 262px;
    -webkit-transform: rotate(-14deg);
    -ms-transform: rotate(-14deg);
    transform: rotate(-14deg);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.home-intro__anim.one {
    top: 15px;
    right: 0;
    -webkit-animation: moveIntroImages 14s infinite linear;
    animation: moveIntroImages 14s infinite linear;
    animation-delay: .5s;
}

.home-intro__anim.two {
    top: 65px;
    right: -350px;
    -webkit-animation: moveIntroImagesTwo 12s infinite linear;
    animation: moveIntroImagesTwo 12s infinite linear;
    animation-delay: .5s;
}

/* \Home intro */


/* Adaptive */
@media (max-width: 1060px) {
    .home-intro__anim.one {
        right: -210px;
    }

    .home-intro__anim.two {
        right: -500px;
    }
}

@media (max-width: 800px) {
    .home-intro {
        padding-top: 200px;
        min-height: initial;
        height: initial;
    }

    .home-intro__btn {
        margin-bottom: 160px;
    }

    .home-intro__title {
        font-size: 60px;
        line-height: 70px;
    }

    .home-intro__anim {
        max-width: 180px;
    }

    .home-intro__anim.one {
        right: -100px;
    }

    .home-intro__anim.two {
        right: -300px;
    }
}

@media (max-width: 685px) {
    .home-intro {
        background: var(--url-bg-intro-mobile) no-repeat bottom center;
        background-size: cover;
        padding-top: 90px;
        padding-bottom: 470px;
    }

    .home-intro__title {
        text-align: center;
        max-width: 100%;
        font-weight: 400;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 34px;
    }

    .home-intro__btn {
        margin: 0 auto;
    }

    .home-intro__anim {
        opacity: 1;
        z-index: 0;
        width: 152px;
        -webkit-transform: rotate(-23.52deg);
        -ms-transform: rotate(-23.52deg);
        transform: rotate(-23.52deg);
    }

    .home-intro__anim.one {
        -webkit-animation: none;
        animation: none;
        right: initial;
        top: initial;
        left: 500px;
        bottom: -224%;
    }

    .home-intro__anim.two {
        -webkit-animation: none;
        animation: none;
        right: initial;
        top: initial;
        left: -10px;
        bottom: -110%;
    }
}

/* \Adaptive */