* { margin: 0; padding: 0; box-sizing: border-box; }

header, .header-slider, .header {
  position: relative;
}
.header-slider::after,
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.55) 60%,
      rgba(0,0,0,0.70) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.25) 52%,
      rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-left{
  position: absolute;
  z-index: 3;
  left: clamp(16px, 4vw, 56px);
  top: clamp(90px, 16vh, 150px);
  width: min(520px, 46vw);
  color: rgba(255,255,255,0.92);
}

.hero-kicker{
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 12px 24px rgba(0,0,0,0.45);
}

/*“Visite gratuite…” en grand */
.event{
  margin: 0;
  width: 100%;
}

.event h1{
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

/* petit trait décoratif (comme sur l’image) */
.hero-underline{
  display: inline-block;
  margin-top: 14px;
  width: 150px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, goldenrod, orange);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Compte à rebours : texte simple (pas de box) */
.countdown-inline{
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  color: rgba(255,255,255,0.88);
  text-shadow: 0 14px 26px rgba(0,0,0,0.60);
}

/* Option : un petit glow discret sur les chiffres */
.countdown-inline strong{
  color: #fff;
  text-shadow: 0 0 18px rgba(218,165,32,0.35);
}



html { min-height: 100%; scroll-behavior: smooth; }

body{
  min-height: 100%;
  background-color: burlywood;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1f1f1f;
}

/* meilleure respiration du contenu */
p{ margin: 1rem 0; padding: 0 1rem; }

/* titres un peu plus nets */
h1, h2, h3{
  line-height: 1.2;
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
}

/* liens */
a{ color: inherit; }

/* =========================
   NAVBAR (desktop)
========================= */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ul menu */
.menu{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly; /* plus équilibré */
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
}

/* item */
.menu > li{
  position: relative;
  background: transparent; /* on enlève le fond blanc sur chaque li */
  border-radius: 12px;
}

/* liens du menu */
.menu > li > a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  border-bottom: 4px solid rgb(4, 2, 2);
  border-radius: 12px;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

/* hover plus doux */
.menu > li > a:hover{
  background-color: orange;
  color: #fff;
  transform: translateY(-1px);
  border-bottom: 4px solid goldenrod;
}

/* =========================
   SOUS-MENU (dropdown)
========================= */

.menu li ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%; /* Collé au parent pour ne pas perdre le focus */
  width: 220px;
  display: none; /* Caché par défaut */
  flex-direction: column;
  list-style: none;
  background: white;
  border-radius: 0 0 14px 14px; /* Arrondi seulement en bas */
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 2000;
  padding: 0;
}

/* Garder le menu ouvert quand on survole le LI parent OU le UL lui-même */
.menu li:hover > ul {
  display: flex;
}

/* petit "triangle" */
.menu li ul::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

/* afficher au hover */
.menu > li:hover > ul{ display: flex; }

/* liens sous-menu */
.menu li ul li a{
  display: block;
  padding: 0.9rem 1rem;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.menu li ul li a:hover{
  background: orange;
  color: #fff;
}

/* =========================
   HAMBURGER
========================= */
.navbar-toggle{
  display: none;
  cursor: pointer;
  position: absolute;
  z-index: 2500;
  top: 0.65rem;
  left: 0.8rem;
  padding: 0.35rem;
  border-radius: 10px;
  background: rgba(255, 165, 0, 0.15);
  backdrop-filter: blur(8px);
}

/* barres */
.bar1, .bar2, .bar3{
  width: 34px;
  height: 4px;
  background-color: black;
  margin: 6px 0;
  border-radius: 6px;
  transition: 0.35s;
}

.change .bar1{ transform: rotate(-45deg) translate(-7px, -7px); }
.change .bar2{ opacity: 0; }
.change .bar3{ transform: rotate(45deg) translate(-7px, 7px); }

/* =========================
   HEADER SLIDER (amélioration visuelle)
========================= */
.header-slider{
  position: relative;
  width: 100%;
  height: 360px; /* tu peux ajuster */
  overflow: hidden;
}

/* effet fondu + images pleines */
.header-slider .slides{
  width: 100%;
  height: 100%;
  position: relative;
}

.header-slider .slide{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.header-slider .slide.active{
  opacity: 1;
}

/* overlay pour rendre le texte lisible si tu ajoutes du texte plus tard */
.header-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}

/* =========================
   INVITATION (carte)
========================= */
.invitation {
  display: flex;
  position: absolute;
  padding: 5px 5px;
  right: 90px;
  top: 440px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  width: 40%;
  height: 37%;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 30px;
  color: white;
  box-shadow: 20px 10px 10px black;
  align-items: center;
  flex-direction: column;
}
.valid {
  position: relative;
  top: 30px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  background-color: rgb(0, 166, 255);
  font-size: 20px;
  margin-bottom: 5%;
  height: 20%;
  width: 40%;
  padding: 10px 10px;
  justify-content: flex-end;
}
.valid:hover {
  background-color: goldenrod;
}

/* =========================
   LIENS DU HAUT (expo/ville/picture)
========================= */
.expo, .ville, .picture{
  display: block;
  margin: 0.75rem 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.18s ease;
}

.expo:hover, .ville:hover, .picture:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.80);
}

/* =========================
   SECTION CARTES (tes .images)
========================= */
/* Conteneur des cartes */
.container{
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 20px 12px;
}

/* Carte */
.images{
  width: 320px;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);

  display: flex;
  flex-direction: column;

  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* Image */
.card-image{
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Titre */
.title{
  display: block;
  text-decoration: none;
  text-align: center;

  padding: 14px 14px 6px;
  margin: 0;

  font-weight: 800;
  color: #111;
}

/* Texte dans la carte */
.images p{
  padding: 0 16px 18px;
  margin: 0;
  color: rgba(0,0,0,0.78);
  line-height: 1.5;
  flex-grow: 1;
}

/* Hover (plus clean) */
.images:hover{
  background-color: #6b6b6b; /* gris */
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
  cursor: pointer;
}

/* Couleurs texte au hover */
.images:hover .title,
.images:hover p{
  color: #fff;
}

/* Petit effet sur l'image au hover */
.images:hover .card-image{
  transform: scale(1.03);
  transition: transform 0.35s ease;
}




/* Regions*/
.sous-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* Carte */
.notes {
  background-color: grey;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

/* Titre dans la carte */
.notes h1 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}
#pic1,
#pic2,
#pic3,
.notes img {
  float: left;
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 16px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Texte */
.texte {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Bande bouton */
.bande {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  clear: both;
}

.bouton {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  font-weight: 700;
  text-align: center;

  padding: 12px 18px;
  border-radius: 14px;
  min-width: 240px;

  background: rgba(165, 42, 42, 0.85); /* brown */
  color: bisque;

  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.bouton:hover {
  background: rgba(245, 245, 220, 0.95); /* beige */
  color: #111;
  transform: translateY(-1px);
}

/* mission */
.page-mission {
  background-color: grey;
}
.page-mission h1 {
  color: #d5d5d5;
  text-align: center;
  font-size: 3em;
  letter-spacing: 8px;
}
caption {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 3px;
}
table {
  border-spacing: 0;
  margin: 0 auto;
  height: 5%;
  width: 75%;
  background-color: blanchedalmond;
  margin-bottom: 5%;
}
th,
td {
  background-color: antiquewhite;
  border: 1px solid;
  padding: 10px;
  text-align: center;
}
th {
  background-color: antiquewhite;
  color: green;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* Membre*/
.page-member {
  background: linear-gradient(135deg, #380626, #5b0f45);
  min-height: 100vh;
  padding: 40px 0;
}

/* Titre */
.page-member h1 {
  color: #ffffff;
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 6px;
  margin-bottom: 30px;
}

/* Formulaire */
.page-member form {
  background: #ffffff;
  color: #333;
  font-weight: 600;
  border: 3px solid #faa609;
  border-radius: 18px;
  width: 50%;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Conteneur */
.container {
  margin: 0 auto;
  width: 50%;
}

/* Espacement champs */
.page-member form ul div {
  padding-top: 15px;
}

/* Inputs */
input[type="text"],
input[type="password"] {
  width: 85%;
  height: 40px;
  padding: 5px 10px;
  background-color: #f0f0f0;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #6624a5;
  outline: none;
  box-shadow: 0 0 6px rgba(102, 36, 165, 0.4);
}

/* Bouton */
input[type="submit"] {
  width: 60%;
  padding: 12px;
  margin-top: 20px;
  background-color: #6624a5;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="submit"]:hover {
  background-color: #4b1c7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* contact */
.page-contact {
  background: linear-gradient(135deg, #380626, #5b0f45);
  min-height: 100vh;
  padding: 40px 0;
}

/* Titre */
.page-contact h1 {
  color: #ffffff;
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 6px;
  margin-bottom: 30px;
}

/* Conteneur */
.page-contact .container {
  margin: 0 auto;
  width: 50%;
}

/* Formulaire */
.page-contact form {
  background-color: #ffffff;
  color: #333;
  font-weight: 600;
  border: 3px solid #faa609;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Alignement champs */
.input-container {
  text-align: center;
  margin: 18px 0;
}

/* Labels */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

/* Inputs */
input[type="text"],
input[type="email"],
select,
textarea {
  width: 80%;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #6624a5;
  box-shadow: 0 0 6px rgba(102, 36, 165, 0.4);
}

/* Textarea */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Bouton */
input[type="submit"] {
  width: 60%;
  padding: 12px;
  margin-top: 20px;
  background-color: #6624a5;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="submit"]:hover {
  background-color: #4b1c7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.erreur {
  color: #ff000f !important;
}

.invalide {
  border: 2px solid #ff0000 !important;
  background-color: #fff;
}

.valide {
  border: 2px solid #00cc66 !important;
  background-color: #fff;
}

.label {
  color: #ff0000;
}

.labelOk {
  color: #00cc66;
}

.message {
  font-size: 18px;
  font-weight: bold;
  background-color: black;
  color: white;
  padding: 8px 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: none;
}




.page-faq {
  background: linear-gradient(135deg, rgb(190, 124, 44), rgb(188, 182, 76));
  min-height: 100vh;
}

/* Conteneur de la FAQ (remplace ton .container) */
.page-faq .container-faq {
  max-width: 1100px;
  margin: 40px auto;
  padding: 24px 16px 40px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Chaque item FAQ */
.page-faq .message {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Titre cliquable */
.page-faq .messageTitle {
  cursor: pointer;
  margin: 0;
  padding: 14px 16px;
  background: rgba(255, 0, 64, 0.82);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

/* Flèche */
.page-faq .messageTitle::after {
  content: "▾";
  transition: transform 0.2s ease;
}

/* Description */
.page-faq .messageDescript {
  background: rgba(255, 255, 255, 0.95);
  color: #1f1f1f;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
  line-height: 1.7;
}

/* Fermé */
.page-faq .closed .messageDescript {
  height: 0;
  padding: 0 16px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  border-top: none;
}

/* Ouvert */
.page-faq .open .messageDescript {
  transform: scaleY(1);
}

.page-faq .open .messageTitle {
  background: rgba(189, 195, 199, 0.95);
  color: #2c3e50;
}

.page-faq .open .messageTitle::after {
  transform: rotate(180deg);
}

/* ===========================
   Menu (si tu veux le garder sur cette page)
   =========================== */
.page-faq nav {
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
}

/* ===========================
   Footer + icones (corrigé : ne disparaît plus)
   =========================== */
.page-faq footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: goldenrod;
  width: 100%;
  padding: 12px 14px;
}

.page-faq .copyright {
  font-size: 1.2em;
  font-weight: 800;
}

.page-faq .social-icon {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-faq .social-icon li {
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-faq .social-icon a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
}

.page-faq .social-icon li:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px) rotate(8deg);
}



/* =========================
   GALERIE (CSS spécifique)
   Body: <body class="galerie">
========================= */

/* Reset local (optionnel) */
.galerie * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.galerie {
  background-color: burlywood;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: large;
  min-height: 100%;
}

/* Paragraphes (si tu en ajoutes) */
.galerie p {
  margin: 2%;
}

/* =========================
   NAV (si header.php met le menu)
   -> On scope tout sur .galerie
========================= */
.galerie nav {
  width: 100%;
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 0; /* important */
}

.galerie nav ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.galerie nav li {
  flex-grow: 1;
  position: relative;
  text-align: center;
  background-color: white;
}

.galerie nav li:hover {
  background-color: orange;
}

.galerie nav li a {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: black;
  font-weight: bold;
  border-bottom: 4px solid rgb(4, 2, 2);
}

.galerie nav li a:hover {
  color: white;
  border-bottom: 4px solid goldenrod;
}

/* Sous-menu déroulant */
.galerie nav li ul {
  position: absolute;
  width: 100%;
  z-index: 100;
  display: none;
}

.galerie nav ul li:hover ul {
  display: flex;
  flex-direction: column;
}

/* =========================
   HEADER (si header.php a .header)
========================= */
.galerie .header {
  width: 100%;
  height: 50px;
  display: flex;
}

/* =========================
   CONTENU GALERIE
========================= */
.galerie .conteneur {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 18px;
  padding: 18px;
}

/* Carte photo */
.galerie .photos {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  width: min(320px, 90%);
  margin: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.galerie .photos:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

/* Image */
.galerie .photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Titre sous l’image */
.galerie .photos .texte {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.15em;
  text-align: center;
}

.galerie .photos .texte h3 {
  margin: 0;
  padding: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 767px) {
  .galerie .conteneur {
    padding: 12px;
  }
  .galerie .photos {
    width: min(420px, 95%);
  }
}



/* Responsive */
@media (max-width: 767px){
  .images{ width: min(360px, 100%); }
}

/* =========================
   FOOTER
========================= */
footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: goldenrod;
  width: 100%;
  padding: 14px 16px;
  box-shadow: 0 -12px 28px rgba(0,0,0,0.12);
}

.copyright{
  font-size: 1.1rem;
  font-weight: 800;
}

/* icones social */
.social-icon{
  display: flex;
  gap: 0.6rem;
  list-style: none;
}

.social-icon li{
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon a{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
}

/* hover corrigé (avant scale(0) les faisait disparaître) */
.social-icon li:hover{
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
  transform: translateY(-3px) rotate(8deg);
}

/* couleurs existantes conservées */
.social-icon li:nth-child(1){ background-color:#1877f2; }
.social-icon li:nth-child(2){ background-color:#1da1f2; }
.social-icon li:nth-child(3){ background-color:#ff5700; }
.social-icon li:nth-child(4){ background-color:#e4405f; }
.social-icon li:nth-child(5){ background-color:#cd201f; }


}
