@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

::selection{
  background:    #FF676D;
  color: #FF676D;
}
.cds{
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.cds {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width:576px) {
  .cds {
      max-width: 540px
  }
}

@media (min-width:768px) {
  .cds {
      max-width: 720px
  }
}

@media (min-width:992px) {
  .cds {
      max-width: 960px
  }
}

@media (min-width:1200px) {
  .cds {
      max-width: 1140px
  }
}

.cds-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.cds .card-deck{
  display: flex;
  justify-content: space-evenly;
  width: 200%;
  transition: 1s;
}
#two:checked ~ .card-deck{
  margin-left: -100%;
}
.cds .card-deck .cards{
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
  justify-content: space-between;
}
.card-deck .cards .card{
  width: calc(100% / 3 - 10px);
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}
.card-deck .cards .card:hover{
  transform: translateY(-15px);
}
.cards .card .content{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.single-publication {
  height: 330px;
}
.single-publication .image{
  height: 130px;
  width: 130px;
  border-radius: 50%;
  padding: 3px;
  margin-left: 60px;
  background-color: #ec5252;
  margin-bottom: 14px;
}
.single-publication .image img {
  filter: brightness(0) invert(1);
}
.single-publication .image img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.card .content .name{
  font-size: 20px;
  font-weight: 500;
}
.card .content .job{
  font-size: 20px;
  color: #FF676D;
}
 .cds .button{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px;
}
.button label{
  height: 15px;
  width: 15px;
  border-radius: 20px;
  background-color: #ec5252;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.button label.active{
  width: 35px;
}
#one:checked ~ .button .one{
  width: 35px;
}
#one:checked ~ .button .two{
  width: 15px;
}
#two:checked ~ .button .one{
  width: 15px;
}
#two:checked ~ .button .two{
  width: 35px;
}
input[type="radio"]{
  display: none;
}
@media (max-width: 768px) {
  .card-deck .cards .card{
    margin: 20px 0 10px 0;
    width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .card-deck .cards .card{
    /* margin: 20px 0 10px 0; */
    width: 100%;
  }
}
.cds .details .book-title a {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  margin-bottom: 5px;
}

.cds .details .book-title a:hover {
  color: #ffc600;
}