 

.slider-container {
            width: 100%;
            height: 450px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
			background:#fff ;
  
			
        }
        .slider-list {
            position: absolute;
			padding:0px;
		
            left: 0;
            top: 0;
            display: flex;
            margin: 0;
        
            list-style: none;
        }
        .slider-list li {
            width: 310px;
            height: 390px;
            flex-shrink: 0;
			padding:10px;
        }
        .slider-list img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		 .slider-list p{
			 
			 text-align:center;
		 }
		 
		 
@media only screen and (max-width: 768px){
	.slider-container {
            width: 100%;
            height: 500px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
			background:#fff ;
  
			
        }
	
	   .slider-list li {
            width: 350px;
            height: 390px;
            flex-shrink: 0;
			padding:20px;
        }
		
		  .slider-list img {
            width: auto;
            height: 100%;
            object-fit: cover;
        }
		
		 .slider-list p{
			 font-size:18px;
			 line-height:36px;
			 text-align:center;
		 }
}