


.case img
{
    width: 300px;
    height: auto;
    object-fit: cover;
    /* border-radius: 50%; */
    float: left;
    shape-outside: margin-box;
    margin: 0 20px 5px 0;
}

.case
{
    max-width: 70%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 200px;
    margin-bottom: 100px;
}

.case-slider
{
    max-width: 70%;
    margin: 0 auto;
    /* border-radius: 10px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 30px; */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);


    /* max-width: 70%;
    margin: 0 auto;

    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 200px;
    margin-bottom: 100px;
    position: relative;
    display: flex;
    flex-direction: column; */
}

.case-slider h1
{
     margin-top: 70px;
    /* margin-left: 30%; */
    /* font-size: 20px; */
}

.case-slider p
{
     /* margin-top: 70px; */
    /* margin-left: 30%; */
    font-size: 20px;
}



.case::after
{
    content:"";
    display: block;
    clear: both;
}



.case h1
{
    margin-bottom: 10px;
}

.case p
{
    line-height: 1.6;
}

.slider-1
{
    max-width: 100%;
    height: 500px;
    margin: 100px auto;
    border: 1px solid #ccc;;
    overflow: hidden;
}




.slider-1 .slider
{
    display: flex;
    position: relative;
    animation: slider-1 20s infinite ease-in-out;
   

    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    /* margin-top: 200px; */
    /* margin-bottom: 100px; */
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
}






.slider div
{
    background-color: black;
    flex-shrink: 0;
    height: 100%;
    /* padding: 72px 0; */
    width: 100%;
    font-size: 72px 0;
    text-align: center;
    color: #ccc;
    /* float: bottom; */
}

.slider div img
{
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* background:rgba(0, 0, 0, 0.2) url('images/fo1.jpg'); */
    /* background-size: cover; */
	background-blend-mode: darken;
    opacity: 0.5;
}

/* .img
{
    opacity: 0.3;

} */
.slider div h1
{
    position: absolute;
    color:#fff;
    width:100%;
    text-shadow:1px 1px 3px black;
    color: fff;
    /* float: bottom; */
    font-size: 40px;
    margin-left: -30%;
    margin-top: 30%;
    /* opacity: 0.8; */
    /* text-shadow:1px 1px 3px black; */
    /* top:20%; */
    /* left:35%; */

}

.slider div p
{

    position: absolute;
    color:#fff;
    /* top: 10%; */
    /* left: 1%; */
    /* float: left; */
    margin-left: 50px;
    margin-top: 15%;

    width: 40%;
    text-shadow:1px 1px 3px black;



}

@keyframes slider-1
{
    0%,
    20%
    {
        transform:translateX(0);
    }
    25%,
    45%
    {
        transform:translateX(-100%);
    }
    50%,
    70%
    {
        transform:translateX(-200%);
    } 
    75%,
    95%
    {
        transform:translateX(-300%);
    }
    100%
    {
        transform:translateX(-400%);
    }
}