

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
}

.wrapper .card{
    max-width: max-content;
    backdrop-filter: blur(5px);
    padding: 40px;
    margin: 30px 15px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px -1px rgba(10,99,169,0.16),
    3px 3px 10px -1px rgba(255,255,255,0.7);
    
}

/* For Active Card */
.wrapper .card.active{
    transform: scale(1, 1.09);
}

.wrapper .card h3{
    margin-bottom: 15px;
}

/* For Active Card */
.wrapper .card.active{
   color: rgba(255,255,255,1);;
}

.wrapper .card h1{
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
}
/* For Active Card */
.wrapper .card.active h1{
    color: rgba(255,255,255,1);;
 }
 

.wrapper .card h1 span{
    font-size: 12px;
    color: rgb(255, 255, 255);
}

/* For Active Card */
.wrapper .card.active h1 span{
    color: rgba(255,255,255,0.9);;
 }
 

.wrapper .card p{
    margin: 20px 0;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.5;
}

/* For Active Card */
.wrapper .card.active p{
    color: rgba(255,255,255,1);;
 }
 

.wrapper .card ul{
    list-style: none;
}

.wrapper .card ul li{
    line-height: 3;
    color: rgb(255, 255, 255);
}

/* For Active Card */
.wrapper .card.active ul li{
    color: rgba(255, 255, 255, 0.9);
 }
 

.wrapper .card ul li i{
    color: rgb(255, 255, 255);
    margin-right: 10px;
}

/* For Active Card */
.wrapper .card.active ul li i{
    color: rgba(255,255,255,0.4);;
 }
 

.wrapper .card a{
    margin: 20px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border: 1px solid  white;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.4s;
    color: white;
}

/* For Active Card */
.wrapper .card.active a{
   background-color: white;
   color: rgb(255, 255, 255);
 }
 
.wrapper .card a:hover{
    background-color: white;
    color: black;
}

/* For Active Card */
.wrapper .card.active a:hover{
   border: 1px solid white;
  }
.text-color-white{
    color: white;
}
#details-list{
    color: white;
}