/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2026 | 02:03:01 */
.shrink-logo img {
	transition: width 0.4s ease-out;
}
.is-shrunk .shrink-logo img {
	width: 100px!important;
}
.shrink-title h2 {
	transition: font-size 0.4s ease-out;
}
.is-shrunk .shrink-title h2 {
	font-size: 30px;
}
.shrink-stitle h6 {
	transition: font-size 0.4s ease-out;
}
.is-shrunk .shrink-stitle h6 {
	font-size: 16px;
}
.shrinked-row {
	overflow: hidden;
    max-height: 200px; /* valeur supérieure à la hauteur réelle de la row */
    opacity: 1;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}
.is-shrunked .shrinked-row {
	/* display: none; */
	max-height: 0;
    opacity: 0;
}
.notUnderline * {
	text-decoration: none!important;
}