/* ***********************************PARAMETRE GLOBAUX******************* */
@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "merri";
  src: url("../fonts/Merriweather-Bold.ttf");
  font-display: swap;
}
html {
  --res: calc(0.01 * 10vmin);
}

* {
  font-family: merri, helvetica, serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  color: #f1e8e8;
  background: #262626;
  align-items: center;
}

.btn {
  font-family: roboto, sans-serif;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #000;
  font-weight: 800;
  background: none;
  box-shadow: 2px 2px 8px black;
  color: #f1e8e8;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background-color: #f1e8e8;
  border: 1px solid transparent;
  color: #262626;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: calc(48 * var(--res));
}

h2 {
  font-family: roboto, sans-serif;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  text-transform: uppercase;
  position: relative;
}
h2:after {
  content: "";
  left: 0;
  bottom: -10px;
  background: #ffd622;
  width: 100%;
  position: absolute;
  height: 3px;
}

.black {
  padding: 100px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .black {
    padding: 20px;
  }
}

.text {
  line-height: 2rem;
  width: 100%;
  margin: 20px 0;
}

span {
  color: #ffd622;
  font-family: roboto, sans-serif;
}

.header {
  height: 100vh;
  width: 100%;
  background: url(../img/bg-baniere1.jpg) center/cover fixed;
}
@media screen and (max-width: 600px) {
  .header {
    height: 100vh;
    width: 100%;
    background: url(../img/bg-baniere1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: fixed;
  }
}
.header .navbar {
  height: 9vh;
  width: 100%;
  display: flex;
  position: fixed;
  z-index: 100;
  align-items: center;
  background: linear-gradient(90deg, rgba(64, 64, 64, 0.862745098) 35%, rgba(15, 15, 15, 0.9098039216) 100%), url(../img/bg-navbar.avif) center/cover;
  transition: 0.5s;
}
.header .navbar .navlinks {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
}
.header .navbar .navlinks li a {
  color: #f1e8e8;
  font-family: roboto, sans-serif;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s ease;
}
@media screen and (max-width: 820px) {
  .header .navbar .navlinks li a {
    font-size: 0.8rem;
    padding: 5px;
  }
}
@media screen and (max-width: 515px) {
  .header .navbar .navlinks li a {
    display: none;
  }
}
.header .navbar .navlinks li a:hover {
  background: white;
  color: #262626;
}
.header .navbar .menu {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 10%;
  display: none;
}
@media screen and (max-width: 515px) {
  .header .navbar .menu {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}
.header .baniere {
  width: 100%;
  height: 91vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  padding: 20vh 50px 50px;
}
.header .baniere img {
  filter: drop-shadow(-2px -2px 5px white) drop-shadow(2px 2px 5px white);
  max-width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 200px;
}
.header .baniere div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .baniere div h1 {
  margin: 50px;
  font-size: 2rem;
  text-align: center;
  text-shadow: -2px 2px 5px #262626;
}
@media screen and (max-width: 700px) {
  .header .baniere div h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .header .baniere div h1 {
    font-size: 1rem;
  }
}
.header .baniere div a {
  margin-top: 50px;
  font-size: 2rem;
  border-radius: 10px;
}
@media screen and (max-width: 1030px) {
  .header .baniere div a {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #present {
    padding: 0;
  }
}

.presentation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.presentation .stf {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.presentation .stf .personnel {
  position: relative;
}
.presentation .stf .personnel img {
  margin: 40px 0 50px;
  height: 400px;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.665);
  transform: translateX(-200px);
  opacity: 0;
  transition: 0.8s ease-in-out;
}
@media screen and (max-width: 500px) {
  .presentation .stf .personnel img {
    height: 300px;
    width: 300px;
  }
}
.presentation .middle {
  display: flex;
  flex-direction: column;
}
.presentation .middle p {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .presentation .middle p {
    font-size: 0.8rem;
  }
}
.presentation .middle p a {
  font-size: 1.2rem;
  color: #ffd622;
  font-weight: 600;
  padding: 3px;
  border-radius: 3px;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  .presentation .middle p a {
    font-size: 0.8rem;
  }
}
.presentation .middle p a:hover {
  background: #ffd622;
  color: #262626;
}
.presentation .middle .signature-center {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 800px) {
  .presentation .middle .signature-center img {
    width: 40%;
  }
}

.white {
  background: white;
  padding: 100px;
  color: #262626;
}
@media screen and (max-width: 600px) {
  .white {
    padding: 20px;
  }
}
.white h2:after {
  background: black;
}
.white .realisation {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 980px) {
  .white .realisation {
    display: block;
  }
}
@media screen and (max-width: 980px) {
  .white .realisation .title {
    display: flex;
    justify-content: center;
  }
}
.white .realisation .galerie {
  position: relative;
  max-width: 48rem;
  margin: 40px auto;
}
.white .realisation .galerie .slider {
  display: flex;
  aspect-ratio: 16/9;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
}
.white .realisation .galerie .slider img {
  flex: 1 0 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.white .realisation .galerie .slider-nav {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.white .realisation .galerie .slider-nav a {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #EEE;
  opacity: 0.75;
  transition: opacity ease 250ms;
}
.white .realisation .galerie .slider-nav a:hover {
  opacity: 1;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: whitesmoke;
}
.about span {
  margin-right: 10px;
}
.about p {
  margin-top: 50px;
}

.contact {
  padding: 0 100px 100px;
  min-height: 640px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact .title {
  display: flex;
  justify-content: center;
}
.contact .grid-template {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 980px) {
  .contact .grid-template {
    display: block;
  }
}
.contact .grid-template .left {
  display: grid;
  gap: 50px;
  padding: 40px;
  grid-template-rows: 65px 65px 65px 150px 1fr;
}
@media screen and (max-width: 980px) {
  .contact .grid-template .left {
    padding: 0px;
  }
}
.contact .grid-template .left textarea {
  padding: 10px;
  resize: none;
  box-shadow: 2px 2px 10px black;
}
.contact .grid-template .left textarea:focus {
  outline: 3px solid #737373;
  border: none;
}
.contact .grid-template .left input {
  box-shadow: 2px 2px 10px black;
  padding: 10px;
}
.contact .grid-template .left input:focus {
  outline: 3px solid #737373;
  border: none;
}
.contact .grid-template .left input[type=submit] {
  width: 50%;
  justify-self: center;
  margin-bottom: 50px;
}
.contact .right {
  border-left: 1px solid #f1e8e8;
  padding: 40px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}
@media screen and (max-width: 980px) {
  .contact .right {
    border-left: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.contact .right .grid-template-icon {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .contact .right .grid-template-icon {
    text-align: center;
    margin: 30px;
  }
}
.contact .right .grid-template-icon a {
  width: 0%;
}
.contact .right .grid-template-icon a i {
  font-size: 2.5rem;
  color: #f1e8e8;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .contact .right .grid-template-icon a i {
    display: block;
    text-align: center;
    margin: 50px 0;
    font-size: 4rem;
  }
}
.contact .right .grid-template-icon a i:hover {
  transform: scale(1.3);
}
@media screen and (max-width: 980px) {
  .contact .right .grid-template-icon p {
    display: none;
  }
}

.footer {
  height: 100px;
  background: linear-gradient(90deg, rgba(64, 64, 64, 0.862745098) 35%, rgba(15, 15, 15, 0.9098039216) 100%), url(../img/bg-navbar.avif) center/cover;
  width: 100%;
  color: whitesmoke;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer .renseignement {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .footer .renseignement {
    flex-direction: column;
    text-align: center;
  }
}
.footer p {
  font-family: roboto, sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
}/*# sourceMappingURL=index.css.map */