
.wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerss {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.card {
    width: 80px;
    border-radius: 5px;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.card > .row {
padding-left:5px;

    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.card > .row > .icon {

font-family: KaushanScript-Regular,Sans-Serif;
	font-size:20px;
    background: #ffffff;
    color: #000000;
    border-radius: 5px;
    width: 35px;
	height:35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
	
}
.card > .row > .icon2{
    background: #ffffff;
    color: #000000;
    border-radius: 5px;
    width: 70px;
	height:35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.card > .row > .icon2:hover{
    background: #000000;
    color: #ffffff;

}
.card > .row > .icon2  a{
    color: #000000;
text-decoration:none;
font-family: Oswald , Arial, Helvetica, sans-serif;

}
.card > .row > .icon2  a:hover{
color: #ff0000;
text-decoration:none;
}
.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
	 padding-bottom:25px;
	 font-family: Oswald , Arial, Helvetica, sans-serif;

	 
}
.description p{
 font-family: KaushanScript-Regular,Sans-Serif;
	font-size:30px;
	text-transform:capitalize;
	text-decoration:none;
	color:#ff0000;
	text-shadow:#000000 2px 2px 2px;
	 height: 25px;	 

}
.description sa2{
    color: #000000;
	 height: 25px; 
	 font-family: Oswald , Arial, Helvetica, sans-serif;

	 font-size:10px;
}
input {
    display: none;
}

input:checked + label {
    width: 700px;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

