@font-face {
    font-family: ArialRoundedMTforSE_Latin;
    src: url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Light_Latin.woff2) format("woff2"), url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Light_Latin.woff) format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ArialRoundedMTforSE_Latin;
    src: url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Regular_Latin.woff2) format("woff2"), url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Regular_Latin.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ArialRoundedMTforSE_Latin;
    src: url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Bold_Latin.woff2) format("woff2"), url(https://www.se.com/fr/fr/assets/fonts/ArialRoundedMTforSE-Bold_Latin.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: seCustomIconFont;
    src: url(https://www.se.com/fr/fr/assets/fonts/seCustomIconFont.woff2) format("woff2"), url(https://www.se.com/fr/fr/assets/fonts/seCustomIconFont.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


body {
    background-color: #fafafa;
    font-family: ArialRoundedMTforSE_Latin,Arial,Helvetica Neue,Helvetica,sans-serif;
}

.main {
    max-width: 1200px;
    margin: auto;
    background-color: #fafafa;
    padding-top:10px;
}


.main a {
    color: rgb(0, 117, 163);
    font-weight: 400;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    cursor: pointer;
}

.main a:hover {
    text-decoration-color: rgb(10, 153, 202);
    text-decoration-line: underline;
}

.main .no-underline:hover {
	 text-decoration-line: none!important;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

/*****************************/
/*           BANNER          */
/*****************************/
.banner{
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    /*background: linear-gradient(90deg,rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/banner-catalog-ti-2025.jpg");*/
    object-fit: cover;
    background-size: cover;
    background-position: center;
    /*height: 347px;*/
}

.banner-image{
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    /*background-image: url("/assets/img/banner-catalog-ti-2025.jpg");*/
}

.banner-body {
    width: 33%;
    margin-left: 30px;
}

.banner p{
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

.banner-cta{
    background: #008a16;
    padding: 10px;
    border-radius: 4px;
    width: 260px;
    text-align: center;
}

.banner-cta a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
}
.year {
    color: rgb(61, 205, 88)
}

/*****************************/
/*         CARROUSEL         */
/*****************************/

.carousel {
    position: relative;
    width: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

/* Bande qui défile horizontalement */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Chaque image occupe exactement 1200px de large */
/*
PASCAL
.carousel img {
    width: 1200px;
    flex: 0 0 1200px;
    height: auto;
    display: block;

}*/
.carousel-slide {
    position: relative;         /* pour l’overlay */
    flex: 0 0 100%;             /* chaque slide occupe 100% de la largeur */
    overflow: hidden;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: auto;               /* ou height: 100% + object-fit si tu fixes une hauteur */
}

/* Les ronds (indicateurs) */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s ease;
}

.dot.active {
    background: #fff;       /* plus clair pour l’image en cours */
}

/*
PASCAL
.slide-title {
    position: relative;
    top: -295px;
    Left: 85px;
    font-size: 48px!important;
}*/
.slide-title {
    position: absolute;
    left: 85px;
    top: 50px;
    z-index: 2;
    pointer-events: none;
    color: #fff;
    /*text-shadow: 0 2px 12px rgba(0,0,0,.6);*/
    max-width: min(90%, 800px);
    font-size: 48px!important;
    font-weight:700;
}

.slide-cta{
    position: absolute;
    background: #008a16;
    padding: 10px;
    border-radius: 4px;
    width: 260px;
    text-align: center;
    left: 85px;
    bottom: 40px;
}

.slide-cta a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
}

/*****************************/
/*         CHECKBOXES        */
/*****************************/
.checkboxes {
    margin-top:10px;
    display:grid;
    grid-template-columns: auto 1fr; /* case | label */
    column-gap:.5rem;
    row-gap:.5rem;
}
.green {
    color: rgb(61, 205, 88)
}

/*****************************/
/*    BARRE DE RECHERCHE     */
/*****************************/

.search-bar {
    margin-top: 30px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 5px;
    height:60px;
    border: 1px solid black;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: center;
}

.search-item{
    padding: 10px;
    display: grid;
    grid-template-columns: 30px 1fr 20px;
}

.search-item i{
    font-size: 20px;
}

.search-text {
    margin-left: 15px;
}

.search-place {
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#search-input {
    border: none;
    background-color: transparent;
    font-size: 16px;
}

#iconReinitSearchText {
    margin-left:5px;
}

.search-button {
    background-color: rgb(61, 205, 88);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    justify-self: right;
    margin-right: 10px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-info {
    display: none;
    margin-left: 45px;
    margin-right: 25px;
    margin-top : 10px;
}

.search-more-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
	margin-left: 30px;
}

.search-more-cta a {
    font-size: 14px;
}

.search-more-reinit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-more-reinit span {
    margin-top:5px;
}

.search-more-reinit i {
   font-size:20px;
}

.more-filters {
    display: none;
    border: 1px solid rgb(231, 230, 230);
    height: 170px;
    margin-left: 40px;
    margin-right: 40px;
}

.more-filters-body {
    display: flex;
    justify-content: space-between;
    margin: 10px;
    gap: 20px;
}

.more-filters-close {
    display: flex;
    margin-right: 5px;
    margin-top: 5px;
    right: 10px;
    justify-content: flex-end;
}

.title-more-item {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    min-width:160px;
}

/*****************************/
/*   FAQ   */
/*****************************/

.faq {
    display: flex;
    flex-direction: row;
    gap :30px;
}

.faq-items {
    flex:1;
}

.faq-qualiopi  {
    height: auto;
    display: block;
    width: 24%;
    background-color: #ffffff;
}

.faq-qualiopi img {
    max-width: 100%;
    object-fit: contain;
}

.faq-qualiopi p{
    padding-left: 5px;
    padding-right: 5px;
}

.faq-item {
    background: #fff;
    padding: 0px 30px 15px 30px;
    margin-bottom: 15px;
    border: 1px solid #e7e6e6;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 12px;
    cursor: pointer;
}

.faq-icon {
    font-size: 24pt;
}

.faq-title:hover h3 {
    color: #3dcd58!important;
}

.faq-body {
    font-size: 14px;
    line-height: 1.429;
    display: none;
}


/*****************************/
/*   DROPDOWN DE RECHERCHE   */
/*****************************/

.dropbtn {
    background-color: transparent;
    color: black;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn-more {
    width: 100%;
    text-align: left;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 5px;
    margin-top: 5px;
}

.dropbtn i {
    padding-left:5px;
}

.dropdown {
    position: relative;
    /*display: inline-block;*/
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-content a {
    color: black;
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: block;
    font-size: 0.8em;
    line-height: 0px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

/*.dropdown:hover .dropdown-content {*/
/*    display: block;*/
/*}*/
/*.dropbtn:hover + .dropdown-content {*/
/*    display: block;*/
/*}*/

.dropdown-item {
    padding: 5px 10px 5px 10px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
}

.dropdown-item a:hover {
    text-decoration: underline;
}


.dropdown-item  i {
    color: #3dcd58;
}

/* Le carré est trop gros sinon */
#places-dropdown i{
   font-size: 0.6em!important;
}

/*****************************/
/*    SEARCH RESULT ITEMS    */
/*****************************/

.search-results{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
.sr-item {
    margin-top: 16px;
    margin-bottom: 16px;
    background-color: #FFFFFF;
    position: relative;
    border: 1px solid #e7e6e6;
    padding-left: 27px;
    padding-right: 0px;
    padding-bottom: 3px;
    clear: both;
    width: 47%;
    min-width: 400px;
    max-width: 47%;
    min-height: 120px;
}

.sr-item-ref {
    background-color: #3dcd58;
    width: 150px;
    padding: 3px;
    color: white;
    float: right;
    clear: both;
    text-align: center;
    position: relative;
}

.sr-item-header {
    color: rgb(98, 100, 105);
    margin-top: 25px;
    display: flex;
}

.sr-item-body {
    color:#444;
    display: grid;
    grid-template-columns: 64% 36%;
}

.sr-item-description {
    font-size: 1.1rem;
    line-height: 1.5rem;
    border-right: 1px solid black;
    padding-right: 10px;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.sr-item-details {
    padding-left: 10px;
    font-size: 0.7rem;
    display: grid;
    grid-template-columns: 33% 33% 34%;
    text-align: center;
}

.sr-item-details img {
    width: 26px;
}

.item-details-title {
    font-weight: 700;
}
/*****************************/
/* FORMATIONS MISES EN AVANT */
/*****************************/

.highlight-body {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.highlight-item {
    display: grid;
    grid-template-rows: 60% 40%;
    height: 100%;
    box-shadow: rgba(51, 51, 51, 0.36) 0px 12px 30px -12px;
    border-radius: 8px;
    padding: 0px;
    min-width:60px;
}

.highlight-item:hover {
    box-shadow: rgba(51, 51, 51, 0.72) 0px 12px 36px -20px;
    position: relative;
    transition: transform .15s;
    transform: translateY(-8px);
}

.highlight-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.highlight-item-title {
    /*background-color: rgb(61, 205, 88);*/
    color: #000000;
    padding: 10px 36px 10px 36px;
    font-weight: 700;
    text-align: left;
    font-size: 24px;
}

.highlight-item-title a {
    color: rgb(0, 117, 163);
    font-size: 16px;
    font-weight: 400;
    text-decoration-color: rgb(0, 117, 163);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
}

.highlight-item-text{
    /*background-color: rgb(61, 205, 88);*/
    color: #000000;
    padding: 10px 36px 10px 36px;
    font-weight: 100;
    text-align: left;
    font-size: 16px;
}

.highlight-item-text a {
    color: rgb(0, 117, 163);
    font-size: 16px;
    font-weight: 400;
    text-decoration-color: rgb(0, 117, 163);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
}

.highlight-item:hover a {
    color: rgb(10, 153, 202);
    text-decoration-color: rgb(10, 153, 202);
    text-decoration-line: underline;
}


.highlight-body-full {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;*/
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}
.highlight-item-full {
    display: grid;
    /*grid-template-rows: 60% 40%;*/
    height: 100%;
    box-shadow: rgba(51, 51, 51, 0.36) 0px 12px 30px -12px;
    border-radius: 8px;
    padding: 0px;
    min-width:60px;
}


/*****************************/
/*    BOTTOM INFORMATION     */
/*****************************/

.bottom-info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.info {
    background: #fff;
    border: 1px solid #e7e6e6;
    min-width: 200px;
    width: 24%;
    height: 300px;
    box-shadow: rgba(51, 51, 51, 0.36) 0px 12px 30px -12px;
    border-radius: 8px;
}

.info:hover{
    box-shadow: rgba(51, 51, 51, 0.72) 0px 12px 36px -20px;
    position: relative;
    transition: transform .15s;
    transform: translateY(-8px);
}

.info-title {
    padding-top: 36px;
    padding-left: 36px;
    padding-right: 36px;
    color: #000000;
    font-weight: 700;
    text-align: left;
    font-size: 20px;
}

.info-body {
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 20px;
    font-size: 16px;
}

.info-body img {
    width:100%;
}

.info-body a {
    color: rgb(0, 117, 163);
    font-size: 16px;
    font-weight: 400;
    text-decoration-color: rgb(0, 117, 163);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
}

.info-body a:hover {
    color: rgb(10, 153, 202);
    text-decoration-color: rgb(10, 153, 202);
    text-decoration-line: underline;
}
/*****************************/
/*     STYLES DES TITRES     */
/*****************************/

h1 {
    font-size: 48px; /*30px*/
    color: #ffffff;
    font-weight: 700;
}

h2 {
    font-size: 37px;
    line-height: 1.216;
    font-weight: 400;
    color: #3dcd58; /*333*/
}

h3 {
    font-size: 22px;
    /*line-height: 1.364;*/
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

@media (max-width: 768px) {
	h1 {
		font-size : 18px!important;
	}
	h2 {
		font-size : 18px!important;
	}
	
	h3 {
		font-size: 16px;
		line-height: 1;
	}
	.slide-title {
		font-size : 18px!important;
		left: 10px!important;
		top: 10px!important;	
	}
	
	.slide-cta {
		width: 160px;
		left: auto;
		right: 10px;
		bottom:	5px;
		right: 5px;
	}
	
	.slide-cta a{
		font-size: 12px!important;
	}
	
	.carousel-dots {
		bottom: 2px;
		gap: 4px;
		padding: 3px 5px;
		border-radius: 10px;
	}
	
	.search-bar {
		margin-top: 0px;
		height: auto;
	}
	
	.search-item {
		grid-template-columns: 30px 1fr 20px;
	}
	
	.search-activity {
		display: none;
	}
	
	.search-place {
		display: none;
	}
		
	.search-more-cta {
		display: none;
	}	

	.sr-item {
		width: 100%;
	}	
	
	.highlight-body {
		display: flex;
		flex-wrap: wrap;
	}
	
	.highlight-item-title {
		font-size: 18px;
	}
	
	.faq {
		flex-wrap: wrap;
	}
	
	.faq-items{
		display:flex;
		flex-wrap: wrap;
	}
	
	.faq-item {
		width: 100%;
	}
	
	.faq-qualiopi {
		width: auto;
	}
	
	.bottom-info {
		gap: 10px;
	}
	
	.info{
		width: 100%;
	}
	
	.info-title {
		font-size: 16px;
	}
}

