.box_image{
height: 350px;
overflow: hidden;
position: relative;
}
.box_image>img{
background: none;
border: none;
padding: 0px;
position: absolute;
visibility: hidden;
}
.content .box_image>img{
background: none;
border: none;
padding: 0px;
}
.box_image .imgOpis{
position: absolute;
left:0px;
right:0px;
top:0;
bottom: 0px;
color: #FFFFFF;
font-size: 30px;
margin: 0;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
max-width: 50%;
margin: 0px auto;
text-align: center;
font-family: var(--gfont2-family);
font-size: 40px;
font-weight: 700;
text-shadow: 2px 2px 2px rgba(0,0,0,1);
transform: translateX(-300%);
animation-duration: 1s;
animation-fill-mode: both;
animation-name: topImage;
}

@keyframes topImage {
0% {
opacity: 0;
transform: translateX(-300%);
}

100% {
opacity: 1;
transform: translateX(0%);
}
}


@media screen and (max-width:900px){
.box_image{height: 200px}
}

