html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
  width: 12px !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px !important;
  background-color: #E99F59 !important;
}

::-webkit-scrollbar-track {
  background-color: #3A3A3A !important;
}

h1 {
  font-family: "Bebas Neue", cursive;
}

h2 {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
}

h3 {
  font-family: "Overpass", sans-serif;
}

p {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: white;
}

span {
  font-style: italic;
  margin-right: 5px;
  color: #E99F59;
  transition: 0.4s all ease-in-out;
  border-bottom: 2px solid transparent;
}
span:hover {
  border-bottom: 3px solid #E99F59;
}

header {
  height: 6rem;
  background-color: #353435;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .logo_bps {
  position: absolute;
  left: 4rem;
  min-width: 107px;
}
@media screen and (max-width: 500px) {
  header .logo_bps {
    left: 2rem;
    width: 16%;
    min-width: 66px;
  }
}
header .picto {
  height: 3px;
  width: 2.2em;
  display: none;
  position: absolute;
  z-index: 5;
  right: 2rem;
  transition: 0.7s all ease-in-out;
  border-top: 6px solid #ffffff;
}
@media screen and (max-width: 900px) {
  header .picto {
    display: block;
  }
}
header .picto::before {
  content: "";
  position: absolute;
  top: -20px;
  border-top: 6px solid #ffffff;
  height: 3px;
  width: 2.2em;
  transition: 0.4s all ease-in-out;
}
header .picto::after {
  content: "";
  position: absolute;
  top: 8px;
  border-top: 6px solid #ffffff;
  height: 3px;
  width: 2.2em;
  transition: 0.4s all ease-in-out;
}
header .close_icon {
  transform: rotate(45deg);
}
header .close_icon::before {
  transform: rotate(90deg);
  margin-top: 12px;
  margin-left: -1px;
}
header .close_icon::after {
  opacity: 0;
}
header .open {
  transform: translate(0, 0);
}
header nav {
  display: inline-flex;
  gap: 150px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  header nav {
    gap: 100px;
  }
}
@media screen and (max-width: 1200px) {
  header nav {
    gap: 70px;
  }
}
@media screen and (max-width: 1050px) {
  header nav {
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  header nav {
    transition: 0.7s all ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 15vh 2em 0em 0em;
    gap: 1.3rem;
    background-color: #353435;
    height: 80vh;
    width: 100vw;
    position: absolute;
    top: 0;
    transform: translate(0px, -1000px);
  }
}
header nav li {
  list-style: none;
}
header nav li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-size: 1.5em;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: 0.4s all ease-in-out;
}
header nav li a:hover {
  letter-spacing: 4px;
  border-bottom: 3px solid #ffffff;
}
@media screen and (max-width: 900px) {
  header nav li a {
    font-size: 2.4em;
  }
}
header .header-networks {
  display: none;
}
@media screen and (max-width: 900px) {
  header .header-networks {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
  }
}
header .header-networks li a img {
  width: 30px;
  height: 30px;
}

.accueil-section {
  background-color: #353435;
  display: flex;
  align-items: center;
  padding: 5rem;
  height: 90vh;
  background-image: url("../img/Photo_smooth_blur 1.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .accueil-section {
    padding: 2rem;
  }
}
.accueil-section .cta_box {
  color: white;
  width: 50%;
}
.accueil-section .cta_box h1 {
  font-weight: 400;
  font-size: 8rem;
}
@media screen and (max-width: 900px) {
  .accueil-section .cta_box h1 {
    font-size: 5rem;
  }
}
.accueil-section .cta_box h2 {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  padding-bottom: 4rem;
}
.accueil-section .cta_box .cta_button {
  padding: 12px 22px;
  background-color: #E99F59;
  border: none;
  outline: none;
  border-radius: 30px;
  font-size: 1.5rem;
  color: white;
}
@media screen and (max-width: 900px) {
  .accueil-section .cta_box .cta_button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .accueil-section .cta_box .cta_button {
    width: 90%;
  }
}

.entreprise-section {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  gap: 4rem;
}
@media screen and (max-width: 900px) {
  .entreprise-section {
    padding: 2rem;
  }
}
.entreprise-section > div {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .entreprise-section > div {
    flex-direction: column;
  }
}
.entreprise-section > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.entreprise-section > div > div h3 {
  font-family: "Overpass", sans-serif;
  font-size: 2rem;
  color: #353435;
}
.entreprise-section > div > div img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
@media screen and (max-width: 1100px) {
  .entreprise-section > div > div img {
    width: 200px;
    height: 200px;
  }
}
.entreprise-section > div > div p {
  text-align: justify;
  font-weight: 200;
}
.entreprise-section h2 {
  color: #3A3A3A;
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .entreprise-section h2 {
    text-align: center;
  }
}

.services-section {
  background-color: #353435;
  padding: 5rem;
}
@media screen and (max-width: 900px) {
  .services-section {
    padding: 2rem;
  }
}
.services-section .r-services {
  display: none;
  margin-top: 2rem;
}
@media screen and (max-width: 800px) {
  .services-section .r-services {
    display: block;
  }
}
.services-section .r-services > div {
  background-color: #E99F59;
  margin-bottom: 2rem;
}
.services-section .r-services > div .r-title {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  align-items: center;
  color: white;
  font-weight: 700;
}
.services-section .r-services > div .r-title img {
  transition: 0.4s all ease-in-out;
}
.services-section .r-services > div .r-title .open_arrow {
  transform: rotate(180deg);
}
.services-section .r-services > div .r-content {
  height: 0;
  transition: 0.4s all ease-in-out;
}
.services-section .r-services > div .r-content p {
  opacity: 0;
}
.services-section .r-services > div .r-content img {
  display: none;
}
.services-section .r-services > div .open_service {
  display: flex;
  flex-direction: row;
  height: 20vh;
  transition: 0.4s all ease-in-out;
}
.services-section .r-services > div .open_service p {
  padding-left: 1.5rem;
  opacity: 1;
  color: #3A3A3A;
  transition: 0.7s all ease-in-out;
}
.services-section .r-services > div .open_service img {
  max-width: 8rem;
  display: block;
}
.services-section .r-services .last {
  margin-bottom: 0;
}
.services-section .c-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 1200px) {
  .services-section .c-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 800px) {
  .services-section .c-services {
    display: none;
  }
}
.services-section .c-services > div {
  background-color: #E99F59;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.services-section .c-services > div > h3 {
  width: 100%;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 2rem 0 0 2rem;
}
.services-section .c-services > div > div {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.services-section .c-services > div > div p {
  width: 50%;
  padding: 0rem 0rem 2rem 2rem;
  color: #3A3A3A;
}
.services-section .c-services > div > div img {
  width: 200px;
}
.services-section h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  grid-column: 1/4;
}
@media screen and (max-width: 900px) {
  .services-section h2 {
    text-align: center;
  }
}

.team-section {
  color: #3A3A3A;
  padding: 5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  .team-section {
    padding: 2rem;
  }
}
.team-section h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .team-section h2 {
    text-align: center;
  }
}
.team-section .c-card {
  font-family: "Overpass", sans-serif;
  width: 70%;
  margin: 2rem auto 0 auto;
}
.team-section .c-card .t-card {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .team-section .c-card .t-card {
    flex-direction: column;
    align-items: center;
  }
}
.team-section .c-card .t-card .t-man {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .team-section .c-card .t-card .t-man {
    flex-direction: column-reverse;
  }
}
.team-section .c-card .t-card .t-man img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 500px) {
  .team-section .c-card .t-card .t-man img {
    width: 200px;
    height: 200px;
  }
}
.team-section .c-card .t-card .t-man h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  opacity: 80%;
  padding-top: 1.5rem;
}
@media screen and (max-width: 1100px) {
  .team-section .c-card .t-card .t-man h3 {
    padding-bottom: 1.5rem;
  }
}
.team-section .c-card .t-card .c-info {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}
.team-section .c-card .t-card .c-info .line {
  margin-top: 10px;
  width: 250px;
  border-top: 1px solid #3A3A3A;
}
@media screen and (max-width: 1100px) {
  .team-section .c-card .t-card .c-info .line {
    display: none;
  }
}
.team-section .c-card .t-card .c-info .t-info {
  width: 300px;
}
.team-section .c-card .t-card .c-info .t-info h3 {
  font-size: 1.5rem;
  opacity: 80%;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .team-section .c-card .t-card .c-info .t-info h3 {
    text-align: center;
  }
}
.team-section .c-card .t-card .c-info .t-info p {
  font-weight: 200;
}

.contact-section {
  background-color: #E99F59;
  padding: 5rem;
}
@media screen and (max-width: 700px) {
  .contact-section {
    padding: 2rem;
  }
}
.contact-section h2 {
  font-family: "Bebas Neue", cursive;
  color: white;
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .contact-section h2 {
    text-align: center;
  }
}
.contact-section .c-all {
  margin-top: 2rem;
  display: flex;
  gap: 4rem;
  font-family: "Overpass", sans-serif;
}
.contact-section .c-all h3 {
  color: #3A3A3A;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 900px) {
  .contact-section .c-all {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
}
.contact-section .c-all .c-left {
  width: 50%;
  border-right: 5px solid #3A3A3A;
}
@media screen and (max-width: 900px) {
  .contact-section .c-all .c-left {
    border: none;
    width: 100%;
  }
}
.contact-section .c-all .c-left ul {
  list-style: none;
}
.contact-section .c-all .c-left ul img {
  width: 30px;
  height: 30px;
}
.contact-section .c-all .c-left ul li {
  margin-top: 1rem;
  color: white;
}
.contact-section .c-all .c-left ul li a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact-section .c-all .c-left .c-networks {
  margin-top: 2rem;
}
.contact-section .c-all .c-left .c-networks .networks {
  display: flex;
  gap: 2rem;
}
.contact-section .c-all .c-right {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .contact-section .c-all .c-right {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .contact-section .c-all .c-right h3 {
    display: none;
  }
}
.contact-section .c-all .c-right form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.contact-section .c-all .c-right form input, .contact-section .c-all .c-right form textarea {
  border-radius: 30px;
  padding: 16px 25px;
  border: none;
  margin-bottom: 1rem;
  opacity: 80%;
  outline: none;
}
.contact-section .c-all .c-right form input::placeholder, .contact-section .c-all .c-right form textarea::placeholder {
  font-family: "Overpass", sans-serif;
  color: #3A3A3A;
  opacity: 40%;
  font-size: 1rem;
}
.contact-section .c-all .c-right form textarea {
  opacity: 60%;
  resize: none;
}
.contact-section .c-all .c-right form .f-submit {
  width: fit-content;
  background-color: #3A3A3A;
  opacity: 100%;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  align-self: flex-end;
  font-family: "Overpass", sans-serif;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
