@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #EAEAEA;
}

.main-container {
  width: 100%;
  max-width: 1500px;
  min-width: 320px;
}

a {
  text-decoration: none;
}

* {
  font-family: "Roboto", sans-serif;
}

.main-title {
  font-size: 72px;
  font-weight: 600;
  color: #FF9911;
  letter-spacing: 6px;
}
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }
}

.main-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #FF9911;
}
@media screen and (max-width: 768px) {
  .main-subtitle {
    font-size: 22px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #241E20;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
}

.card-title {
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .card-title {
    font-size: 18px;
  }
}

.service__title {
  font-size: 32px;
  font-weight: 600;
  color: #FF9911;
  margin: 8px 0;
}
@media screen and (max-width: 1024px) {
  .service__title {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #8091A2;
}

header {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #241E20;
  padding: 0 48px;
  border-bottom: 1px solid #FF9911;
}
header .header__logo img {
  width: 46px;
  height: 65px;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  header .nav__desktop {
    display: none;
  }
}
header .nav__desktop .nav__links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  margin: 40px 0 8px 0;
}
header .nav__desktop .nav__links li {
  padding: 0 12px 4px 8px;
  transition: all 200ms ease-in-out;
}
header .nav__desktop .nav__links li:hover {
  border-bottom: 2px solid #FF9911;
}
header .nav__deroulant-mobile {
  width: 70px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  header .nav__deroulant-mobile {
    display: none;
  }
}
header .nav__deroulant-mobile .nav__menu {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  gap: 8px;
  color: #FF9911;
  cursor: pointer;
}
header .nav__deroulant-mobile .nav__links {
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
  transform: scale(0);
  transform-origin: top center;
  transition: all 300ms ease-in-out;
}
header .nav__deroulant-mobile .nav__links li {
  margin: 0;
  list-style-type: none;
  font-size: 14px;
  background: #241E20;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transform-origin: top center;
  transition: all 300ms ease-in-out;
}
header .nav__deroulant-mobile .nav__links li:last-child {
  border-bottom: 0;
}
header .nav__deroulant-mobile .nav__links li:hover {
  background: #403539;
}
header .nav__deroulant-mobile.open .nav__links li {
  transform: scale(1);
}
header .nav__deroulant-mobile.open .nav__links {
  transform: scale(1);
}
header a {
  color: #FF9911;
}

footer {
  filter: none;
  width: 100%;
  background-color: #241E20;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  footer {
    height: 100px;
  }
}
footer .footer__logolinks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
}
@media screen and (max-width: 768px) {
  footer .footer__logolinks {
    padding: 0;
  }
}
footer .footer__logo {
  width: 46px;
  height: 65px;
}
footer .footer__links__social {
  display: flex;
  padding-left: 0;
}
footer .footer__links__social li {
  list-style-type: none;
  padding: 6px;
}
footer .footer__links__social i {
  font-size: 32px;
  color: #8091A2;
  -webkit-background-clip: text;
  background-clip: text;
}
footer .footer__links__social i:hover {
  color: #FF9911;
}
footer .legal {
  color: #8091A2;
}
footer .legal:hover {
  color: #FF9911;
  cursor: pointer;
}
footer .fa-angles-up {
  color: #8091A2;
  position: fixed;
  right: 20px;
  bottom: 24px;
}
footer .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
footer .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eaeaea;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
footer .modal-content p {
  font-size: 15px;
  font-weight: 500;
}
footer .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.btn {
  display: inline-block;
  width: 186px;
  height: 50px;
  color: #241E20;
  background-color: #FF9911;
  border-radius: 25px;
  font-size: 14px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 16px 12px;
}
.btn:hover {
  background-color: #ffaf44;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.4);
}

.card {
  background: linear-gradient(0deg, #FF9911, #241E20);
  border-radius: 25px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  color: #EAEAEA;
}

.card-equipe {
  background-color: white;
  border-radius: 20px;
  padding: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}
.card-equipe img {
  object-fit: cover;
}
.card-equipe .card__title {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 4px 0;
}
.card-equipe .card__subtitle {
  font-size: 16px;
  font-weight: 500;
  margin: 4px 0 6px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #EAEAEA;
}
.card-equipe p {
  margin-top: 0;
  font-size: 15px;
}

.form {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: auto;
  color: black;
  width: 75%;
}
.form__identity {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .form__identity {
    flex-direction: column;
    gap: 0;
  }
}
.form__identity .form__nom {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form input:not(.btn), .form textarea {
  padding: 15px;
  border-radius: 3px;
  border: none;
  background-color: #EAEAEA;
  margin-bottom: 20px;
}
.form input:not(.btn):focus, .form textarea:focus {
  background-color: rgba(255, 153, 17, 0.15);
  outline: #FF9911;
}
.form label {
  margin-bottom: 8px;
  text-align: left;
}
.form__btn {
  width: 100%;
  border: none;
  margin-top: 20px;
}
.form .confirmation-message {
  padding-top: 15px;
  font-style: italic;
  color: #FF9911;
}
@media screen and (max-width: 768px) {
  .form .confirmation-message {
    padding-top: 10px;
    font-size: 12px;
  }
}

.main-section {
  width: 100%;
  height: 900px;
  text-align: center;
  background-image: url(../images/images-bg/FB_Couverture_Compressé.webp);
  padding-top: 120px;
  background-size: cover;
}
.main-section__title {
  text-shadow: 1px 4px 4px black;
}
.main-section__btn {
  margin: 80px 0;
  display: flex;
  justify-content: center;
}
.main-section__btn .btn {
  margin: 56px;
}
@media screen and (max-width: 768px) {
  .main-section__btn .btn {
    margin: 12px;
  }
}

.main-title {
  margin: auto;
  padding-top: 80px;
  padding-bottom: 16px;
}

.software-section {
  width: 100%;
  height: 900px;
  background-color: white;
  padding-top: 120px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .software-section {
    height: auto;
  }
}
.software-section__title {
  padding: 0 200px;
}
@media screen and (max-width: 768px) {
  .software-section__title {
    padding: 0 32px;
  }
}
.software-section .cards-ctn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 80px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .software-section .cards-ctn {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .software-section .cards-ctn {
    flex-direction: column;
    align-items: center;
  }
}
.software-section .cards-ctn .card {
  width: 25%;
  height: 300px;
  padding: 12px;
  margin: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .software-section .cards-ctn .card {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .software-section .cards-ctn .card {
    width: 75%;
  }
}
.software-section .cards-ctn .card .card-title {
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .software-section .cards-ctn .card .card-title {
    margin-bottom: 0;
  }
}
.software-section .cards-ctn .card .card__list {
  text-align: start;
  padding-left: 20px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .software-section .cards-ctn .card .card__list {
    margin-top: 0;
  }
}
.software-section .section-title {
  margin-bottom: 80px;
}

.services-section {
  width: 100%;
  height: auto;
  background-image: url(../images/images-bg/Fond_ServicePage.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 20px 80px 20px;
  text-align: center;
}
.services-section__ctn {
  background-color: rgba(36, 30, 32, 0.3);
  width: 70%;
  margin: auto;
  padding: 48px 16px;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .services-section__ctn {
    width: 100%;
  }
}
.services-section__ctn-title .section-title {
  color: #FF9911;
}
.services-section__ctn p {
  color: #EAEAEA;
  text-align: justify;
}
.services-section__services-ctn {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.services-section .service {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.services-section .service i {
  color: #FF9911;
  font-size: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .services-section .service i {
    display: none;
  }
}
.services-section .service__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
}
@media screen and (max-width: 1024px) {
  .services-section .service__txt {
    padding: 8px 0;
    align-items: center;
  }
}

.equipe-section {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 100px 20px 80px 20px;
  text-align: center;
}
.equipe-section__card-ctn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 120px;
  padding: 0 48px;
}
@media screen and (max-width: 768px) {
  .equipe-section__card-ctn {
    flex-direction: column;
    padding: 0;
  }
}
.equipe-section__card-ctn .card-equipe {
  display: flex;
  margin-bottom: 48px;
  flex-direction: column;
  width: 32%;
  height: 570px;
}
@media screen and (max-width: 1024px) {
  .equipe-section__card-ctn .card-equipe {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .equipe-section__card-ctn .card-equipe {
    width: 95%;
  }
}
.equipe-section__card-ctn .card-equipe img {
  width: 100%;
  height: 70%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}
.equipe-section__card-ctn .card-equipe .card__content {
  height: 30%;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-sizing: border-box;
}

.realisations-section {
  width: 100%;
  height: 100%;
  background-image: url(../images/images-bg/Fond_LandPage.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 20px 80px 20px;
  text-align: center;
  position: relative;
}
.realisations-section .section-title {
  color: #FF9911;
  font-weight: 400;
  text-shadow: 1px 2px 4px black;
}
.realisations-section .container {
  position: relative;
  height: auto;
  width: 100%;
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .realisations-section .container {
    flex-direction: column;
    align-items: center;
  }
}

.realisations__card {
  display: flex;
  align-items: center;
  text-align: left;
  padding-top: 32px;
  height: 350px;
  width: 200px;
  color: #EAEAEA;
  background-color: #241E20;
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  margin-left: -50px;
  margin-bottom: 24px;
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .realisations__card {
    height: 150px;
    width: 200px;
    margin-left: 0;
    margin-top: -50px;
  }
}
.realisations__card:not(:first-child) {
  margin-left: -50px;
}
@media screen and (max-width: 768px) {
  .realisations__card:not(:first-child) {
    margin-left: 0;
  }
}
.realisations__card:hover {
  transform: translateY(-20px);
  transition: 0.4s ease-out;
}
.realisations__card:hover ~ .realisations__card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}
.realisations__card ul {
  font-size: 12px;
  list-style-type: none;
  padding-left: 24px;
  padding-right: 8px;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .realisations__card ul {
    display: none;
  }
}
.realisations__card .r-card__title {
  color: #EAEAEA;
  margin-top: 8px;
  font-weight: 300;
  position: absolute;
  left: 20px;
  top: 15px;
}
.realisations__card .bar {
  position: absolute;
  top: 100px;
  left: 20px;
  height: 5px;
  width: 150px;
}
@media screen and (max-width: 768px) {
  .realisations__card .bar {
    width: 100px;
    top: 120px;
  }
}
.realisations__card .emptybar {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}
.realisations__card .filledbar {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 0px;
  height: 100%;
  background: #241E20;
  background: linear-gradient(90deg, #241E20 0%, #FF9911 75%, #FF9911 100%);
  transition: 0.6s ease-out;
}
.realisations__card:hover .filledbar {
  width: 120px;
  transition: 0.4s ease-out;
}

.form-section {
  width: 100%;
  text-align: center;
  background-color: white;
  padding: 120px 40px 20px 40px;
}
.form-section .form__ctn {
  margin: auto;
}
.form-section .section-title {
  font-weight: 400;
}
.form-section .section-title p {
  padding: 40px;
}

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