﻿#company{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#company li{
    width: 50%;
    overflow: hidden;
    background: #001550;
    position: relative;
    min-height: 480px;
    margin: 0 3px;
    transition: all ease .5s;
    z-index: 1;
}
#company li > img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: .75;
}
#company li:after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: -webkit-linear-gradient(0deg,rgb(2 59 137 / 82%),rgba(222,5,28,0));
    transition: all .6s;
}
#company li > a{
    position: absolute;
    bottom: 15%;
    left: 40px;
    right: 40px;
    transition: all ease .5s;
    z-index: 99;
}
#company li > a img{
    width: 40px;
}
#company li > a svg{
    width: 40px;
  height: 50px;
}
#company li > a h3{
    color: #fff;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 1;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  text-shadow: 0 0 5px rgb(0 0 0 / 0%);
  text-align: left;
}
#company li > a p{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: #fff;
    font-family: arial;
    opacity: .8;
    margin: 0;
    line-height: 1;
    margin-bottom: 19px;
    font-size: 18px;
    text-align: left;
    font-weight: 100;
}
#company li > a span{
    color: #000;
    background: rgb(255 255 255);
    padding: 5px 32px;
    border-radius: 0px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all ease .5s;
}
#company li:hover > a{
    padding-bottom: 30px;
}
#company li:hover > a span{
    opacity: 1;
}
#company li.active1{
    width: 60%;
}