@charset "UTF-8";
@font-face {
  font-family: "poppins";
  src: url(../fonts/PoppinsRegular.ttf);
}
@font-face {
  font-family: "regular-brush";
  src: url(../fonts/regularBrush.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: #333;
  font-family: "poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

body {
  background: linear-gradient(120deg, #b9967b, #b9a18e, #d2bfaf, #e6d7c7, #d2bfaf, #b9a18e, #b9967b);
  min-width: 100vw;
  min-height: 100vh;
}

section {
  padding: 50px 5vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "regular-brush", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: normal;
  color: #000;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a * {
  cursor: pointer;
}

.df {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.jcc {
  justify-content: center;
}

.aic {
  align-items: center;
}

.jcsb {
  justify-content: space-between;
}

.fdc {
  flex-direction: column;
}

.dg {
  display: grid;
  gap: 20px;
}

.title-page {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

button {
  background: #000;
  border: 2px solid #000;
  padding: 3px 20px;
  border-radius: 50px;
  color: #d2bfaf;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
button:hover {
  box-shadow: inset 0 0 5px #b9967b;
}

header,
footer {
  padding: 20px 5vw;
  box-shadow: 0 0 10px #000;
}

header .logo {
  max-height: 100px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
}
header .icons-nav {
  display: none;
}
@media screen and (max-width: 960px) {
  header .icons-nav {
    display: flex;
  }
}
header .icons-nav i {
  font-size: 1.8rem;
}
header .icons-nav #closeIcon {
  display: none;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
}

footer i {
  font-size: 1.2rem;
  color: #000;
}
footer * {
  font-size: 0.9rem;
}

.homepage h2 {
  margin-bottom: 30px;
}
.homepage #hero {
  gap: 50px;
  min-height: 560px;
  text-align: center;
  background: url(../images/bg-hero.webp) top/cover;
  padding: 0;
}
.homepage #hero .container {
  box-shadow: inset 0 0 10px #000;
  min-height: 560px;
  width: 100%;
  height: 100%;
  padding: 50px;
  background: rgba(185, 150, 123, 0.7);
}
.homepage #hero .container h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.homepage #hero .container h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}
.homepage #nos-prestations h3 {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}
.homepage #nos-prestations .container {
  padding: 50px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px #000;
}
.homepage #nos-prestations .container ul li {
  list-style: none;
}
.homepage #institut {
  background: url(../images/bg-institut.webp) center/cover;
}
.homepage #institut .container {
  background: #d2bfaf;
  padding: 50px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px #000;
  text-align: justify;
}
.homepage #institut .container button {
  margin-top: 30px;
}
.homepage #nos-realisations {
  gap: 50px;
}
.homepage #nos-realisations h2 {
  margin-bottom: 0px;
}
.homepage #nos-realisations .container {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 992px) {
  .homepage #nos-realisations .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .homepage #nos-realisations .container {
    grid-template-columns: 1fr;
  }
}
.homepage #nos-realisations img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 5px #000;
}
.homepage #contact {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.homepage #contact .container {
  padding: 50px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px #000;
}
.homepage #contact .container .dg {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .homepage #contact .container .dg {
    grid-template-columns: 1fr;
  }
}
.homepage #contact .container .dg .item-contact i {
  box-shadow: inset 0 0 10px #000;
  padding: 10px;
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage #contact .container .dg .item-contact .map,
.homepage #contact .container .dg .item-contact p,
.homepage #contact .container .dg .item-contact ul {
  margin-left: 80px;
}
.homepage #contact .container .dg .item-contact li {
  list-style-type: "★";
  padding-left: 10px;
}/*# sourceMappingURL=index.css.map */