@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Mr+Dafoe&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--ikColorPrinc: #359477;
	--ikColorSecond: #8BC04E;
	--ikColorTxt: #fff;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.container {
	position: relative;
}

.header {
	padding: 20px 0;
}

.logo img {
	height: 50px;
}

.menus {
	position: absolute;
	top: 0px;
	left: 300px;
}

.menus ul {
	margin: 0;
	padding: 0;
}

.menus ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}

.menus ul li a {
	font-family: "Barlow", sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #000;
	display: inline-block;
	padding: 10px 15px;
	color: #0A4253;
}

.header-btns {
	position: absolute;
	top: 0;
	right: 0;
}

.header-btn a {
	background-color: var(--ikColorPrinc);
	color: var(--ikColorTxt);
	display: block;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	font-family: "Barlow", sans-serif;
}

.btn-princ {
	background-color: var(--ikColorPrinc);
}

/* slider */

.slider {
	background-position: bottom center;
	height: 1000px;
	background-size: cover;
	position: relative;
}

.slider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: no-repeat;
	background-image: url(../img/rev_slider_2.png);
	display: block;
	background-position: top left;
	z-index: 1;
}

.slide {
	position: relative;
	height: 100%;
	background-position: bottom center;
	background-size: cover;
}

.slider::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/pattern.png);
	content: '';
	display: block;
	z-index: 2;
}

.slide .container {
	height: 100%;
}

.slideTitre {
	font-size: 50px;
	color: #fff;
	font-weight: 900;
	padding-top: 300px;
	width: 500px;
}

.slideSousTitre {
	font-size: 50px;
	color: #fff;
	font-weight: 100;
	width: 500px;
}

.slideImage {
	position: absolute;
	bottom: 0;
	right: -200px;
}

.slideImage::before {
	background-color: #2780a7;
	border-radius: 100%;
	height: 600px;
	width: 600px;
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%) scale(1);
	animation: pulse 7s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.slideImage img {
	max-width: 100%;
	position: relative;
	z-index: 2;
}

/* about */

.aboutImg img {
	max-width: 100%;
	border-radius: 40px;
}

/* section */

.section {
	padding: 100px 0;
	position: relative;
}

.section-about h1 {
	font-size: 40px;
	color: #2780A7;
}

.section-about h2 {
	font-size: 30px;
	font-weight: 100;
	margin-bottom: 20px;
}

.section-prestations h2, .section-partners h2, .section-equipes h2, .section-actus h2, .section-referents h2 {
	text-align: center;
	color: var(--ikColorPrinc);
	font-size: 46px;
	font-weight: 900;
}

.section-prestations h3, .section-partners h3, .section-equipes h3, .section-actus h3, .section-referents h3 {
	text-align: center;
	margin-bottom: 50px;
	font-weight: 100;
	font-size: 32px;
}

.section-about::before {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	content: '';
	background-image: url(../img/fd.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
}

.section p {
	line-height: 26px;
}

.section-animal-perdu {
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: bottom center;
	padding-bottom: 200px;
}

.animalPerduImg {
	height: 500px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.animalPerduTitre {
	color: #fff;
	font-size: 36px;
	font-weight: 900;
}

.animalPerduTxt {
	color: #fff;
	font-size: 28px;
	font-weight: 100;
	margin-bottom: 30px;
}

.animalPerduBtn a {
	background-color: var(--ikColorPrinc);
	color: #fff;
	padding: 10px 30px;
	display: inline-block;
	border-radius: 5px;
	font-size: 18px;
	text-transform: uppercase;
}


/* section contact */

.section-contact .container {
	background-color: var(--ikColorPrinc);
	padding: 50px;
	color: #fff;
}

.formContact {
	background-color: #f4f4f4;
	padding: 50px;
	color: #000;
	margin-top: -100px;
	margin-bottom: -100px;
}

.section-contact h2 {
	color: #000;
}

.section-contact h3 {
	color: #fff;
	margin-top: 40px;
}

.btn-princ {
	background-color: var(--ikColorPrinc);
	color: #fff;
}

.btn-princ:hover {
	color: #fff;
	text-decoration: underline;
}

.btn-princ2 {
	border: 1px solid var(--ikColorPrinc);
	color: var(--ikColorPrinc);
}

.btn-princ2:hover {
	background-color: #f4f4f4;
	color: var(--ikColorPrinc);
}

/* animalPerduBloc */

.animalPerduBloc {
	background-color: #fff;
	position: relative;
	margin: 15px 0;
}

.animalPerduBlocImage {
	height: 300px;
	background-size: cover;
	background-position: center;
	border-radius: 30px;
	background-repeat: no-repeat;
}

.animalPerduBlocVille {
	color: var(--ikColorPrinc);
	text-transform: uppercase;
	text-align: center;
	padding: 15px;
}

.animalPerduBlocType {
	background-color: var(--ikColorPrinc);
	position: absolute;
	top: -15px;
	right: -15px;
	border-radius: 100%;
}

.animalPerduBlocType.typeChat {
	background-color: #287DA6;
}

.animalPerduBlocType.typeChien {
	background-color: var(--ikColorPrinc);
}

.animalPerduBlocType img {
	width: 40px;
}

.animalPerduBlocRace {
	position: absolute;
	top: 240px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-weight: 900;
	font-size: 14px;
	text-shadow: 2px 2px 5px #000;
}

.animalPerduBlocBtn {
	text-align: center;
}

.animalPerduBlocBtn a {
	background-color: var(--ikColorSecond);
	color: #fff;
}

/* pet alert */

.petAlert {
	background-color: #262F4C;
	padding: 50px;
	border-radius: 50px;
	margin-top: 100px;
	color: #fff;
	background-image: url(../img/pattern2.png);
}

.petAlertTitre {
	color: #fff;
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
}

.petAlertSousTitre {
	text-align: center;
	margin-bottom: 50px;
}

.petAlertTitre span {
	font-weight: 900;
}

/* petnow */

.section-petnow {
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: bottom center;
	padding-bottom: 200px;
	color: #fff;
}

.section-petnow::before {
	background-image: url(../img/bg3.jpg);
	background-size: cover;
	background-position: top center;
	padding-top: 200px;
	margin-top: -100px;
	content: '';
	display: block;
}

.section-petnow h2 {
	text-align: center;
	color: #fff;
	font-size: 46px;
	font-weight: 900;
}

.section-petnow h3 {
	text-align: center;
	color: #fff;
	font-size: 32px;
	font-weight: 100;
	margin-bottom: 50px;
}

.section-petnow h4 {
	color: var(--ikColorPrinc);
}

.petnowImg img {
	max-width: 100%;
}

.petnowBtn {
	text-align: center;
}

.petnowBtn a {
	text-transform: uppercase;
}

/* partners */

.partners {
	text-align: center;
}

.partners img {
	height: 70px;
	margin: 0 30px;
}

.contactLogo {
	text-align: center;
	margin-bottom: 50px;
}

.contactLogo img {
	max-width: 100px;
}

/* footer */

.footer {
	background-image: url(../img/bg2.png);
	background-size: cover;
	background-position: top center;
	padding-top: 200px;
	color: #fff;
}

.logoFooter img {
	max-width: 200px;
}

.colFooter h4 {
	color: #8BC04E;
}

.colFooter ul {
	margin: 0;
	padding: 0;
}

.colFooter ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.colFooter ul li a {
	color: #fff;
	padding: 10px 0px;
	display: inline-block;
}

.footerRS a {
	background-color: #8BC04E;
	color: #fff;
	font-size: 20px;
	width: 40px;
	line-height: 40px;
	border-radius: 100%;
	display: inline-block;
	text-align: center;
}

/* actus /

/* actu */

 .blog-box {
	background-color: #f4f4f4;
	margin: 25px 0px;
}

.blog-box-image {
	height: 200px;
	background-size: cover;
	background-position: center center;
}

.blog-box-content {
	padding: 25px;
	position: relative;
}

.blog-box-date {
	position: absolute;
	top: -20px;
	right: 0px;
	padding: 5px 15px;
	background-color: var(--ikColorSecond);
	color: #fff;
}

.blog-box-titre a {
	color: #000;
	font-size: 20px;
}

.blog-box-btn {
	margin-top: 15px;
	text-align: right;
}

.blog-box-btn a {
	background-color: var(--ikColorPrinc);
	color: #fff;
	border-radius: 5px;
	padding: 5px 25px;
	display: inline-block;
	text-transform: uppercase;
}

/* actu detail */

.actualite-detail-image {
	margin-bottom: 50px;
}

.actualite-detail-image img {
	max-width: 500px;
	padding-right: 20px;
	padding-bottom: 20px;
}

.actualite-detail-contenu h2 {
	margin-bottom: 20px;
}

.actualite-detail-contenu p {
	line-height: 24px;
}

.actualite-detail-contenu p b {
	color: #000;
}

.actualite-detail-contenu::after {
  clear: both;
  content: '';
  display: block;
}


/* copyright */

.copyright {
	background-color: #2D334D;
	color: #fff;
	text-align: center;
	padding: 15px 0;
}

.copyright a {
	color: #fff;
	text-decoration: underline;
}

.footerMobile {
	display: none;
}

/* header g2 */

.headerG2 {
	background-color: #272F4C;
	color: #fff;
	text-align: center;
	padding: 50px 0;
}

.headerG2 h1 {
	font-size: 40px;
}

.headerG2 h2 {
	font-size: 36px;
	font-weight: 100;
}

.contenu {
	padding: 100px 0;
}

/* espace adherent */

.valid { color: green; }
.invalid { color: red; }

#strengthBar {
  height: 10px;
  background: lightgray;
  margin-top: 5px;
  border-radius: 5px;
  overflow: hidden;
}

#strength {
  height: 100%;
  width: 0;
  transition: width 0.3s;
}

.espaceAdherentsBloc {
	background-color: #f4f4f4;
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.espaceAdherentsBlocTitre {
	text-align: center;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 900;
}

.espaceAdherentsBlocTitre2 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 900;
	margin-bottom: 30px;
}

.espaceAdherentsBloc p a {
	color: #333;
	font-size: 12px;
}

/* section equipes */

.equipePhoto {
	text-align: center;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	background-size: cover;
	background-position: center;
	margin: 0 auto;
}

.equipeNom {
	text-align: center;
	font-weight: 900;
	font-size: 18px;
}

.equipeFonction {
	text-align: center;
	font-weight: 100;
	font-size: 18px;
}

.equipeDescription {
	text-align: center;
	padding-top: 20px;
	color: #777;
}

/* offres */

.section-offres {
	background-color: #262F4C;
	margin: 150px 0;
}

.offre {
	background-color: #fff;
	padding: 30px;
	margin: -250px 0;
	box-shadow: 0px 0px 8px #efefef;
}

.offreIcone {
	text-align: center;
}

.offreIcone img {
	height: 80px;
}

.offreTitre {
	text-align: center;
}

.offreTitre {
	display: block;
	text-transform: uppercase;
	color: #000;
	font-weight: 900;
	margin-bottom: 30px;
	font-size: 24px;
	color: var(--ikColorPrinc);
}

.offreTitre span {
	display: block;
	text-transform: uppercase;
	color: #777;
	font-weight: 100;
	font-size: 14px;
}

.offreSousTitre {
	text-align: center;
	margin-bottom: 30px;
	font-style: italic;
}

.offreSlogan {
	font-weight: bold;
	text-align: center;
}

.offreBtn {
	text-align: center;
	margin-top: 30px;
}

.actu {
	margin: 30px 0;
	position: relative;
}

.actuImage {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.actuTitre {
	margin: 15px 0;
	font-size: 22px;
}

.actuJournal {
	position: absolute;
	top: -15px;
	right: 0;
	padding: 5px 15px;
	background-color: #262F4C;
	color: #fff;
	text-transform: uppercase;
}

.actuDate {
	text-align: relative;
	color: #777;
	margin-bottom: 15px;
}

.menuAdherents {
	text-align: center;
	margin-bottom: 30px;
}

.menuAdherents a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f4f4f4;
	color: #444;
	border-radius: 5px;
	margin: 15px 5px;
}

.menuAdherents a.active {
	background-color: var(--ikColorPrinc);
	color: #fff;
	font-weight: bold;
}

.bloc {
	background-color: #fff;
	border-radius: 15px;
	padding: 30px;
	border: 1px #f4f4f4 solid;
	margin-bottom: 30px;
	position: relative;
}

.blocUrgent {
	border: 1px var(--ikColorPrinc) solid;
}

.pictoCategorie {
	position: absolute;
	top: -10px;
	right: -10px;
}

.pictoCategorie img {
	width: 50px;
	border-radius: 100%;
	background-color: var(--ikColorPrinc);
}

.blocGris {
	background-color: #f4f4f4;
}

.bloc h3 {
	font-size: 18px;
	text-transform: uppercase;
	padding-bottom: 20px;
}

.animalDetailImg img {
	border-radius: 15px;
	max-width: 100%;
}

.blocForm {
	max-width: 500px;
	margin: 0 auto;
}

/* RADIO */
.form-radio {
  display: inline-block;
}

.form-radio input[type=radio] {
  display: none;
}

.form-radio span {
  display: block;
  background-color: #FAFAFA;
  border-radius: 5px;
  border: 1px #eee solid;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 20px;
  cursor: pointer;
}

.form-radio span img {
	max-width: 80px;
}

.form-radio span.active {
  border-color: var(--ikColorPrinc);
  color:  var(--ikColorPrinc);
  font-weight: bold;
}

.section-adhesion-home .container {
  background-color: #359477;
  color: white;
  padding: 50px;
  font-family: Arial, sans-serif;
  border-radius: 50px;
}

.adhesion-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.adhesion-section h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.price {
  background: white;
  color: #359477;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: bold;
}

.benefits,
.financement {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
  line-height: 1.8em;
}

.benefits li::before,
.financement li::before {
  content: "•";
  color: white;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.financement-title {
  font-weight: bold;
  margin-top: 40px;
}

.conclusion {
  margin-top: 30px;
  font-size: 18px;
}

.btn-blanc {
  background-color: white;
  color: #359477;
}

.btn-blanc:hover {
  background-color: #ffffffcc;
  color: #2d7a60;
}

/* GLOBAL - RESPONSIVE */

@media (max-width: 1200px) {

	.logo img {
		height: 40px;
	}

	.menus {
		left: 250px;
	}

	.menus ul li a {
		font-size: 16px;
	}

	.slider {
		height: 500px;
	}

	.slider::before {
		background-size: 30%;
	}

	.slideTitre {
		padding-top: 200px;
		font-size: 40px;
	}

	.slideSousTitre {
		font-size: 40px;
	}

	.section-about h1, .section-petnow h2, .section-partners h2,  .section-prestations h2, .section-contact h2, .section-equipes h2, .section-actus h2, .section-referents h2 {
		font-size: 30px;
	}

	.section-about h2, .section-petnow h3, .section-partners h3,  .section-prestations h3,  .section-equipes h3, .section-actus h3, .section-referents h3 {
		font-size: 24px;
	}

	.section-petnow h4, .petAlert h4 {
		font-size: 20px;
	}

	.section-animal-perdu {
		padding-bottom: 100px;
	}

	.animalPerduTitre {
		font-size: 30px;
	}

	.animalPerduTxt {
		font-size: 22px;

	}

}

@media (max-width: 991px) {

	.menus {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		background: rgba(38, 47, 76, 0.9);
		z-index: 9998;
		margin-left: -100%;
	}

	.menus::before {
		content: 'Navigation';
		text-transform: uppercase;
		padding: 30px;
		display: block;
		color: #fff;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
	}

	.menus ul li {
		display: block;
	}

	.menus ul li a {
		color: #fff;
	}

	.footerMobile {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #262F4C;
		z-index: 99999;
	}

	.footerMobile a {
		width: 25%;
		float: left;
		text-align: center;
		padding: 10px 0;
	}

	.footerMobile a img {
		width: 40px;
	}

	.slideTitre {
		font-size: 28px;
	}

	.slideSousTitre {
		font-size: 22px;
	}

	.slideTitre, .slideSousTitre {
		width: auto;
	}

	.section-about h1, .section-petnow h2, .section-partners h2, .section-prestations h2, .section-contact h2, .section-equipes h2, .section-actus h2, .section-referents h2 {
		font-size: 25px;
	}

	.section-about h2, .section-petnow h3, .section-prestations h3, .section-partners h3, .section-equipes h3, .section-actus h3, .section-referents h3 {
		font-size: 20px;
	}

	.section-petnow h4, .petAlert h4 {
		font-size: 18px;
	}

	.petAlertTitre {
		font-size: 22px;
	}

	.section {
		padding: 60px 0;
	}

	.animalPerduBloc {
		margin: 30px 0;
	}

	.contactTexte {
		margin-bottom: 50px;
	}

	.formContact {
		margin-top: 0;
	}

	.colFooter1 {
		text-align: center;
	}

	.colFooter {
		margin-bottom: 50px;
	}

}

@media (max-width: 767px) {

	.slideTitre, .slideSousTitre {
		text-shadow: 2px 2px 1px #333;
	}

	.petAlertForm {
		margin-top: 50px;
		text-align: center;
	}

	.petnowBtn {
		margin-bottom: 100px;
	}

	.section-petnow {
		padding-bottom: 200px;
	}

	.aboutImg {
		margin-bottom: 50px;
	}

	.animalPerduBtn a {
		text-align: center;
	}

}

@media (max-width: 575px) {

	body {
		font-size: 14px;
	}

	.header-btns {
		display: none;
	}

	.logo {
		text-align: center;
	}

	.petAlert {
		padding: 25px;
		border-radius: 25px;
	}

	.animalPerduTitre {
		text-align: center;
		font-size: 22px;
	}

	.animalPerduTxt {
		text-align: center;
		font-size: 16px;
	}

	.section-contact .container, .formContact {
		padding: 25px;
	}

	.partners a {
		display: block;
		margin: 20px 0;
	}

	.partners img {
		height: auto;
		width: 80%;
		margin: 0;
	}

	.logoFooter img {
		max-width: 150px;
	}

	.equipe {
		padding: 50px 0;
	}

	.offre {
		margin: 30px 0;
		box-shadow: 0;
	}

	.section-offres {
		margin: -60px 0;
	}

	.headerG2 h1 {
		font-size: 24px;
	}

	.headerG2 h2 {
		font-size: 18px;
	}

	.slider {
		height: 250px;
	}

	.slideTitre {
		font-size: 20px;
		padding-top: 80px;
	}

	.slideSousTitre {
		font-size: 16px;
	}

	.section-adhesion-home {
		padding: 40px 15px;
	}

	.section-adhesion-home .container  {
		padding: 25px;
		border-radius: 25px;
	}

	.section-adhesion-home h2 {
		font-size: 18px;
	}

	.section-adhesion-home h3 {
		font-size: 14px;
	}

	.animalPerduBtn {
		text-align: center;
	}

	.animalPerduTxt a {
		color: #fff;
		text-decoration: underline;
	}

	.actu {
		padding: 30px 30px;
		background-color: #f4f4f4;
	}

	.actu {
		margin: 30px 0;
	}

	.copyright {
		padding-bottom: 65px;
	}


}