.hideontablette {
    display: none;
}

.card {
    display: flex;
    height: 50vh;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 2rem;
    overflow: hidden;
}

.compagnie-container {
    display: flex;
    padding: 2rem;
    padding-left: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.compagnie-container img {
    max-height: 100%;
    height: 5rem;
    width: 100%;
    object-fit: contain;
}

.preview {
    display: flex;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    justify-content: center;
    flex: 1 0 0;
    transition: padding-top 0.5s;
}

.card:hover .preview {
    padding-top: 0;
}

.preview img {
    height: auto;
}