/* about banner css starts */

.about-banner .about-banner-bg {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.61) 99.99%, rgba(217, 217, 217, 0.00) 100%), url("../assets/images/banner/Crane-lifitng-belts.jpg");
    background-size: cover;
    height: calc(100vh - 150px);
    max-height: 600px;
}

.about-banner .about-banner-title {
    bottom: 60px;
    color: var(--white);
    width: 322px;
    font-size: 48px;
}

.about-banner .vector {
    padding: 22px;
    background-color: var(--red);
    border-radius: 5px;
    bottom: 0px;
    animation: mover 1s infinite alternate;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

@media only screen and (max-width: 768px) {
    .about-banner {
        padding-top: 80px;
    }

    .about-banner .about-banner-bg {
        width: calc(100vw - 25px);
        margin: 0 auto;
        border-radius: 5px;
        margin-bottom: 25px;
    }

    .about-banner .about-banner-bg {
        /* height: calc(100vh - 330px); */
        max-height: 370px;
    }

    .about-banner .about-banner-title {
        position: relative;
        top: -65px;
        color: unset;
        width: 250px;
        font-size: 34px;
    }
}

/* about banner css ends */