

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

}
body{
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #f8e8fa;
  position: relative;
  
}
body::before{
  content: '';
  position: absolute;
  width: 100%;
  
  clip-path: inset(47% 0 0 0);
  z-index: -1;
  height: 100%;
}
::selection{
  background:    #FF676D;
  color: #fff;
}
.container{
  max-width: 950px;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.container .main-card{
  display: flex;
  justify-content: space-evenly;
  width: 200%;
  transition: 1s;
  
}
#two:checked ~ .main-card{
  margin-left: -100%;
}
.container .main-card .cards{
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
  justify-content: space-between;
}
.main-card .cards .card{
  width: calc(100% / 3 - 10px);
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}
.main-card .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;
  
}
.cards .card .content .img{
  height: 130px;
  width: 130px;
  border-radius: 50%;
  padding: 3px;

  margin-bottom: 14px;
}
.card .content .img img{
  height: 100%;
  width: 100%;
  border: 3px solid #ffff;
  border-radius: 50%;
  object-fit: cover;
}
.card .content .name{
  font-size: 20px;
  font-weight: 500;
}
.card .content .job{
  font-size: 20px;
  color: #FF676D;
}
.card .content .media-icons{
  margin-top: 10px;
  display: flex;
}
.media-icons a{
  text-align: center;
  line-height: 33px;
  height: 35px;
  width: 35px;
  margin: 0 4px;
  font-size: 14px;
  color: #FFF;
  border-radius: 50%;
  border: 2px solid transparent;
  background: #FF676D;
  transition: all 0.3s ease;
}
.media-icons a:hover{
  color: #FF676D;
  background-color: #fff;
  border-color: #FF676D;
}
 .container .button{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px;
}
.button label{
  height: 15px;
  width: 15px;
  border-radius: 20px;
  background:black;
  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) {
  .main-card .cards .card{
    margin: 20px 0 10px 0;
    width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .main-card .cards .card{
    /* margin: 20px 0 10px 0; */
    width: 100%;
  }


.footer {
  
  color: #fff;
  padding: 50px 0;
  width: 100vh;
  align-items: center;
  justify-content: center;
  }
  
  .footer .container {
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  
  }
  
  .footer .row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  }
  
  .footer .column {
  justify-content: center;
  align-items: center;
  }
  
  .footer h4 {
  font-weight: bold;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  }
  
  .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  }
  
  .footer li {
  margin-bottom: 10px;
  justify-content: center;
  }
  
  .footer a {
  color: white;
  text-decoration: none;
  justify-content: center;
  }
  
  .footer a:hover {
  color: #000000;
  justify-content: center;
  }
  
  .social-links {
color: #fff;
  font-size: 24px;
  margin-top: 20px;
  justify-content: center;
  }
 
    .social-links a{
      position: relative;
      z-index: 1;
      
    }
    
  
  
  .p {
  text-align: center;
  font-size: 14px;
  
  }
  
  

 
  .fa-brands a:hover,
  .fa-brands a.active,
  .fa-solid a:hover,
  .fa-solid a.active {
    color: lavender;
  }
}

