/* 
    Created on : 9 janv. 2024, 15:18:56
    Author     : carlito
*/

@charset "utf-8";
/* CSS Document */

.Marques {
	padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: flex;
    justify-content: center;
	background: #e5e8df;
}

.contentMarques {
	max-width: 1200px;
    width: 100%;
	z-index: 1;
	margin-bottom: 20px;
}
.contentMarques h4 {
    font-family: 'Exo 2', sans-serif;
	justify-content: center;
    max-width: 1200px;
    width: 100%;
    clear: both;
    font-size: 3em;
    letter-spacing: -2px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 25px 0 -23px 0;
    border: none;
    padding: 0;
    text-align: left;
}
.contentMarques h4 small {
    font-weight: 500;
    color: #8cbe23;
}
.contentMarques ul {
    padding: 0;
    width: 100%;
    height: auto;
    position: relative;
}
.contentMarques ul li {
	list-style: none;
    width: 9.1%;
    float: left;
    padding: 1%;
    /*overflow: hidden;*/
}
.MarqueItem {
	width: 100%;
	position: relative;
	padding-top: 100%;
	background: white;
    border: 1px dotted #8cbe23;
}
.MarqueItem img {
	width: 90%;
	max-width: 90%;
    height: 90%;
    margin: 5%;
    position: absolute;
    object-fit: contain;
    top: 0;
}
.MarqueItem .HideMarque {
	display: none;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: white;
    text-align: center;
    transition: all 0.5s;
    color: #3B3B3B;
    font-size: 0.8em;
}
.MarqueItem .HideMarque a {
	position: absolute;
    width: 96%;
    overflow: hidden;
    text-align: center;
    top: 39%;
    transform: translateX(-50%);
    text-decoration: none;
    color: #8cbe23;
    font-weight: bold;
    text-transform: uppercase;
    padding: 2%;
    margin: 0;
}
/* width */
.MarqueItem .HideMarque::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.MarqueItem .HideMarque::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
.MarqueItem .HideMarque::-webkit-scrollbar-thumb {
  background: #8cbe23; 
}
/* Handle on hover */
.MarqueItem .HideMarque::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.MarqueItem:hover .HideMarque {
	display: block;
}


/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	.contentMarques ul li {
		width: 9.1%;
		padding: 1%;
	}
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.contentMarques ul li {
		width: 9.1%;
		padding: 1%;
	}
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	.contentMarques ul li {
		width: 14.6%;
		padding: 1%;
	}
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 575.98px) {
	.contentMarques ul li {
		width: 23%;
		padding: 1%;
	}
	.contentMarques h4 {
		font-size: 2em;
    	margin: 23px 0 -19px 0;
	}
}