.toggle-2 {
	margin-top: var(--toggle2-mt-mobile, 0);
	margin-bottom: var(--toggle-mb-mobile, 0);
	display: flex;
	width: 100%;
}

@media (min-width: 851px) {
	.toggle-2 {
		margin-top: var(--toggle2-mt-desktop, 0);
		margin-bottom: var(--toggle2-mb-desktop, 0);
	}
}
.toggle-2-inner{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 var(--gutters);
}
.toggle-2-text h2{
    margin: 0;
}
.toggle-2-text {
    padding-bottom: 2rem;
}
.toggle-2-cats{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 1rem;
}
.toggle-2-cat{
    display: flex;
    padding: 8px 14px;
    gap: 10px;
    border-radius: 40px;
    background-color: var(--wp--preset--color--beige);
    border: 1px solid var(--wp--preset--color--bleu-fonce);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}
.toggle-2-cat.active {
    background-color: var(--wp--preset--color--bleu-fonce);
}
.toggle-2-cat p{
    margin: 0;
    color: var(--wp--preset--color--bleu-fonce);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.toggle-2-cat.active p{
    color: var(--wp--preset--color--beige);
}
.toggle-2-cat:hover{
    background-color: var(--wp--preset--color--bleu-fonce);
}
.toggle-2-cat:hover p{
    color: var(--wp--preset--color--beige);
}
.toggle-2-wrapper{
    padding-top: 3rem;
    display: flex;
    width: 100%;
    gap: 2%;
}
.toggle-2-frame, .toggle-2-informations{
    display: flex;
    width: 49%;
    position: relative;
    align-items: center;
}
.toggle-2-frame{
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}
.toggle-2-media-item, .toggle-2-information{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity ease 0.3s;
}
.toggle-2-media-item.active, .toggle-2-information.active {
	opacity: 1;
	pointer-events: auto;
}
.toggle-2-media-item video, .toggle-2-media-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.toggle-2-information{
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (max-width: 576px) {
    .toggle-2-cats{
        flex-direction: column;
        align-items: center;
    }
    .toggle-2-cat{
        width: fit-content;
    }
    .toggle-2-wrapper{
        flex-direction: column;
    }
    .toggle-2-frame{
        width: 100%;
        height: 300px;
    }
    .toggle-2-informations{
        width: 100%;
    }
}