/*default styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(27, 27, 27);
    color: #fff;
    padding: 150px 0;
}

a{
    text-decoration: none;
    color: #fff;
}

ul{
    list-style: none;
}

img{
    max-width: 100%;
    object-fit: cover;
	max-height: 100%;
	border-radius:0.3em;
}

button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    font-size: 12px;
}


.card1{
margin-top:5px;
	padding: 30px;
 width:250px;
  height:250px;
  border-radius:0.6em;
  border:1px solid #cacaca;
  box-shadow: 2px 5px 10px rgba(190, 164,209, .5);
    min-height: 300px;
    color: #111;
    font-size: 16px;
}

.slider-container{
	max-width: 600px;
	padding: 0 15px;
	position: relative;
	margin: 0 auto;
}
.swiper-container{
  overflow:hidden;
}

/* .swiper-button-prev,
.swiper-button-next{
	background-color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
} */

/*end of default styles*/

.swiper-pagination-bullet{
   
    width: 10px;
    height: 10px;
    margin: 0 10px;
    opacity: 0.5;
}
.swiper-pagination-bullet-active{
   
    opacity: 1;
}

.swiper-button-prev:after, .swiper-button-next:after{
    display: none;
}

.swiper-button-prev, .swiper-button-next{
    width: 15px;
    height: 40px;
}
.swiper-button-prev{
    background: url('../img/but-prev.svg');
}

.swiper-button-next{
    background: url('../img/but-next.svg');
}
.swiper-wrapper{
  height:900px;
}


@media screen and (max-width: 380px) {
.card1{width:100% !important;}


}