@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.slider{
  margin: auto;
  padding: 10px;
  width: 50%;
  max-width: 600px;
  display: flex;
}
.slider .card{
  flex: 1;
  margin: 0 10px;
  background: #fff;
}
.slider .card .img{
  height: 300px;
  width: 100%px;
}
.slider .card .img img{
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}
.slider .card .content{
  padding: 10px 20px;
}
.card .content .title{
  font-size: 25px;
  font-weight: 600;
}
.card .content .sub-title{
  font-size: 20px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 20px;
}
.card .content p{
  text-align: justify;
  margin: 10px 0;
}
.card .content .btn{
  display: block;
  text-align: left;
  margin: 10px 0;
}
.card .content .btn button{
  background: #e74c3c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.card .content .btn button:hover{
  transform: scale(0.9);
}

.owl-nav {
  margin:auto;
  max-width: 1000px;  
  text-align: center;
}

.owl-prev {
  margin: 15px;
  height: 25px;
  width: 75px;
  border: #000000 solid 1px;
  background: none;
}

.owl-next {
  margin: 10px;
  height: 25px;
  width: 75px;
  border: #000000 solid 1px;
  background: none;
}

.owl-nav .btnCarousel:hover {
  background: #29355e;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}