.sect-programmes {
    background: #F4F4F4B2;
    padding: 4em 5em;
    margin-bottom: 0;
}

.sect-hero {
	padding: 4em 0 3em 0;
	background: url('../themes/demo/assets/images/background-blue.svg') no-repeat center;
	background-size: cover;
	margin-bottom: 0;
}

.hero-title {
	font-weight: 700;
	font-size: 2.8125rem;
	line-height: 1.2;
	color: white;
}

.sect-programmes .section-subtitle{
	font-weight: 500;
	font-size: 30px;
}

.programmes-list {
    display: grid;
    grid-template-rows: repeat(2, 18em);
    grid-template-columns: repeat(6, 1fr);
    gap: 15px 18px;
}

.programmes-list-item {
    grid-column: span 2;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: end;
    position: relative;
    transition: all .2s ease-in;
}

.programmes-list-item:first-child, .programmes-list-item:nth-child(2) {
    grid-column: span 3;
}

.programmes-list-item-container {
    height: 100%;
    width: 100%;
    padding: 2em 4%;
    z-index: 2;
    position: relative;
    transition: all .2s ease-in;
    display: flex;
    align-items: end;
}

.programmes-list-item-container:hover {
    backdrop-filter: blur(17.200000762939453px)
}

.programmes-list-item-title {
    font-weight: 700;
    font-size: 1.4375rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 15px;
    transition: all .1s ease-in;
}

.programmes-list-item-container:hover .programmes-list-item-text {
    transform: translateY(0);
    position: static;
    visibility: visible;
    opacity: 1;
}

.programmes-list-item-text {
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.2;
    color: white;
    visibility: hidden;
    opacity: 0;
    /* position: absolute; */
    transform: translateY(2em);
    transition: all .2s ease-in;
}

.programmes-list-item-group {
    display: flex;
    align-items: center;
}

.programmes-list-item-price,
.programmes-list-item-length {
    padding: 10px 5%;
    border-radius: 65px;
    border: .5px solid #fff;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.2;
    color: white;
    width: fit-content;
    white-space: nowrap;
}

.programmes-list-item-price {
    margin-right: 1em;
}

.programme-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000033;
    z-index: 1;
}

@media (max-width: 1024px) {
    .programmes-list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 20em);
        gap: 15px 0;
    }

    .sect-programmes {
        padding: 4em 0;
    }
}
