.textElement{
    opacity: 0;
    transform: scale(0.9);
    transition: .7s ease-in-out all;
}
.imgElement{
    display: none;
}

.textElement.visible{
    opacity: 1;
    transform: scale(1);
}


/*--------------------------Media queris----------------------------*/
/*Medium screens (tablets larger than 768px)*/
@media screen and (min-width:768px) {
    /*------------------For company page-------------------*/
    .imgElement{
        display: block;
        opacity: 0;
        transform: scale(0.9);
        transition: .7s ease-in-out all;
    }
    .imgElement.visible{
        opacity: 1;
        transform: scale(1);
    }
    .companyImg{
        width: 100%;
    }
    .imgSec{
        
        width: 35%;
    }

    .item_item.left{
        transform: translate(-100px);
    }
    .item_item.right{
        transform: translate(100px);
    }
    
    .item_item.left.visible{
        transform: translate(0);
    }
    .item_item.right.visible{
        transform: translate(0);
    }
}