/* ------
SOMMAIRE
---------*/
/*
@AUTHOR : Karré Digital

00 - COULEURS
01 - SPRITE
03 - TITRES
04 - LIENS
05 - BOUTONS
06 - ANIMATIONS
*/

/* ----------
00 - COULEURS
-------------*/
:root{
	--color00: #fff;    /*Blanc*/
	--color01: #0D0D0D;    /*Noir*/
	--color02: #F5AF19;    /*Orange*/
	--color03: #999999;    /*Gris*/
	--color04: #262626;   /*Gris Foncé*/
}
/*
Utilisation :
background: var(--color1);
border-bottom: 3px solid var(--color1);
color: var(--color1);
*/






/* ----------
01 - SPRITE
-------------*/
.ico{
	position: relative;
    width: 46px;
	height: 46px;
	display: block;
	background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0.25) 100%);
	border: 1px solid var(--color04);
    border-radius: 50px;
	transition: all .3s ease;
}
span.ico:hover{
	border: 1px solid var(--color02);
	box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.4);
}

span.ico.whatsapp:hover{
	border: none;
	box-shadow: 0px 2px 10px rgb(0 255 43 / 50%);
}
.ico.whatsapp{
	border: none;
}
.ico.whatsapp::before{
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(45deg, #075e54, #25d366);
	z-index: -1;
	border-radius: 50px;
}
.ico.whatsapp:hover::before{
	background: linear-gradient(45deg, #00e948, #00dd25);
}
.ico.whatsapp::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background-image: url(../img/icon-whatsapp.svg);
    background-repeat: no-repeat;
    background-size: contain;
	border-radius: 50px;
}



/* ------
03 - TITRES
---------*/
h1.titleBack, h2.titleBack, h3.titleBack, h4.titleBack, h5.titleBack, h6.titleBack{
	position: relative;
	width: min-content;
}
h1.titleBack::after, h2.titleBack::after, h3.titleBack::after, h4.titleBack::after, h5.titleBack::after, h6.titleBack::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../img/titleBack.svg');
	width: 65%;
	height: 8px;
	background-size: cover;
	z-index: -1;
	transition: width 0.4s;
}
h1, .like-h1{
	font-size: 3.5rem;
	font-family: 'ssb';
	margin: 10px 0;
}
h2, .like-h2{
	font-size: 2.8rem;
	font-family: 'ssb';
	margin-bottom: 20px;
}
h3, .like-h3{
	font-size: 2rem;
	font-family: 'ssb';
}
h4, .like-h4{
	font-size: 2rem;
}
h5, .like-h5{
	font-size: 1.8rem;
}
h6, .like-h6{
	font-size: 1.6rem;
}



/* ------------
04 - LIENS
--------------*/
a, a:link, a:visited{
	color: var(--color00);
	text-decoration: none;
	transition: color 0.3s;
}
a:hover, a:active{
	color: var(--color02);
}
p a{
    color: var(--color02) !important;
    transition: color 0.3s;
}
p a:hover{
    color: var(--color01) !important;
}
a.fullLink{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

/* ------------
05 - BOUTONS
--------------*/
#backToTop {
    position: fixed;
	bottom: 20px;
    right: 20px;
	background-color: var(--color02);
    color: var(--color01);
    border: none;
    width: 60px;
	height: 60px;
    font-size: 26px;
	font-family: 'sb';
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
}
#backToTop::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--color02);
    border-radius: 50%;
    box-sizing: border-box;
}
#backToTop:hover {
    background-color: var(--color02); /* Couleur au survol */
}
#backToTop .icon.arrow {
    left: 22px;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
	#backToTop .icon.arrow::before {
		position: absolute;
		content: '';
		top: -0.25rem;
		right: 0.1025rem;
		width: 1.025rem;
		height: 1.025rem;
		border-top: 0.25rem solid var(--color01);
		border-right: 0.25rem solid var(--color01);
		transform: rotate(-45deg);
	}

a.bouton1, .bouton1 a, a.bouton2, .bouton2 a, a.bouton3, .bouton3 a, a.bouton4, .bouton4 a {
    font-family: "sr", sans-serif;
    display: inline-block;
    padding: 18px 24px 18px 24px;
    color: var(--color00) !important;
    margin: 10px 0;
	text-decoration: none !important;
	font-size: 17px;
	width: fit-content;
}


a.bouton1, .bouton1 a {
	border: 1px solid #262626;
	border-radius: 50px;
	transition: all .3s !important;
}
a.bouton1:hover, .bouton1 a:hover {
	background-color: var(--color01);
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}
a.bouton2, .bouton2 a {
	border: 1px solid var(--color04);
    padding: 8px 10px 8px 24px;
    background-color: transparent;
    border-radius: 50px;
    transition: all .3s !important;
}
a.bouton2:hover, .bouton2 a:hover {
	border: 1px solid var(--color02);
	box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
}
a.bouton3, .bouton3 a {
	border: 1px solid var(--color02);
	color: var(--color01) !important;
    padding: 8px 10px 8px 24px;
    background-color: var(--color02);
    border-radius: 50px;
    transition: all .3s !important;
}
a.bouton3:hover, .bouton3 a:hover {
	border: 1px solid var(--color02);
	box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
}


/* ------------
06 - ANIMATIONS
--------------*/
.sectionNumber div.col-sm-4:hover div{
	border: 1px solid rgba(245, 175, 25, 0.5);
	box-shadow: 0px 0px 12px rgba(245, 175, 25, 0.25);
}
	.sectionNumber div.col-sm-4:hover .aboutNumberNB{
		color: var(--color02);
	}

.sectionSatisfaction .sectionSatisfactionBloc:hover{
	box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.075);
}
	.sectionSatisfaction .sectionSatisfactionBloc:hover .sectionSatisfactionInnerBloc{
		border: 1px solid rgba(255, 255, 255, 0.5);
	}