/*

Theme Name: Soungoura Coulibaly
Theme URI: https://www.soungouracoulibaly.fr
Author: Soungoura Coulibaly
Author URI: https://www.soungouracoulibaly.fr/
Version: 1.0
Description : Thème développé sur mesure pour attirer, convaincre et transformer les visiteurs en clients.

*/

* {
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #000;
  font-family: 'Urbanist', sans-serif;
}

a {
  color: red;
}

a:hover {
  cursor: pointer;
  color: #363b3f;
}

img {
  max-width: 100%;
  max-height: 100%;
}

h1 {
  text-align: center;
  margin: 10px 0;
}

h2 {
  margin: 10px 0;
}

hr{
	margin-block-start: 35px;
    margin-block-end: 35px;
	color:#e8e8e8;
}


li {
  text-decoration: none;
  list-style-type: none;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 2em;
}

li a {
  color: #000;
  text-decoration: none;
}

li:hover,
li a:hover {
  color: red;
}

ul span {
  font-size: 1.5em;
  padding: 10px 0;
  background: none !important;
}

span a {
  color: #000;
}

bold {
  font-weight: bold;
}

main {
  min-height: 57vh;
}

/***** container home *****/
#container-home {
  width: 100%;
  min-height: 57vh;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}

.containerPage,
.containerCategory {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
  padding: 20px 0;
}

#home-bloc {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-bottom: 20px;
}


#container-home span {
  color: red !important;
}

#home-bloc h1 {
  color: #000 !important;
  font-size: 1.4em;
}

#home-bloc .bloc-content {
  width: 101%;
  margin: 0 auto;
  text-align: justify;
}

#container-elements {
  width: 100%;
  background-color: white;
  min-height: 96vh;
  display: block;
  margin: 0 auto;
  overflow: auto;
  margin-top: 25px;
}


#container-elements a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: normal;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  color: #fff;
  text-shadow: 2px 2px black;
}

#container-elements a:hover {
  color: #fff;
  text-shadow: 2px 2px black;
}

#container-elements h5 {
  text-align: center;
}

#container-elements em {
  text-shadow: none;
  color: black;
}

#container-elements ul,
#container-elements li {
  text-decoration: none;
  padding: 0;
  text-align: center;
}

#container-elements li,
#container-elements li a {
  display: inline;
  padding: 10px 25px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .2em;
  text-shadow: none;
}

#container-elements li:hover,
#container-elements li a:hover {
  color: #a6a6a6;
  text-shadow: none;
}

#container-elements li.active {
  color: #ccc;
  border-radius: 15px;
}

#index-section #container-elements {
  margin-top: 20px;

}

/* grid */
#container-elements .wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 10px;
}

#container-elements .grid {
  position: relative;
  display: inline-block;
  float: left;
  width: 33%;
  /* 33.33% */
  height: 325px;
  overflow: hidden;
  text-align: center;
  border: 2px solid black;
}

#container-elements .grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#container-elements .grid img:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transition: all 1s;
  -webkit-transition: all 1s;
  cursor: pointer;
  background: rgba(0, 0, 0, .4);
}

#container-elements .grid p {
  font-size: 1.7em;
  text-align: justify;
  z-index: 99999;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
  width: 100%;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
  padding: 0 10px;
}

#container-elements .grid:hover p {
  visibility: visible;
  opacity: 1;
}

#container-elements .display {
  visibility: visible !important;
  opacity: 1 !important;
  color: orange !important;
}

#container-elements .price {
  display: block;
}

#container-elements #breadcrumbs a {
  font-weight: bold !important;
  color: orange !important;
  text-shadow: none;
}

#container-elements #breadcrumbs a:hover {
  letter-spacing: 2px;
}

.filters.filter-button-group {
  margin: 20px 0;
}


/***** Category grid ****/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: all .3s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.service-title {
  font-size: 18px;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
}

.service-subtitle {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

/***** Column *****/

.channel {
  text-align: center;
}

.column {
  float: left;
  width: 33.1%;
  overflow: hidden;
  position: relative;
  margin: 1px;
  margin: 0 auto;
}

#index-bloc .row,
#home-bloc .row {
  width: 100%;
  margin: 0 auto;
}

.column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column:hover .index-image {
  transition: all 1s;
  -webkit-transition: all 1s;
  transform: scale(1.1);
}

.column .inside .title {
  z-index: 9;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
  width: 100%;
  text-align: center !important;
}

.column .inside a {
  width: 94%;
  text-align: center !important;
  margin: 0 auto;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity .2s, visibility .2s;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}


.column p {
  font-size: 1.5em;
  z-index: 9;
  width: 94%;
  text-align: center !important;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 1s, opacity .2s, visibility .2s;
  font-weight: bold;
  color: #000;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column img:hover {
  transition: all 1s;
  -webkit-transition: all 1s;
  cursor: pointer;
  background: rgb(0, 0, 0, .4);
}

.index-image {
  width: 100%;
  height: 230px;
  text-align: center;
  background-size: cover;
  background-position: 50% 50%;
}

footer {
  text-align: center;
  font-size: 1em;
  padding: 10px 0;
  border-bottom: 2px solid red;
  width: 100%;
}

/* LOADER */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-size: 3em;
  font-family: 'Urbanist', sans-serif;
  z-index: 99999999999;
}

.loading-text {
  width: 100%;
  position: absolute;
  text-align: center;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Urbanist', sans-serif;
}

.red {
  color: red;
}

.red:after {
  content: ' .';
  animation: dots 1s steps(5, end) infinite;
}

.loadVersion a {
  margin: 30px;
}

/** menu ***/
header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 2000px;
  height: 30px;
  border-top: 2px solid red;
}

.headerTitle {
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.7em;
}

.headerTitle a {
  text-decoration: none !important;
  color: initial !important;
}

.headerTitle span {
  color: red;
}

.headerTitle em {
  text-transform: lowercase !important;
}

/*** Header ***/

.headerContainer {
  position: fixed;
  min-height: 60px;
  width: 100%;
  margin: 0 auto;
  z-index: 9;
  transition: background-color 0.3s ease;
  top: 0;
  max-width: 2000px;
  background-color: #ffffff;
  border-top: 2px solid red;
-webkit-box-shadow: 1px -2px 34px 3px #e8e8e8;
    box-shadow: 1px -2px 34px 3px #e8e8e8;
}

.headerContainer.inverted {
  background-color: #fff;
  -webkit-box-shadow: 1px -2px 34px 3px #e8e8e8;
  box-shadow: 1px -2px 34px 3px #e8e8e8;
}

.headerContainer.inverted a {
  color: #0e436b;
}

.mainContainer {
  opacity: .5;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}

.navBurger.inverted {
  background: black !important;
}

.headerNav {
  width: 90%;
  margin: 0 auto;
}

.logoMain img {
  float: right;
  width: 70px;
}

/* MENU */

nav {
  display: block;
  float: left;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
  z-index: 9;
  border-radius: 50px;
  transition: all .5s;
  -webkit-transition: all .5s;
  padding-top: 20px;
}

nav:hover {
  cursor: pointer;
}

#menuToggle {
  display: block;
  position: relative;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#menuToggle input[type="checkbox"] {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 30px;
  height: 30px;
  opacity: 0;
  z-index: 2;
  color: #73ab73;
}

#menuToggle span {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 9px;
  position: relative;
  background: #000;
  border-radius: 2px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
  transform-origin: 4px 0px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease,
    -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease,
    -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-1px, -1px);
  transform: rotate(45deg) translate(-1px, -1px);
  background: #000;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(1px, 1px);
  transform: rotate(-45deg) translate(1px, 1px);
}

#menu {
  position: fixed;
  width: 50vw;
  height: 100vh;
  overflow-y: auto;
  padding-left: 0;
  background-color: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  top: 0;
  left: 0;
}

#menuToggle input:checked~section {
  -webkit-transform: none;
  transform: none;
  border-top: 2px solid red;
}

/* Accordion */
.section-nav {
  border-top: none;
}

.section-nav {
  width: 90%;
  margin: 10px auto;
  padding: 35px 0 0 42px;
}

.section-nav p {
  display: block !important;
  margin: 0;
  margin-block-start: 0em;
  margin-block-end: .5em;
  font-size: 3em;
}

.section-nav p a {
  color: #fff !important;
  text-decoration: none;
}

.section-nav p a:hover {
  color: #c8c8c8;
}

.section-nav p {
  transition: opacity .25s ease-in-out;
}

.section-nav:hover p {
  opacity: 0.25;
}

.section-nav:hover p:hover {
  opacity: 1;
  color: #fff;
}

/**** About ****/

.about .headerContainer {
  background-color: #f7f7f7;
}

.about {
  background-color: #f7f7f7;
}

.containerAbout {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.containerPage {
  width: 60%;
  margin: 0 auto;
}

h1 span,
h2 span {
  color: red !important;
  padding: 0 !important;
  display: initial !important;
}

.containerAbout p{
  font-size: 1.3em;
}

.containerPage p {
  font-size: 1.3em;
  padding: 10px 0;
}

.containerAbout span {
  padding: 10px 0;
  display: block;
  color: black;
}

.side {
  flex: 1;
  padding: 20px;
}

.leftColumn {
  text-align: justify;
}

.rightColumn {
  text-align: center;
}

.containerAbout img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/**** grid ****/
.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: ;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.div1 {
  grid-area: 1 / 1 / 2 / 2;
}

.div2 {
  grid-area: 1 / 2 / 2 / 3;
}

.div3 {
  grid-area: 1 / 3 / 2 / 4;
}

.div4 {
  grid-area: 2 / 1 / 3 / 2;
}

.div5 {
  grid-area: 2 / 2 / 3 / 3;
}

.div6 {
  grid-area: 2 / 3 / 3 / 4;
}

.div7 {
  grid-area: 3 / 1 / 4 / 2;
}

.div8 {
  grid-area: 3 / 2 / 4 / 3;
}

.div9 {
  grid-area: 3 / 3 / 4 / 4;
}

.div1,
.div2,
.div3,
.div4,
.div5,
.div6,
.div7,
.div8,
.div9 {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 300px;
}

.div9 img {
  width: 200px;
  height: 200px;
}

button.toggle-btn {
  text-transform: none;
  border: none;
  text-decoration: underline;
  font-size: 1em;
  background: none;
  color: black;
  padding: 10px 0;
  font-family: 'Urbanist', sans-serif;
}

.collapsible {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.3s ease;
}

.collapsible.expanded {
  -webkit-line-clamp: unset;
}

.collapsible span bold {
  display: inline-block;
  margin-bottom: 8px;
  /* ou 15px */
}


.work li {
  font-size: 1.2em;
  padding: 5px 0;
  margin-left: 40px;
}

/* =========================
   VOIR PLUS
========================= */

button.toggle-btn {
  text-transform: none;
  border: none;
  text-decoration: underline;
  background: none;
  color: var(--text);
  padding: 10px 0;
  font-size: 1.3em;
}

.collapsible-wrapper {
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/**** Responsive ****/

@media (max-width:914px) {
  .containerAbout {
    display: block;
    height: auto;
    margin-top: 25px;
  }

  .leftColumn {
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:1100px) {

  #container-elements .grid {
    width: 49%;
  }

  #container-elements li {
    display: block;
  }

  #menu {
    padding-top: 85px;
    width: 100%;
  }

  .section-nav {
    padding: 0;
  }

}

@media (max-width: 768px) {
  .parent {
    grid-template-columns: repeat(1, 1fr);
  }

  .containerAbout img {
    max-width: 250px;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8,
  .div9 {
    padding: 10px;
    height: 250px;
  }

  .div3 {
    grid-area: auto;
  }

  .div6 {
    grid-area: auto;
  }

  .div9 {
    grid-area: auto;
  }

  .div9 img {
    width: auto;
  }

  .containerPage {
    width: 70%;
  }
}

@media (max-width:530px) {
  #container-elements .grid {
    width: 100%;
  }

  .parent {
    grid-template-columns: 1fr;
  }

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

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8,
  .div9 {
    grid-area: auto;
    height: 150px;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8,
  .div9 {
    padding: 0px;
  }

  .div9 img {
    width: 100px;
    height: 100px;
  }

  .containerPage {
    width: 90%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

}