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

00 - COULEURS
01 - SPRITE
03 - TITRES
05 - BOUTONS


/* ----------
00 - COULEURS
-------------*/
:root{
	--color00: #fff;    /*Blanc*/
	--color01: #000;    /*Noir*/
	--color02: #00A5E6;    /*Bleu*/
	--color03: #EFF8FF;    /*Gris*/
	--color04: #717171;   /*Gris Foncé*/
	--color05: #CFCFCF; /*Gris bordure*/
	--jaune: #F2C21D; /*Jaune*/
	--rouge: #EE3630; /*Rouge*/
	--vert: #03873E; /*vert*/
}
/*
Utilisation :
background: var(--color1);
border-bottom: 3px solid var(--color1);
color: var(--color1);
*/

.elipseBloc{
	margin-bottom: 1rem;
}
.elipseBloc h2{
	z-index: 2;
	margin: 0 !important;
    position: relative;
	line-height: 1;
}
.elipseBloc .elipse{
	position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}




/* ----------
01 - SPRITE
-------------*/
.ico,
[class*="ico-"]{
	background-image: url('../img/sprite.svg');
	background-repeat: no-repeat;
	background-size: 275px auto;
    width: 45px;
	height: 45px;
	display: block;
}
span.ico:hover{
	transform: scale(1.05);
}
span.ico.facebook {
    background-position: -40px 1px;
    width: 45px;
    height: 45px;
    background-color: var(--color00);
    border-radius: 100%;
    transition: transform 0.3s;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
span.ico.facebook:hover {
    background-position: -40px -35px;
}
span.ico.instagram {
    background-position: 1px 1px;
    width: 45px;
    height: 45px;
    background-color: var(--color00);
    border-radius: 100%;
    transition: transform 0.3s;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
span.ico.instagram:hover {
    background-position: 1px -35px;
}
span.ico.tiktok {
    background-position: -82px 1px;
    width: 45px;
    height: 45px;
    background-color: var(--color00);
    border-radius: 100%;
    transition: transform 0.3s;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
span.ico.tiktok:hover {
    background-position: -82px -35px;
}



/* ------
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: 'heb';
	margin: 10px 0;
	color: var(--color01);
}
h2, .like-h2{
	font-size: 3rem;
	font-family: 'heb';
	color: var(--color01);
}
h3, .like-h3{
	font-size: 2.5rem;
	font-family: 'heb';
	color: var(--color01);
}
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(--color01);
	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;
}


/* ------------
05 - BOUTONS
--------------*/

a.bouton1, .bouton1 a, a.bouton2, .bouton2 a, a.bouton3, .bouton3 a, a.bouton4, .bouton4 a {
    font-family: "hm", sans-serif;
    display: inline-block;
    padding: 12px 22px 12px 22px;
    color: #fff !important;
    margin: 10px 0;
	text-decoration: none !important;
	font-size: 17px;
	border-radius: 10px;
	width: fit-content;
	z-index: 5;
}


a.bouton1, .bouton1 a {
	background-color: var(--color02);
	transition: all 0.3s;
}
a.bouton1:hover, .bouton1 a:hover {
	background-color: var(--color01);
}
a.bouton2, .bouton2 a {
	background-color: var(--color01);
	transition: all 0.3s;
}
a.bouton2:hover, .bouton2 a:hover {
	background-color: var(--color02);
}
a.bouton3, .bouton3 a {
	background: var(--color02);
	box-shadow: 0px 1px 2px rgba(29, 255, 255, 0.55), 0px 0px 0px 3px rgba(28, 255, 255, 0.17);
	border-radius: 50px;
	transition: all 0.3s;
}
a.bouton3:hover, .bouton3 a:hover{
	box-shadow: 0px 1px 2px rgba(29, 255, 255, 0.75), 0px 0px 0px 3px rgba(28, 255, 255, 0.37);
	background: var(--vert);
}
a.bouton4, .bouton4 a {
	background-color: var(--rouge);
	transition: all 0.3s;
}
a.bouton4:hover, .bouton4 a:hover {
	background-color: var(--color01);
}
a.bouton5, .bouton5 a {
	padding: 12px 22px;
	border: 1px solid #E3DBD8;
	border-radius: 50px;
	font-family: 'hm';
	width: fit-content;
	transition: all 0.3s;
}
a.bouton5:hover, .bouton5 a:hover {
	background-color: var(--vert);
	color: var(--color00);
}


.subTitle{
	padding: 10px 14px;
	border: 1px solid rgba(152, 179, 255, 0.34);
	border-radius: 8px;
	color: var(--color02);
	font-family: 'hm';
	font-size: .9rem;
	width: fit-content;
	margin-bottom: 10px;
}
section.footerContactBloc{
	position: relative;
	background: #FFFFFF;
	border: 2px solid var(--color02);
	border-radius: 15px;
	padding: 45px;
	margin-top: 70px;
	margin-bottom: 45px;
}
section.footerContactBloc::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/footerimg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
	border-bottom-right-radius: 14px;
}
section.footerContactBloc div.footerContactImg{
	position: absolute;
    bottom: 0;
    right: 10%;
    height: 115%;
}
.footerContactBloc h2{
	font-size: 3rem !important;
}