/*
** Feuille de style complémentaire
*/

/* PARTIE POPUP ILEO */

#accueil_popup {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100001;
}

#accueil_popup > div{
	width: 100%;
	height:100%;
	display: flex;
	position: relative;
}

.bloc_centre, .bloc_parc{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bloc_centre img, .bloc_parc img{
	height: 200px;
	width: 200px;
	transition: transform 1s;
	-webkit-transition: transform 1s;
	-ms-transition: transform 1s;
    -moz-transition: transform 1s;
    -o-transition: transform 1s;
}

/* effet au survol */
.bloc_centre:hover img, .bloc_parc:hover img{
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -moz-transform : scale(0.85);
    -o-transform : scale(0.85);
}

.bloc_centre{
	background-image: url("images/centre_aquatique.png");
}

.bloc_parc{
	background-image: url("images/parc_aquatique.png");
}

.header_bons_cadeaux {
	padding-bottom: 100px;
	background-color: #f4f4f4;
}

/* partie partenaires */

body #header-partenaires .bg-header{
	height: 400px;
}

body #header-partenaires .bg-header .header-content h4{
	text-align: center;
	font-weight: 500;
}

#partenaires-content {
	text-align:center;
}

.txt_partenaire_haut, .txt_partenaire_bas {
	margin: 50px 0 100px 0;
}

.txt_partenaire_haut h1 {
	font-size: 4em;
	font-weight: 600;
	margin-bottom:30px;
	text-transform: uppercase;
	color: var(--RECREA_COLOR_SECONDARY);
}

.txt_partenaire_haut span {
	font-weight: 200;
	font-size: .65em;
}

#partenaires-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 100px;
}
.partenaire-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    box-shadow: 0px 2px 8px #0000001F;
}
.partenaire-picture {
    flex: 1 0 150px;
    max-width: 300px;
    background-color: #f5f5f5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partenaire-content {
    flex: 2 1 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.partenaire-description {
    flex: 2 1 260px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align:left;
 }
 .partenaire-contact {
    flex: 0 0 210px;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    border-left: #cfcfcf solid 1px;
    padding: 0 2rem;
    margin: 2rem 0;
}
.partenaire-picture .partenaire-img {
    width: 75%;
    /*height: 75%;*/
}
.remise-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    background-color: #37393A;
}
.partenaire-description h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
 }
.partenaire-description .etablissement {
    font-size: 1rem;
    font-style: italic;
    padding-bottom: 1.5rem;
 }
.partenaire-description .description {
    font-size: 1rem;
    padding-bottom: 2rem;
 }
.partenaire-description p:last-child {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--RECREA_COLOR_SECONDARY);
}
.partenaire-contact .contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.partenaire-contact a {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    background-color: var(--RECREA_COLOR_SECONDARY);;
    color:#ffffff;
    cursor: pointer;
}

body #tarifs #contenus table tr {
    text-align: right;
}

body #tarifs #contenus table tr td:last-child {
    display: inline-flex;
}

body #tarifs #contenus table tr td span {
    margin-right: 30px;
}

#menu .disabled-link_menu {
    pointer-events: none;
    cursor: default;
}

@media screen and (max-width: 768px) {
    .partenaire-picture {
        padding: 2rem 0;   
        max-width: 100%;
    }
    .partenaire-contact {
        height: auto;
        width: 80%;
        border-left: none;
        border-top: #cfcfcf solid 1px;
        padding: 2rem 0;
        margin: 0 2rem;
    }
    .partenaire-description {
        text-align:center;
    }
}

@media screen and (max-height: 1024px) {
	.img_planning {
		width: 100%;
	}
}

/* ----------------------------- */

/* 3e creneau horaire en responsive */
@media screen and (max-width: 920px) {

	body #horaires .contentsquare-content table {
		font-size: 1em;
	}

	body #horaires .contentsquare-content table tr td:first-child {
		font-size: 1.4em;
	}
}

/* problemes d'affichages titre slider accueil */
@media screen and (min-width: 920px) {
	body h2{
		word-wrap: inherit;
    	overflow-wrap: inherit;
    	hyphens: none;
	}
}