* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffff;
    
}



.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 10%;
}

.card {
    background-color: #2E282A;
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    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 {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.card > .row > .icon {
    background: rgb(255, 255, 255);
    color: #2E282A;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.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;
}

.description p {
    color: #b0b0ba;
    padding-top: 5px;
}

.description h4 {
    text-transform: uppercase;
}

input {
    display: none;
}

input:checked + label {
    width: 600px;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url('https://www.mountlive.com/wp-content/uploads/2022/02/grande-muraglia-cinese.jpeg');
    background-image: black;
}
.card[for="c2"] {
    background-image: url('https://boscolo-viaggi-res.cloudinary.com/images/w_2560,h_1703/f_auto,q_auto/v1768314541/Blog/Burj_Khalifa_gogubb/Burj_Khalifa_gogubb.jpg?_i=AA');
    background-image: black;
}
.card[for="c3"] {
    background-image: url('https://escursioniturchia.com/wp-content/uploads/2022/06/la-basilica-di-santa-sofia.jpg');
    background-image: black;
}
.card[for="c4"] {
    background-image: url('https://i.content4travel.com/seeplaces/temp/1f121cf3-f222-48b4-99ac-b8baa5a87379.jpg');
    background-image: black;
}