@font-face {
  font-family: "Montserrat-Regular";
  src: url("../../fonts/Montserrat/Montserrat-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../../fonts/Montserrat/Montserrat-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../../fonts/Montserrat/Montserrat-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../../fonts/Montserrat/Montserrat-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("../../fonts/Montserrat/Montserrat-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-Black";
  src: url("../../fonts/Montserrat/Montserrat-Black.otf") format("opentype");
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../../fonts/Inter/Inter-Medium.woff2") format("opentype");
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../../fonts/Inter/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../../fonts/Inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../../fonts/Inter/Inter-Bold.woff2") format("woff2");
}
.to-hide {
  display: none !important;
}

.td-fade-in {
  /*used to said if the element need to be checked */
  opacity: 0;
}

.td-fade-in-active {
  -webkit-transition: 3s opacity ease;
  transition: 3s opacity ease;
  opacity: 1 !important;
}

.td-fade-up {
  opacity: 0;
}

.td-fade-up-active {
  -webkit-animation: fade-up 1s ease;
          animation: fade-up 1s ease;
  opacity: 1;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.td-fade-bottom {
  opacity: 0;
}

.td-fade-bottom-active {
  -webkit-animation: fade-bottom 1s ease;
          animation: fade-bottom 1s ease;
  opacity: 1;
}

@-webkit-keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.td-fade-left {
  opacity: 0;
}

.td-fade-left-active {
  -webkit-animation: fade-left 1s ease;
          animation: fade-left 1s ease;
  opacity: 1;
}

@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.td-fade-right {
  opacity: 0;
}

.td-fade-right-active {
  -webkit-animation: fade-right 1s ease;
          animation: fade-right 1s ease;
  opacity: 1;
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.mouse {
  height: 82px;
  width: 45px;
  border: 3px solid #12130F;
  border-radius: 32px;
  position: absolute;
  bottom: 50px;
}
.mouse .scrollWheel {
  height: 30px;
  width: 2px;
  background: #12130F;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10px;
  border-radius: 1px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scroll 2s linear infinite;
          animation: scroll 2s linear infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  26% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  26% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
section {
  margin: 100px 0;
  padding: 50px 160px;
}
@media screen and (max-width: 1500px) {
  section {
    padding: 50px 35px !important;
  }
}

span.span-color-secondary {
  color: #ACD2ED;
}

.title {
  margin: 0;
  font-family: "Inter-SemiBold";
  letter-spacing: 2px;
  font-size: 7rem;
  color: #12130F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 3rem !important;
  }
}

.subtitle {
  font-family: "Inter-Regular";
  font-size: 1.5rem;
  color: #12130F;
  margin-bottom: 150px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 15px !important;
    margin-bottom: 50px !important;
  }
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: #efeff0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10000;
}

.three-body {
  display: inline;
  height: 35px;
  width: 35px;
  -webkit-animation: spin78236 2s infinite linear;
          animation: spin78236 2s infinite linear;
}

.three-body__dot {
  position: absolute;
  height: 100%;
  width: 30%;
}
.three-body__dot:after {
  content: "";
  position: absolute;
  height: 0%;
  width: 100%;
  padding-bottom: 100%;
  background-color: #ACD2ED;
  border-radius: 50%;
}
.three-body__dot:nth-child(1) {
  bottom: 5%;
  left: 0;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-transform-origin: 50% 85%;
          transform-origin: 50% 85%;
}
.three-body__dot:nth-child(1)::after {
  bottom: 0;
  left: 0;
  -webkit-animation: wobble1 0.8s infinite ease-in-out;
          animation: wobble1 0.8s infinite ease-in-out;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}
.three-body__dot:nth-child(2) {
  bottom: 5%;
  right: 0;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  -webkit-transform-origin: 50% 85%;
          transform-origin: 50% 85%;
}
.three-body__dot:nth-child(2)::after {
  bottom: 0;
  left: 0;
  -webkit-animation: wobble1 0.8s infinite -0.12s ease-in-out;
          animation: wobble1 0.8s infinite -0.12s ease-in-out;
}
.three-body__dot:nth-child(3) {
  bottom: -5%;
  left: 0;
  -webkit-transform: translateX(116.666%);
          transform: translateX(116.666%);
}
.three-body__dot:nth-child(3)::after {
  top: 0;
  left: 0;
  -webkit-animation: wobble2 0.8s infinite ease-in-out;
          animation: wobble2 0.8s infinite ease-in-out;
}

@-webkit-keyframes spin78236 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin78236 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes wobble1 {
  0%, 100% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-66%) scale(0.65);
            transform: translateY(-66%) scale(0.65);
    opacity: 0.8;
  }
}
@keyframes wobble1 {
  0%, 100% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-66%) scale(0.65);
            transform: translateY(-66%) scale(0.65);
    opacity: 0.8;
  }
}
@-webkit-keyframes wobble2 {
  0%, 100% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(66%) scale(0.65);
            transform: translateY(66%) scale(0.65);
    opacity: 0.8;
  }
}
@keyframes wobble2 {
  0%, 100% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(66%) scale(0.65);
            transform: translateY(66%) scale(0.65);
    opacity: 0.8;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background: #efeff0;
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

.main-title-container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0px;
  padding: 0px;
}
.main-title-container .main-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-title-container .main-subtitle {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .whoami-container .whoami-image-container {
    height: 500px !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.whoami-container .whoami-title {
  letter-spacing: 2px;
  font-family: "Inter-SemiBold";
  font-size: 7rem;
  color: #12130F;
}
.whoami-container .whoami-image-mosaic-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 50px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  max-width: 540px;
  margin: 0px;
  -ms-grid-rows: 200px 50px 200px 50px 200px;
  grid-template-rows: 200px 200px 200px;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(16) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(17) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}
.whoami-container .whoami-image-mosaic-container > *:nth-child(18) {
  -ms-grid-row: 5;
  -ms-grid-column: 11;
}
@media screen and (max-width: 1024px) {
  .whoami-container .whoami-image-mosaic-container {
    -ms-grid-rows: 125px 125px 125px;
    grid-template-rows: 125px 125px 125px;
  }
}
@media screen and (max-width: 767px) {
  .whoami-container .whoami-image-mosaic-container {
    row-gap: 25px;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
.whoami-container .whoami-mosaic-item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.whoami-container .whoami-mosaic-item:nth-child(1) {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.whoami-container .whoami-mosaic-item:nth-child(2),
.whoami-container .whoami-mosaic-item:nth-child(3) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.whoami-container .whoami-mosaic-item:nth-child(4) {
  -ms-grid-column-span: 6;
  grid-column: span 6;
}
@media screen and (max-width: 650px) {
  .whoami-container .container {
    display: block;
  }
  .whoami-container .whoami-mosaic-item {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .whoami-container .whoami-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.whoami-container .whoami-content-container .whoami-me-img {
  width: 60%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
@media screen and (max-width: 1500px) {
  .whoami-container .whoami-content-container .whoami-me-img {
    width: 80%;
  }
}
.whoami-container .whoami-content-container .whoami-content {
  height: 100%;
}
.whoami-container .whoami-content-container .whoami-content-text {
  font-family: "Inter-Regular";
  font-size: 1.5rem;
  color: #12130F;
  text-align: justify;
  width: 60%;
}
@media screen and (max-width: 1500px) {
  .whoami-container .whoami-content-container .whoami-content-text {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .whoami-container .whoami-content-container .whoami-content-text {
    width: 100%;
    font-size: 1rem;
  }
}

.all-projects-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.all-reviews-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .all-reviews-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #12130F;
  font-family: "Inter-Regular";
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 100px 0;
}
footer p {
  margin: 5px 0;
}

nav.navigation-main-container {
  position: fixed;
  top: 0px;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-bottom: solid 1px #e4e6e8;
  width: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  nav.navigation-main-container {
    right: 0;
    width: 100%;
    display: none;
  }
}
nav.navigation-main-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  nav.navigation-main-container ul {
    margin: 0;
    padding: 0;
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
nav.navigation-main-container ul li {
  list-style-type: none;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  nav.navigation-main-container ul li {
    margin: 0;
  }
}
nav.navigation-main-container ul li a {
  font-family: "Montserrat-Medium";
  font-size: 20px;
  text-decoration: none;
  color: #12130F;
}
@media screen and (max-width: 767px) {
  nav.navigation-main-container ul li a {
    font-size: 14px;
  }
}

.navigation-main-container.mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  padding: 20px 0px;
  background: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(9px);
  border-bottom: solid 1px #e4e6e8;
}
@media screen and (min-width: 767px) {
  .navigation-main-container.mobile-nav {
    display: none;
  }
}
.navigation-main-container.mobile-nav ul {
  width: 100%;
}
.navigation-main-container.mobile-nav ul .navigation-link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation-main-container.mobile-nav ul .navigation-link-container a img {
  width: 30px;
  height: 30px;
}
.navigation-main-container.mobile-nav ul .navigation-link-container a span {
  font-size: 13px;
}

nav.reseaux-container {
  position: fixed;
  bottom: 20px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  nav.reseaux-container {
    display: none;
  }
}
nav.reseaux-container a {
  width: 50px;
  height: 50px;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  nav.reseaux-container a {
    width: 30px;
    height: 30px;
    margin: 10px 0;
  }
}
nav.reseaux-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-nav-reseaux {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 30px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 767px) {
  .mobile-nav-reseaux {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mobile-nav-reseaux a {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .mobile-nav-reseaux a {
    width: 30px;
    height: 30px;
    margin: 10px 0;
  }
}
.mobile-nav-reseaux img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.upper-main-div {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: absolute;
  z-index: 120;
  background: #efeff0;
}
@media screen and (max-width: 767px) {
  .upper-main-div {
    display: none;
  }
}
.upper-main-div img {
  width: 100px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.two-col-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.two-col-box .two-col-box-side {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .two-col-box .two-col-box-side {
    width: 100%;
  }
}

.project-card {
  width: 450px;
  margin: 50px 10px;
}
.project-card:hover {
  cursor: pointer;
}
.project-card:hover .project-card-description {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  background: rgba(0, 0, 0, 0.757) !important;
  opacity: 1 !important;
  overflow-y: scroll !important;
}
@media screen and (max-width: 767px) {
  .project-card {
    width: 300px;
  }
}
.project-card .project-card-categorie {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.379);
  color: white;
  border-radius: 10px;
  font-family: "Montserrat-Medium";
  margin: 0px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-categorie {
    font-size: 12px;
  }
}
.project-card .project-card-image-container {
  height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: transparent;
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-image-container {
    height: 300px;
  }
}
.project-card .project-card-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-image-container img {
    padding: 60px;
  }
}
.project-card .project-card-image-container .project-card-description {
  position: absolute;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  top: 0;
  padding: 60px;
  font-family: "Montserrat-Medium";
  color: #E1E5EE;
  margin: 0;
  overflow-y: hidden;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-image-container .project-card-description {
    padding: 40px 20px;
  }
}
.project-card .project-card-content-container .project-card-title {
  font-family: "Montserrat-SemiBold";
  font-size: 25px;
  margin-top: 15px;
  color: #12130F;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-content-container .project-card-title {
    font-size: 20px;
    line-height: 20px;
  }
}
.project-card .project-card-content-container .project-card-title span {
  font-size: 35px;
  margin-left: 5px;
}
.project-card .project-card-content-container .project-card-subtitle {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  color: #12130F;
}
.project-card .project-card-content-container .project-card-text {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  color: #12130F;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-content-container .project-card-text {
    font-size: 13px;
  }
}
.project-card .project-card-link-container a {
  font-family: "Montserrat-SemiBold";
  font-size: 15px;
  color: #12130F;
  text-decoration: none;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .project-card .project-card-link-container a {
    font-size: 12px;
  }
}

.review-card {
  width: 450px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 60px 40px;
  background-color: white;
  border-radius: 10px;
  margin: 50px 0px;
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
@media screen and (max-width: 767px) {
  .review-card {
    padding: 20px 30px;
  }
}
.review-card .review-card-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .review-card .review-card-info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
.review-card .review-card-info-people-name {
  font-family: "Montserrat-SemiBold";
  font-size: 24px;
  color: #12130F;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .review-card .review-card-info-people-name {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
}
.review-card .review-card-text {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  color: #12130F;
  margin: 0;
  height: 335px;
  overflow-y: scroll;
  line-height: 25px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .review-card .review-card-text {
    height: 200px;
  }
}
.review-card .review-card-text span {
  font-family: "Montserrat-Regular";
  font-size: 35px;
  color: black;
}
.review-card .review-card-info-people-work {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  color: #12130F;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .review-card .review-card-info-people-work {
    font-size: 13px;
  }
}
.review-card img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: solid 1px black;
}

.contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 20px;
  width: 60rem;
  height: 40rem;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .contact-form-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.contact-form-container img {
  width: 30%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}
@media screen and (max-width: 767px) {
  .contact-form-container img {
    width: 100%;
    height: 100px;
    border-radius: 20px 20px 20px 20px;
    margin-bottom: 10px;
  }
}
.contact-form-container .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  padding: 50px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .contact-form-container .contact-form {
    padding: 0px;
    width: 100%;
  }
}
.contact-form-container .contact-form input {
  width: 100%;
  height: 3rem;
  border: none;
  outline: none;
  border-bottom: 1px solid #12130F;
  margin: 1.5rem 0;
  padding-left: 1rem;
  font-family: "Montserrat-Regular";
  font-size: 17px;
  color: #12130F;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .contact-form-container .contact-form input {
    font-size: 13px;
    margin: 10px 0;
    height: 2rem;
    background-color: transparent;
    padding-left: 0px;
  }
}
.contact-form-container .contact-form .submit-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  background: transparent;
  border: none;
  outline: none;
  font-size: 20px;
  margin-top: 20px;
}
.contact-form-container .contact-form .submit-button:hover {
  cursor: pointer;
}
.contact-form-container .contact-form .submit-button span {
  color: #ACD2ED;
  font-family: "Montserrat-SemiBold";
  font-size: 35px;
  margin-left: 5px;
}
.contact-form-container .contact-form textarea {
  letter-spacing: 2px;
  outline: none;
  border: solid black 1px;
  border-radius: 10px;
  font-family: "Montserrat-Regular";
  font-size: 1rem;
  padding: 10px;
  width: 100% !important;
  height: 200px !important;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .contact-form-container .contact-form textarea {
    font-size: 13px;
    margin-top: 30px;
    height: 150px;
    background-color: transparent;
  }
}