@import url("https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: "Khand";
  font-size: 20px;
}

ul {
  list-style-position: inside;
}

img {
  max-width: 100%;
}

h1 {
  font-family: "Khand";
  font-size: 70px;
  scroll-behavior: smooth;
}

h2 {
  font-family: "Khand";
  font-size: 44px;
  margin-bottom: 20px;
}

h3 {
  font-family: "Khand";
  font-size: 36px;
}

h4 {
  font-family: "Khand";
  font-size: 24px;
}

a {
  text-decoration: none;
  color: #eff2f1;
}

hr {
  margin: 20px 0;
}

.container {
  width: 1240px;
  margin: 0 auto;
  max-width: 100%;
}

.in {
  background-color: #eff2f1;
  border-radius: 30px;
  transition: transform 1.4s ease;
}

.in:hover {
  transform: rotateY(360deg);
}

body {
  margin: 0 auto;
  padding: 50px 0;
  font-family: "Space Grotesk", serif;
  max-width: 1240px;
}
@media (max-width: 767px) {
  body {
    margin: 0 30px;
  }
}

.button {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid black;
  background-color: #191a23;
  color: white;
  text-decoration: none;
  text-align: center;
}
.button--team {
  float: right;
  font-size: 20px;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .button--team {
    width: -webkit-fill-available;
    display: flex;
  }
}
.button--footer {
  background-color: #439775;
  color: #191a23;
}
@media (max-width: 767px) {
  .button {
    display: block;
  }
}

.navbar {
  position: sticky;
  top: 0;
  padding: 5px 0;
  background-color: white;
  margin-top: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 70px;
  gap: 25px;
}
@media (max-width: 767px) {
  .navbar ul {
    display: none;
  }
}
.navbar ul li {
  display: inline;
}
.navbar ul li .button {
  background-color: white;
}
.navbar ul a {
  padding: 10px;
  text-decoration: none;
  color: #191a23;
}
.navbar .mobile_menu {
  display: none;
}
@media (max-width: 767px) {
  .navbar .mobile_menu {
    display: block;
    padding-top: 10px;
    padding-left: 10px;
  }
}
.navbar--footer {
  background-color: #191a23;
  align-items: center;
  margin: 0;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .navbar--footer {
    gap: 37px;
    flex-direction: column;
  }
}
.navbar--footer ul {
  display: flex;
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .navbar--footer ul {
    gap: 15px;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.navbar--footer ul a {
  color: #f3f3f3;
}
.navbar--footer .footer ul a {
  color: #f3f3f3;
}

header {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  header {
    flex-direction: column;
    justify-content: center;
  }
}
header .cadre {
  max-width: 50%;
}
@media (max-width: 767px) {
  header .cadre {
    max-width: 100%;
  }
}
header .cadre h1 {
  font-size: 60px;
}
@media (max-width: 767px) {
  header .cadre h1 {
    font-size: 43px;
  }
}
header .cadre p {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  header .cadre p {
    font-size: 16px;
  }
}
header .image-cadre {
  height: 400px;
  border-radius: 40px;
}
@media (max-width: 767px) {
  header .image-cadre {
    display: none;
  }
}

.reseau_head {
  margin-top: 25px;
}

.Title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .Title {
    flex-direction: column;
  }
}
.Title p {
  max-width: 50%;
  font-size: 18px;
}
@media (max-width: 767px) {
  .Title p {
    font-size: 16px;
  }
}

h2 {
  background-color: #439775;
  font-size: 40px;
  border-radius: 7px;
  padding: 5px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

.ServiceList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .ServiceList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ServiceListItem {
  display: flex;
  justify-content: center;
  border: 1px solid;
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 45px;
  box-shadow: 0 5px #191a23;
}
.ServiceListItem :hover {
  box-shadow: 0 0 20px #439775;
}
.ServiceListItem_image {
  padding: 40px;
}
@media (max-width: 767px) {
  .ServiceListItem_image {
    padding: 0;
  }
}

.ProjetList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .ProjetList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ProjetListItem {
  display: flex;
  justify-content: center;
  border: 1px solid;
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 45px;
  box-shadow: 0 5px #191a23;
}
.ProjetListItem--green {
  background-color: #439775;
}
.ProjetListItem--black {
  background-color: #191a23;
}
.ProjetListItem_image {
  padding: 40px;
}
@media (max-width: 767px) {
  .ProjetListItem_image {
    padding: 0;
  }
}

.protil h3 {
  font-size: 30px;
  display: inline;
  background-image: linear-gradient(to right, #439775 0, #439775 100%);
  -webkit-box-decorection-break: clone;
  box-decoration-break: clone;
  border-radius: 10px;
  padding: 2px;
}
@media (max-width: 767px) {
  .protil h3 {
    font-size: 26px;
  }
}
.protil .white {
  background-image: linear-gradient(to right, #f3f3f3 0, #f3f3f3 100%);
}
.protil_icon-element {
  display: flex;
  height: 175px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .protil_icon-element p {
    display: none;
  }
}
.protil_icon-element .p_white {
  color: white;
}

.titre h3 {
  font-size: 30px;
  display: inline;
  background-image: linear-gradient(to right, #439775 0, #439775 100%);
  -webkit-box-decorection-break: clone;
  box-decoration-break: clone;
  border-radius: 10px;
  padding: 2px;
}
@media (max-width: 767px) {
  .titre h3 {
    font-size: 26px;
  }
}
.titre .white {
  background-image: linear-gradient(to right, #f3f3f3 0, #f3f3f3 100%);
}
.titre_icon-element {
  display: flex;
  width: 200px;
  height: 175px;
  justify-content: center;
}
@media (max-width: 767px) {
  .titre_icon-element p {
    display: none;
  }
}
.titre_icon-element .p_white {
  color: white;
}

.CTA_block {
  display: flex;
  background-color: #f3f3f3;
  border-radius: 45px;
}
.CTA_block_picture {
  margin: -55px 0;
}
@media (max-width: 767px) {
  .CTA_block_picture {
    display: none;
  }
}
.CTA_block_text {
  padding: 60px;
}
.CTA_block_text p {
  padding: 26px 0;
}
@media (max-width: 767px) {
  .CTA_block_text p {
    font-size: 16px;
  }
}
.CTA_block_text h3 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .CTA_block_text h3 {
    font-size: 26px;
  }
}

.StudiesItem {
  display: flex;
  background-color: #191a23;
  border-radius: 45px;
  padding: 70px 60px;
}
@media (max-width: 767px) {
  .StudiesItem {
    background-color: white;
    gap: 30px;
  }
}
.StudiesItem_text {
  border-right: 1px solid #f3f3f3;
  padding: 0 64px;
  color: white;
}
@media (max-width: 767px) {
  .StudiesItem_text {
    background-color: #191a23;
    border-radius: 14px;
    min-width: 250px;
  }
}
@media (max-width: 767px) {
  .StudiesItem_text--nop {
    display: none;
  }
}
.StudiesItem_text_icon-element {
  display: flex;
  gap: 20px;
}
.StudiesItem_text_icon-element p {
  color: #439775;
}
@media (max-width: 767px) {
  .StudiesItem_text_icon-element p {
    font-size: 16px;
  }
}
.StudiesItem_text:last-child {
  border: none;
}

.ProcessItem {
  background-color: #f3f3f3;
  border-radius: 47px;
  padding: 41px 30px;
  margin: 30px 0;
  box-shadow: 0 5px #191a23;
}
.ProcessItem_head {
  display: flex;
  align-items: center;
}
.ProcessItem_number {
  font-size: 60px;
  padding-right: 20px;
  margin: 0;
}
.ProcessItem_title {
  font-size: 30px;
  flex: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .ProcessItem_title {
    font-size: 16px;
  }
}
.ProcessItem--green {
  background-color: #439775;
}

hr {
  border-color: #191a23;
}

.teamaligne {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .teamaligne {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.teamalignelist {
  border: 1px solid;
  border-radius: 45px;
  padding: 40px 35px;
  box-shadow: 0 5px #191a23;
}
.teamaligne .hr_team {
  width: 80%;
}

.bla {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
}

.form_background {
  display: flex;
  justify-content: space-between;
  background-color: #f3f3f3;
  padding: 60px 0 80px 100px;
  border-radius: 47px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .form_background {
    padding: 40px 30px;
  }
}
.form_background .form-image {
  margin-right: -28%;
}
@media (max-width: 767px) {
  .form_background .form-image {
    display: none;
  }
}

.form {
  width: 50%;
}
@media (max-width: 767px) {
  .form {
    width: 100%;
  }
}
.form_text {
  display: flex;
  flex-direction: column;
}
.form_text input {
  margin: 5px 0 25px 0;
  padding: 18px 30px;
  border-radius: 14px;
}
.form_text textarea {
  height: 200px;
  border-radius: 14px;
  padding: 18px 30px;
  margin-bottom: 24px;
  border: 2px solid #191a23;
}

footer {
  margin-top: 100px;
  background-color: #191a23;
  border-radius: 47px 47px 0 0;
  padding: 55px 60px 50px 60px;
}
footer .copyright {
  display: flex;
  gap: 40px;
  color: white;
}
@media (max-width: 767px) {
  footer .copyright {
    flex-direction: column;
    text-align: center;
  }
}
footer .copyright a {
  color: white;
}

.social {
  margin: 0 5px;
}

.contactusfooter {
  max-width: 30%;
}
@media (max-width: 767px) {
  .contactusfooter {
    text-align: center;
    max-width: 100%;
  }
}
.contactusfooter h4 {
  display: inline;
  border-radius: 5px;
  background-color: #439775;
}
@media (max-width: 767px) {
  .contactusfooter h4 {
    font-size: 18px;
  }
}
.contactusfooter p {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .contactusfooter p {
    font-size: 16px;
  }
}

.footer_mid {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .footer_mid {
    flex-direction: column;
  }
}
.footer_mid input {
  border-radius: 14px;
  border: 1px solid #f3f3f3;
  background-color: #292a32;
  color: white;
  padding-left: 35px;
}
@media (max-width: 767px) {
  .footer_mid input {
    padding: 10px 0;
    padding-left: 35px;
  }
}

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