.Box1 {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 25%;
    background-image: url('../img/pageBanner/new.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width:1200px){
    .Box1 {
        padding-top: 25%;
    }
}
@media screen and (max-width:991px){
    .Box1 {
        padding-top: 270px;
    }
}
.Box2{
    margin-top: 50px;
}
.Box2 .row{
    margin: 0 auto;
}

.Box2 .row .col-lg-9 {
    height: fit-content;
}
.Box2 .row .col-lg-9 .newBox{
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    transition: 0.3s;
}
.Box2 .row .col-lg-9 .newBox:hover{
   top: -20px;
}
.Box2 .row .col-lg-9 .newBox .col-lg-5{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
}
.Box2 .row .col-lg-9 .newBox img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.Box2 .row .col-lg-9 .newBox .right{
    padding: 30px 0 30px 20px;
}
.Box2 .row .col-lg-9 .newBox .right .xx span{
    color: #054A94;
    font-size: 20px;
    padding-left: 5px;
}
.Box2 .row .col-lg-9 .newBox .right .newTitle{
     font-size:30px;
     max-width: 90%;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
    overflow: hidden;
    text-overflow: ellipsis; 
    margin: 10px 0;
}
.Box2 .row .col-lg-9 .newBox .right  .newNr{
    color: #9c9c9c;
}
.Box2 .row .col-lg-9 .newBox .right  a{
    margin-top: 30px;
    display: block;
    color: black;
    font-weight: bold;
    font-size: 22px;
    transition: 0.3s;
}
.Box2 .row .col-lg-9 .newBox:hover .right a{
    color: #054A94;
}