@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');


:root {
  --jaune: #FFBB00;
  --fonce: #242433;
  --blanc: #FFFFFF;
  --noir: #000000;
  --max-width: 1200px;
}

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

html,
body {
  scroll-behavior: smooth;
}


body {

  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;

}



.navbar {
  transition: transform 0.8s, opacity 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--blanc);
  height: 60px;
  width: 100%;
  box-shadow: 0px 0.25rem 0.25rem 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000;
}



.logo img {
  width: 100px;
  margin-top: 50px;
  z-index: 3;
}

.navbar .btnmenumob {
  display: none;
}


.navbar .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;

}

.navbar .menu a {
  font-size: 1.4rem;
  color: var(--fonce);
  font-weight: 400;
  text-decoration: none;
  padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.navbar .menu a:hover {
  color: var(--jaune);
  font-weight: 600;

}

.navbar .menu a span {
  color: var(--jaune);
  font-weight: 600;
}



.header {
  background-image: url("../img/header.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: sticky;
  /* z-index: -1; */
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

}

.header__container {
  padding-block: 10rem 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.header__container p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blanc);
  text-align: center;
  text-shadow: 2px 2px 9px #000000;

}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--blanc);
  text-align: center;
  text-shadow: 2px 2px 9px #000000;
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  transition: all 0.7s;
  z-index: 9999;
}

.header__nav_mob {
  display: none;

}

.header__nav a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blanc);
  text-decoration: none;
  padding: 0.4rem 0.4rem;
  margin: 0 0.7rem;
  transition: all 0.3s;
  z-index: 999999;
  position: relative;
}

.header__nav a span {
  color: var(--jaune);
}


.header__nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--jaune);
  transition: all 0.3s;
}

.header__nav a:hover::after {
  width: 100%;
  left: 0;
}

.header__container img {
  max-width: 300px;
  text-align: center;
}

.header__container h1 span {
  color: var(--jaune);
  text-shadow: 2px 2px 9px #000000;
}

.header__container p span {
  color: var(--jaune);
  text-shadow: 2px 2px 9px #000000;
}


.barre_sous_h {
  width: 100%;
  height: 10px;
  background-color: var(--jaune);
  box-shadow: 0px 0.25rem 0.25rem 0px rgba(0, 0, 0, 0.25);

}



.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--jaune);
  background-color: var(--fonce);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--jaune);
  color: var(--blanc);
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--fonce);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 2rem;
  background-color: var(--jaune);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--fonce);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--fonce);
  font-size: 1.2rem;
}

.section__description span {
  font-weight: 700;
}

.about__container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.about__image img {
  max-width: 400px;
  width: 100%;
  margin: auto;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.section__service {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--fonce);
  padding-top: 1rem;
  padding-bottom: 2rem;
  box-shadow:
    inset 0px -15px 8px -10px rgba(0, 0, 0, 0.9);
}

.margin5rem {
  margin-bottom: 5rem;

}

.titre_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--fonce);
  box-shadow: inset 0px 11px 8px -10px rgba(0, 0, 0, 0.8),

}

.titre_center :is(.section__subheader, .section__header) {

  color: var(--blanc);
}


.contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--blanc);

}

.contact__box :is(.section__subheader, .section__header) {

  color: var(--fonce);
}

.contact_phone {
  font-weight: 700;
  font-size: 2rem;
  color: var(--jaune);
  text-decoration: none;
}

.Service-Box {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 430px;
  height: 430px;
  margin: 0.5rem;
  margin-top: 0;
  box-shadow: 1px 1px 5px 0px #23243456;
  background-color: white;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 15px;
}

.Service-Box:hover {
  background-color: var(--jaune);
}

.Service-Box:hover .Design-Number {
  color: var(--blanc);
}

.Service-Box:hover .Design-Logo {
  background-color: var(--blanc);
}

.Service-Box:hover .Service-Box-Title {
  color: var(--blanc);

}


.Service-Box-Design {
  display: flex;
  flex-direction: row;
  position: relative;
}

.Design-Logo {
  width: 8rem;
  height: 6rem;
  border-bottom-right-radius: 100%;
  background: #FFBB00;
}

.Icon-Simulation {
  position: relative;
  width: 3rem;
  height: auto;
  margin-left: 0.6vw;
  margin-top: 0.6vw;
  fill: #232434;
}

.Icon-Bank {
  position: relative;
  height: auto;
  width: 3rem;
  margin-left: 0.3vw;
  margin-top: 0.8vw;
  fill: #232434
}

.Icon-Investir {
  position: relative;
  height: auto;
  width: 3rem;
  margin-left: 0.9vw;
  margin-top: 0.6vw;
  fill: #232434
}

.Design-Number {
  width: 100%;
  margin-right: 1rem;
  height: auto;
  line-height: 90%;
  color: #FFBB00;
  font-size: 5rem;
  font-weight: 700;
  text-align: right;
  opacity: 30%;
}

.Service-Box-Title {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: left;
  margin-top: 1vw;
  margin-left: 2vw;
  margin-right: 2vw;
  color: #232434;
}

.Service-Box-Text {
  font-weight: 300;
  font-size: 1.2rem;
  text-align: left;
  margin: 1rem;
  color: #232434;
}



.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

.heading {
  text-align: center;
}

.heading h2 {
  font-size: 37px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.heading h2 span {
  color: #D88A8A;
}

.heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-5,
.col-md-7 {
  padding: 0 15px;
}

.col-md-5 {
  width: 41.6667%;
}

.col-md-7 {
  width: 100%;
}

.col-sm-6 {
  width: 50%;
  padding: 0 15px;
}

.col-sm-12 {
  width: 100%;
  padding: 0 15px;
}

.form-control {
  padding: 20px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border: 0;
  border-radius: 10px;
  display: block;
  width: 100%;
  border: 1px solid #DCDCDC;

}


.form-group {
  margin-bottom: 10px;
}

.contact {
  margin-bottom: 5rem;
}



.mentions_legales {
  max-width: 1000px;
  margin: 0 auto;
}

.mentions_legales h2 {
  margin: 30px 5px;
}

.mentions_legales h3 {
  margin: 5px;
}

.mentions_legales p {
  margin: 10px;
}

.mentions_legales .strong {
  font-weight: bold;
}

.mentions_legales a {
  text-decoration: none;
  font-weight: bold;
  color: #000000;
  font-style: italic;
}

.mentions_legales a:hover {
  opacity: 0.7;
}

.mentions_legales h4 {
  text-align: center;
  margin-top: 50px;
}



.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  padding: 20px 0;
  background-color: var(--fonce);
  color: #FFF;
  box-shadow: inset 0px 11px 8px -10px rgba(0, 0, 0, 10);

}

.footer h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}

.footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
}

.footer ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.5s ease;

}

.footer ul a:hover {
  opacity: 1;
  color: var(--jaune);
}

.footer .item.social {
  text-align: right;
}


.footer .copyright {
  font-size: 13px;
  margin-top: 0.3rem;
}


.fin_footer {
  text-align: center;

}


.fin_footer .bxl-facebook {
  color: #FFFFFF;
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 32px;

}


.fin_footer .bxl-linkedin {
  color: #FFFFFF;
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 32px;

}

.fin_footer .bxl-linkedin:hover {
  opacity: 1;
  color: #0077B5;
}

.fin_footer .bxl-whatsapp {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 32px;
  transition: all 0.3s ease;

}

.fin_footer .bxl-whatsapp:hover {
  opacity: 1;
  color: #25D366;
}

.fin_footer .bxl-instagram {
  color: #FFFFFF;
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 32px;

}

.fin_footer .bxl-instagram:hover {
  opacity: 1;
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
}


.fin_footer .bxl-facebook:hover {
  opacity: 1;
  color: #1877f2;

}





.logo_footer {
  width: 100%;
  max-width: 150px;
}

.conteneur_footer:after {
  content: "";
  display: table;
  clear: both;
}

.colonne_footer {
  float: left;
  width: 33.33%;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;

}

.colonne_footer img {
  width: 150px;
}


.affichage_menu_mob {
  z-index: 999;
  background-color: var(--fonce);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.menumob {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.menumob a {
  font-size: calc(2rem + 1vw);
  font-weight: 600;
  color: var(--blanc);
  text-decoration: none;
  padding: 0.7rem 0.7rem;

}



@media (max-width:767px) {
  .footer .item {
    text-align: center;
    padding-bottom: 20px;
  }
}


@media (max-width: 768px) {
  .footer .item.social {
    text-align: center;
  }
}


.footer .item.social>a:hover {
  opacity: 0.9;
}

@media (max-width:991px) {
  .footer .item.social>a {
    margin-top: 40px;
  }
}

@media (max-width:767px) {
  .footer .item.social>a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 780px) {
  .footer {
    flex-direction: row wrap;
  }
}

@media screen and (max-width: 780px) {
  .colonne_footer {
    width: 100%;
    float: none;
    text-align: center;

  }
}

@media screen and (max-width: 695px) {

  .header__nav {
    display: none;
  }

  .header__nav_mob {
    display: flex;
    color: var(--blanc);
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    transition: all 0.7s;
    z-index: 9999;
  }


}

@media screen and (max-width: 670px) {
  .about__container {
    flex-direction: column;
  }

  .about__btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section__subheader {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section__subheader::after {
    display: none;
  }

  .section__header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

}

@media screen and (max-width: 380px) {

  .Service-Box-Title {
    font-size: 2rem;
  }

}

@media screen and (max-width: 650px) {
  .navbar .menu {
    display: none;
  }

  .navbar .btnmenumob {
    display: flex;
    color: var(--jaune);
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    transition: all 0.7s;
    z-index: 9999;
  }
}