.header{
    background-color: #ffffff;
}
.header h2{
    color: #ffffff;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 3%;
    background-color: #c00055;
    padding: 8px;
}
.notice{
    box-shadow: rgb(0 0 0 / 5%) 0px 6px 24px 0px, rgb(0 0 0 / 8%) 0px 0px 0px 1px;
    padding: 5%;
    margin-bottom: 5%;
}

.row{
    margin: 0 5px;  
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
}
.row:after {
  content: "";
  clear: both;
}
h1{
  font-family: 'Oswald', sans-serif;
  color: white;
}

p{
  color: black;
  font-family: 'Quattrocento', serif;
  font-size: medium;
  text-align: justify;
}
  li{
    text-align: justify;
  }
h3{
    color: #ffffff;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 3%;
    padding: 32px;
}
.flip-card {
  border-radius: 5px;
  border-color: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
  width: 19.2%;
  height: 210px;
  border: 1px solid #f1f1f1; 
  /* background-image: linear-gradient(52deg, #c00055, #5b2c6a); */
  /* background-image: url('img\achivers\images.png'); */
  grid-row: 2/3;
  grid-column: 2/3;
  margin: 0 auto;
  display: grid; 
  grid-template-rows: 1fr 6fr 1fr;
}
@media screen and (max-width: 600px){
    .flip-card {
       width: 225px;  
      margin-bottom: 1rem;
 }
}
.flip-card-inner {
    position: relative;
    width: 200px;
    height: 200px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    
  }  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 200px;
    height: 200px;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    margin-top: 4px;
  }
  /* .flip-card-front {
    padding: 16%;
  } */
  .flip-card-back{
    transform: rotateY(180deg);
    font-size: 15px !important;
    
    
  }
  .flip-card-back h6{
    font-weight: bold;
  }
 