@charset "utf-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
 }

.wrapper{
    display: flex;
    color: rgba(0,0,0,0.7);	
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper .card{
    max-width: 330px;
    background-color:#7fffd4;
    padding: 40px;
    margin: 60px 35px;
    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);
    margin-bottom: 200px;
}

.wrapper .card h4 {
    margin-bottom: 5px;
    color: rgba(0,0,0,0.7);
    font-size: 25px;
}

.wrapper .card h5{
	font-size: 22px;
	color: rgba(0,0,0,0.6);
	}
.wrapper .card h5 span{
	font-size: 15px;
	}

.wrapper .card p{
    margin: 6px 0;
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.5;
}

.wrapper .card ul{
    list-style: none;
}

.wrapper .card ul li{
    line-height: 2;
    color: rgba(0,0,0,0.9)
}

.wrapper .card ul li i{
    margin-right: 10px;
    color: rgba(0,0,0,0.8)
}

.wrapper .card a{
    margin: 8px 0;
    text-align: center;
    display: block;
    text-decoration: none;
    border: 1px solid #5f30e2;
    color: #5f30e2;
    padding: 10px;
    font-weight: bold;
    transition: 0.4s;
    border-radius: 5px;
    
}

.wrapper .card a:hover{
    background-color: #5f30e2;
    color: white;
}

marquee p{
    margin-top: 15px;
    color:red;
    font-weight: bold;
    font-size: 18px;
}

