body{
	margin: 0;
	color: black!important;
	font-family: 'Nunito', sans-serif!important;
}
::selection{
    color: white;
    background-color: #079992;
}
h2{
    text-shadow: 1px 2px 2px rgb(0 0 0 / 37%);
}
td,th{
    text-align: center!important;
}
#container_panneaux_solaires{
    font-family: 'Nunito', sans-serif;
}
ul{
    margin-top: 3rem!important;
}
li{
    list-style: none;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
}
/* BTN CTA */
.cta-button{
	display: block;
	position: relative;
	text-decoration: none;
	font-weight: 600;
    border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    padding: 0.5rem 1rem;
	background: transparent;
	overflow: hidden;
}
.cta-button span{
	z-index: 1;
	position: relative;
	transition: color 350ms ease;
}
.cta-button:hover span{
	color: white;
}
.cta-button::after, .cta-button::before{
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.cta-button::before{
	transform: translateX(-100%);
	z-index: 1;
}
.cta-button:hover:before{
	transform: translateX(0);
	transition: transform 350ms ease;
}
.cta-button::after {
	z-index: 0;
	transform: translateX(100%);
	transition: none;
	transition: transform 350ms ease;
}
.cta-button:hover:after{
	opacity: 1;
	transform: translateX(0);
	transition: transform 350ms 360ms ease;
}
/* CTA DEVIS */
#btn_rdv{
	border: 2px solid #079992;
}
#btn_rdv::after, #btn_rdv::before{
	background: #079992;
}
.fa-hand-point-right{
	margin-right: 15px;
}
/* EQUIPEMENTS */
#cards_equipements{
	padding-bottom: 6rem;
}
#container_equipements{
	display: flex;
}
.equipement{
	width: 35vw;
	display: flex;
	align-items: center;
}
#container{
	/* width: 25vw; */
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.equipement_txt{
	text-align: justify;
	padding: 10px;
}
#panel, #panel-container{
	width: 25rem;
	height: 27rem;
}
#panel-container{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('../../images/solutions/trinasolar-ps.png') center top;
	background-size: contain;
	transform: perspective(400px) rotateX(0deg) rotateY(0deg);
	transform-style: preserve-3d;
}
.panel-content{
	width: 100px;
	height: auto;
	padding: 15px;
	background: url("../../images/solutions/trinasolar-logo-removebg.png") center top;
	background-size: contain;
	background-color: rgba(255, 255, 255, 0.493);
	transform: translateZ(80px) scale(0.8);
	transform-style: preserve-3d;
	overflow-wrap: break-word;
}
/* CARDS OFFRES */
#banner_panneaux_solaires{
    margin-top: 3rem;
}
#banner_panneaux_solaires h1{
    text-align: center;
	color: #079992;
    font-size: 2rem;
    padding-bottom: 6rem; 
}
#cards_offres, #cards_equipements, #description, #realisation{
    width: 70vw;
    margin: auto;
}
#cards{
    display: flex;
    justify-content: space-evenly;
    width: 70vw;
}
#card_offre{
    box-shadow: 2px 4px 12px #00000014;
	border: 2px solid #fdfcfc;
    border-radius: 18px;
    width: 20vw;
    height: 50vh;
    padding: 15px;
}
#card_offre_img{
	display: flex;
	justify-content: center;
    overflow: hidden;
    height: 10vh;
}
#card_offre_img img{
    display: block;
    height: 100%;
    object-fit: cover;
}
.card_offre_title{
    margin-top: 1rem;
    color: #fa983a;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: none;
}
.title_offre{
    text-align: center;
    font-size: 1rem;
}
.txt_green{
    color: #079992;
    font-weight: bold;
}
#div_price{
	width: 70vw;
	margin: 1rem auto 6rem auto;
	font-size: 0.8rem;
}
/* TABLEAU PRIX */
#table_price{
    width: 70vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 6rem auto;
}
#div_price p{
    padding-top: 25px;
    margin-bottom: 50px;
    font-style: italic;
}
table {
	border-collapse: initial!important;
    border: 1px solid #079992;
	border-radius: 18px;
	padding: 15px;
    font-size: 1rem;
}
th, td{
  padding: 10px 15px;
}
caption{
    font-style: italic;
}
tbody tr:nth-child(odd) {
    background-color: #079992;
}
/* DESCRIPTION */
#description{
    margin: 0 auto 6rem auto;
}
.ene, .rev{
	font-size: 1.3rem;
	font-weight: 600;
}
.rev{
	color: #079992;
}
.span_green{
    color: #079992;
    font-weight: 600;
}
.ol_li li{
    list-style: auto;
    color: #079992;
    font-weight: 300;
}
/* REALISATIONS */
#realisation{
    margin: 0 auto 6rem auto;
}
.gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.gallery img:hover {
    transform: scale(1.1);
}
/* Style du modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    align-items: center;
    justify-content: center;
}
.modal-content {
    width: 35vw!important;
    max-width: 80%;
    max-height: 80%;
    border: 2px solid #ffffff00!important;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ff7300;
    cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1250px){
	ul{
		margin-top: 3vh!important;
	}
	li{
		margin-bottom: 1vh;
	}
	#cards_offres, #cards_equipements, #realisation, #table_price{
		width: 90vw;
	}
	#cards{
		width: 90vw;
		justify-content: space-between;
	}
	#card_offre{
		width: 32%;
	}
	#card_offre_img img{
		height: 90%;
	}
	#table_price{
		justify-content: center;
	}
	#description{
		width: 70vw;
	}
}
@media screen and (max-width: 767px){
	#banner_panneaux_solaires h1{
		padding-bottom: 3rem;
	}
	#cards{
		display: block;
	}
	#card_offre{
		width: 70vw;
		height: auto;
		margin-bottom: 3rem;
	}
	.card_offre_title{
		font-size: 1rem;
	}
	.title_offre{
		font-size: 0.75rem;
	}
	ul{
		margin-top: 1rem!important;
	}
	li{
		margin-bottom: 1rem;
		font-size: 0.75rem;
	}
	#div_price{
		margin: 1rem auto 3rem auto;
		font-size: 0.75rem;
	}
	#div_price p{
		padding-top: 0;
	}
	#table_price{
		width: 100%;
		margin: 0 auto 3rem auto;
	}
	table{
		width: 95vw;
		margin: auto;
		padding: 5px;
		font-size: 0.6rem;
	}
	th, td{
		padding: 5px;
	}
	#description{
		margin: 0 auto 3rem auto;
		font-size: 0.75rem;
		text-align: justify;
	}
	ol, ul{
		padding-left: 1rem;
	}
	.modal-content{
		width: 95vw!important;
	}
}