
/*=============================================================
                               FONTS
===============================================================*/

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



/*=============================================================
                               VARIABLES
===============================================================*/

:root {
  --font-size:1.8rem;
  --color1: #FCBF04;
  --color2:#E2E6EA;
  --color3: #262626;
  --color4: #383838;
  --bleu1: #82D4C2;
  --bleu2: #00A79D;
  --orange1:#F4B183;
  --vert1: #A9D18E;

}

/* Classes de couleurs */

.bleu1 {
  color:var(--bleu1);
}

.orange1 {
  color:var(--orange1);
}

.vert1 {
  color:var(--vert1);
}




/*=============================================================
                               TOOLS
===============================================================*/

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

html {
  font-size: 62.5%;
  height:100%;
}

body {
  margin: 0;
  height:100%;
  font-size:var(--font-size);
  font-family: 'Open Sans', sans-serif !important;
  overflow-x:hidden;
}

img {
  width:100%;
}

a {
  text-decoration: none;
}

ul {
padding-left: 0;
list-style: none;
margin:0;
}


/*=============================================================
                               GLOBAL
===============================================================*/

p,h1, h2, h3, h4 {
  color:white;
}

p {
  font-weight: 300;
  margin-bottom:5rem;
}

.bold {
  font-weight: 600;
}

section {
  padding-left:1rem;
  padding-right:1rem;
}

section h3, section h5{
  text-align:center;
}


/* H1 */
h1 {
  font-weight:400;
  font-size:3rem;
}

@media screen and (min-width:992px) {
  h1 {
    font-size:5rem;
  }

 }

/* H2 */
h2 {
  font-weight:300;
  font-size:3rem;
}

/* @media screen and (min-width:992px) {
  h2 {
    font-size:5rem;
  }
 } */

 
/* H3 */
h3 {
  font-weight:400;
  font-size:2.5rem;
  margin-bottom:3rem;
}

@media screen and (min-width:992px) {
  h3 {
    font-size:2.8rem;
  }
 }


 /* H4 */
h4 {
  font-weight:400;
  font-size:3rem;
}

/* @media screen and (min-width:992px) {
  h4 {
    font-size:5rem;
  }
 } */

  /* H5 */
h5 {
  font-weight:400;
  font-size:2.5rem;
}

/* h6 */

 h6 {
  font-weight:300;
  font-size:2.5rem;
}



 /* Lignes verticales */

@media screen and (min-width:992px) {
  .vertical-line{
    border-left: 10px solid;
    display: inline-block;
    height: 45px;
    margin-bottom:-10px;
  }

}

 /* Lignes horizontale */


 @media screen and (min-width:992px) {
  .horizontal-line, .horizontal-line2{
    display: inline-block;
    height: 8px;
    margin-bottom:10px;

  }

}

@media screen and (min-width:992px) {
  .ligne-after-bleu1 {
    display:flex;
  }
  
  .ligne-after-bleu1::after {
    content: "";
    display: block;
    border-top: 5px solid var(--bleu1);
    margin: 18px 0 0 25px;
    flex: 1;
  }

  .ligne-before-orange {
    display:flex;
  }
  
  .ligne-before-orange::before {
    content: "";
    display: block;
    border-top: 5px solid var(--orange1);
    margin: 5px 25px 0 0;
    flex: 1;
  }

  .ligne-after-vert {
    display:flex;
  }
  
  .ligne-after-vert::after {
    content: "";
    display: block;
    border-top: 5px solid var(--vert1);
    margin: 18px 0 0 25px;
    flex: 1;
  }

  .ligne-before-jaune {
    display:flex;
  }
  
  .ligne-before-jaune::before {
    content: "";
    display: block;
    border-top: 5px solid var(--color1);
    margin: 5px 25px 0 0;
    flex: 1;
  }
  
}





/* Effet transition surelevé */

.moovup {
  transition: all 0.5s;
}

.moovup:hover {
  transform: translateY(-1.5rem);
}


/* Gestion des videos youtube */

.center-youtube {
  max-width: 60rem;
  max-height: 40rem;
  margin:auto;
}

.center-youtube2 {
  max-width: 60rem;
  max-height: 40rem;
  margin:auto;
}

@media screen and (min-width:992px) {
  .center-youtube2{
    margin-left:23%;

  }
}

@media screen and (min-width:1198px) {
  .center-youtube2{
    margin-left:30%;

  }
}

.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  }
  
  .youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  }
  
  .youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
  }
/*   
  .youtube-player img:hover {
  -webkit-filter: brightness(75%);
  } */
  
  .youtube-player .play {
  height: 100px;
  width: 100px;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  position: absolute;
  background: url('../img/youtube/lectureyt.png') no-repeat;
  cursor: pointer;
  }
  
  .youtube-player:hover .play
  {
    background: url('../img/youtube/lectureythv.png') no-repeat;
  }


/*=============================================================
                               HEADER
===============================================================*/

.parallax {
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/****************/
/* DEBUT NAVBAR */
/****************/

.navbar {
  z-index:2;
}

.nav-link {
  color:var(--color1) !important;
  font-size: 1.5rem; 
  font-weight:300;
  margin:0 1rem 0 1rem !important;
}

@media screen and (min-width:1200px) {
  .nav-link {
    font-size: 2rem; 
  }

  nav .linkedin {
    margin-left:11rem !important;
  }
}

nav .linkedin {
  font-size:5rem;
  padding:0;
  color:var(--color1);
  transition:all .4s;
}

nav .linkedin:hover {
  color:var(--color2);
}

@media screen and (min-width:992px) {
  nav .linkedin {
    margin-left:7rem !important;
    margin-right:5rem !important;
  }

}

.navbar-nav {
  align-items: center;
}

/* Modification menu burger */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(252, 191, 4)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* EFFET BACKGROUND LINK */

.nav-link {
  transition:all .4s;
  border-radius: 3px;
}

.nav-link:hover {
  background-color: rgba(255,255,255, 0.3)

}

/* Changement couleur navbar + fixation top au scroll */

.navbar {
  position: fixed;
  left: 0px;
  width: 100%;
  background-color: var(--color3);
 }

@media screen and (min-width:992px) {
  .navbar {
    background-color: transparent;

   }
}

.navbar.scrolled {
  background-color: var(--color3) !important;
  transition: background-color 200ms linear;
}

/* Drapeau Anglais Francais */

.flag {
  max-width:2.7rem;
  margin:1rem;
  z-index:2;
  position:fixed;
  right:1rem;
}

@media screen and (min-width:992px) {

  .flag {
    max-width:4rem;
    margin:1rem;
    top:1.7rem;

  }
}




/**************/
/* FIN NAVBAR */
/**************/

/* Logo + phrase accroche */

.logo-titre {
  text-align:center;
}

header .logo {
  margin-top:5rem;
  max-width:30rem;
  max-height:30rem;
  margin-bottom:5rem;
  padding:1rem;
}


@media screen and (min-width:992px) {
  header .logo {
    margin-top:20vh;
  }
}







/*=============================================================
                               MAIN
===============================================================*/

/* QUI SOMMES NOUS */

#quinoussommes {
  background-color:var(--color4);
  padding-top:10rem;
  padding-bottom:10rem;
  min-height: 100vh;
}

#quinoussommes h2 {
  text-align:center;
  margin-bottom:10rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #quinoussommes h2:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--color1);
  }

}


@media screen and (min-width:992px) {
  #quinoussommes h2 {
    text-align:end;
    margin-right:7rem;
  }

  #quinoussommes h3 {
    min-height:5rem;
  }

}

@media screen and (min-width:1400px) {

  #quinoussommes h3 {
    min-height:7rem;
  }
}



#quinoussommes .vertical-line {
  color:var(--color1);
  margin-left:5rem;
}

@media screen and (min-width:992px) {
  #quinoussommes .row {
    justify-content:space-between;

  }
  #quinoussommes .row div{
    flex-basis:28%;
  }
}


/* VALEURS ET METHODOLOGIE */

#valeurs {
  background-color:var(--color3);

}

#valeurs .backline-vert {
  padding-top:10rem;
  padding-bottom:10rem;
}

@media screen and (min-width:992px) {

  #valeurs .backline-vert {
    background-image: url("../img/backline-vert.webp");
    background-repeat: repeat-y;
    min-height:100vh;
  }

}

#valeurs h4 {
  text-align:center;
  margin-bottom:10rem;
  position: relative;
}

.margin-top-spec {
  margin-top:10rem;
}

@media screen and (max-width:992px) {
  #valeurs h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--bleu1);
  }
}



@media screen and (min-width:992px) {
  #valeurs h4 {
    text-align:start;
    margin-left:3rem;
  }

  #valeurs .vertical-line {
    color:var(--color3);
    margin-right:5rem;

  }

  #valeurs .horizontal-line{
    border-left: 40vmax solid;
    color:var(--bleu1);
    margin-left:10rem;

  }

}

@media screen and (min-width:1342px) {
  #valeurs .horizontal-line{
    border-left: 60rem solid;
  }
}

@media screen and (min-width:1400px) {
  #valeurs .horizontal-line{
    border-left: 80rem solid;
  }
}

/* Parapgraphes */

.icons-avec-titre {
  display:flex;
  flex-direction:row;
  align-items:center;
  margin-bottom:3rem;
}

.icons-titre {
  max-width:7rem;
}

/* ------------------ */
/* image */

#bloc {
  max-width:90rem;
  border-radius: 30px;
  display:block;
  margin-top:3rem;
  margin-bottom:10rem;
}

@media screen and (min-width:992px) {

  #bloc {
    max-width:70%;
    margin-left:19%
  }
}

/* Notre Méthodologie unique */

@media screen and (min-width:992px) {

  #valeurs .horizontal-line2{
    border-left: 7vmax solid;
    color:var(--bleu1);
    margin-left:10rem;

  }

}

@media screen and (min-width:1342px) {
  #valeurs .horizontal-line2{
    border-left: 20rem solid;
  }
}

@media screen and (min-width:1400px) {
  #valeurs .horizontal-line2{
    border-left: 45rem solid;
  }
}

.methodo {
  background-color: #545454;
  text-align: center;
}


@media screen and (min-width:992px) {
  .methodo {
  padding: 1rem 20rem 1rem 20rem;
  margin-left:7.3rem;
  }

  .droite {
    margin-left:7.3rem;
    padding:1rem 5rem 1rem 5rem;
  }

  .methodounique .row {
    margin-top:3rem;
  }

  #finances {
    margin-bottom:4rem !important;
  }

}

#valeurs figure {
  text-align: center;
}


#valeurs figcaption {
  color:var(--bleu1);
  font-size: 1.8rem;
  text-align:center;
}

#valeurs .methodounique img {
  max-width:20rem;
  margin-bottom:2rem;
}

.methodounique {
  margin-bottom:5rem;
}



/* CRITERES D'INVESTISSEMENTS */

#criteres {
  background-color:var(--color4);

}

#criteres .backline-orange {
  padding-top:10rem;
  padding-bottom:10rem;
}

@media screen and (min-width:992px) {

  #criteres .backline-orange {
    background-image: url("../img/backline-orange.webp");
    background-repeat: repeat-y;
    background-position:right;
    min-height:100vh;
  }

}

#criteres h4 {
  text-align:center;
  margin-bottom:10rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #criteres h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background:var(--orange1);
  }
}


@media screen and (min-width:992px) {
  #criteres h4 {
    display:flex;  /*NEW*/
    text-align:end;  /*NEW*/
    align-items: center;
    margin-right:2rem;  /*NEW*/
  }

 
  #criteres .vertical-line {
    color:var(--color4);
    margin-left: 6.5rem; /*NEW*/
    margin-right: 0.5rem; /*NEW*/
  }

  #criteres .horizontal-line{
    border-right: 22vmax solid;
    color:var(--orange1);
    margin-right:4.5rem; /*NEW*/
  }

  .gauche {
    margin-right:14rem;
    padding:1rem 5rem 1rem 5rem;
  }
}

@media screen and (min-width:1400px) {
  #criteres .horizontal-line{
    border-right: 46rem solid;
  }
}

/* Paragraphes */

.avec-soustitre {
  display:flex;
  flex-direction: column;
}

.soustitre {
  font-weight: 300;
}

#criteres img {
  max-width:6rem;
  margin-right:1rem;
}

#medtech, #stage{
  max-width:8rem !important;
}

/* ---------------*/

/* Bouton déposer un dossier */

.bouton-deposer {
  background-color: var(--orange1);
  align-items: center;
  padding: 2rem;
  border-radius:50px;
  border:0;
  color:white;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: all 0.5s;
  margin-bottom: 1rem;
}

.bouton-deposer:hover{
  background-color: grey;

  color:white;
}

@media screen and (min-width:992px) {
  
  #criteres .text-center {
    margin-top:10rem;
  }
}




/* ILS NOUS ONT FAIT CONFIANCE */

#confiance {
  background-color:var(--color3);
  padding-top:10rem;
  padding-bottom:10rem;
  min-height: 100vh;
}

#confiance h4 {
  text-align:center;
  margin-bottom:10rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #confiance h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background:var(--orange1);
  }
}

.confiance-desktop {
  display:none;
}

/* Citations Desktop */

@media screen and (min-width:992px) {
  #confiance h4 {
    text-align:start;

  }

  #confiance .vertical-line {
    color:var(--orange1);
    margin-right:5rem;
  }

  .confiance-desktop {
    display:block;
  }

  .confiance-desktop .flex-center {
    display:flex;
    flex-direction: column;
    align-items: center;
  }

  .confiance-desktop .portrait {
    max-width: 18rem;
  }

  .confiance-desktop p {
    text-align:center;
  }

  .confiance-desktop .row {
    margin-bottom:5rem;
  }

  .confiance-desktop .quote {
    max-width:30rem;
  }


}

/* Citations smartphone */

#confiance blockquote {
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:5rem;
}

q, cite {
  color:white;
  text-align:center;
}

cite {
  margin-top:1rem;
  font-size:1.8rem;
}

#confiance blockquote img{
max-width:15rem;
margin-top:2rem;
}


@media screen and (min-width:992px) {
  .confiance-smartphone {
    display:none;
  }
}


/* PORTEFEUILLE */

#portefeuille {
  background-color:var(--color4);

}

#portefeuille .backline-vert2 {
  padding-top:10rem;
  padding-bottom:10rem;
}

#portefeuille .nav-link {
    padding: .75rem 1.5rem;
    background-color: grey;
    color: white!important;
    border-radius: 50rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;    
}
#portefeuille .nav-link.active {
    background-color: var(--vert1);
}

@media screen and (min-width:992px) {

  #portefeuille .backline-vert2 {
    background-image: url("../img/backline-vert2.webp");
    background-repeat: repeat-y;
    min-height:100vh;
  }

}

#portefeuille h4 {
  text-align:center;
  margin-bottom:7rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #portefeuille h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background:var(--vert1);
  }
}



@media screen and (min-width:992px) {
  #portefeuille h4 {
    text-align:start;
    margin-left:3rem;
  }

  #portefeuille .vertical-line {
    color:var(--color4);
    margin-right:5rem;
  }

  #portefeuille .horizontal-line{
    border-left: 25vmax solid;
    color:var(--vert1);
    margin-left:10rem;

  }

}

@media screen and (min-width:1400px) {
  #portefeuille .horizontal-line{
    border-left: 68rem solid;
  }
}



@media screen and (min-width:1400px) {
  #valeurs .horizontal-line{
    border-left: 80rem solid;
  }
}


/* Logos */



#portefeuille img {
  max-width:25rem;
}

#portefeuille .col-12 {
  margin-bottom:8rem;
}

#portefeuille .exit {
  color:var(--vert1);
  font-weight: 300;
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;
  width:100%;
}

/* Effet au passage sur les logos */


.conteneura{
  position: relative; 
  max-width:25rem;
  border-radius:50%;
  overflow: hidden;
  display:block;
  margin:auto;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.txtcontenu {
  position: absolute;
  top: 50%;
  left: 0;
  width:100%;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.5s;
  z-index:2;
  color:var(--color1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-size: 1.7rem;
}

.imgcontenu {
  transition:all 0.25s ease-in-out;
}

.conteneura:hover .imgcontenu {
  opacity: 0.05;
  transform: scale(1.3);
}

.conteneura:hover .txtcontenu {
  opacity: 1;
}



/* L'EQUIPE */

#equipe {
  background-color:var(--color3);

}

#equipe .backline-orange2 {
  padding-top:10rem;
  padding-bottom:10rem;
}

@media screen and (min-width:992px) {

  #equipe .backline-orange2 {
    background-image: url("../img/backline-orange2.webp");
    background-repeat: repeat-y;
    background-position:right;
    min-height:100vh;
  }

}

#equipe h4 {
  text-align:center;
  margin-bottom:10rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #equipe h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background:var(--color1);
  }
}


@media screen and (min-width:992px) {
  #equipe h4 {
    text-align:end;
    display:flex;  
    margin-right:2rem;
    align-items: center;
  }

  #equipe .vertical-line {
    color:var(--color3);
    margin-left: 6.5rem; /*NEW*/
    margin-right: 0.5rem; /*NEW*/
  }

  #equipe .horizontal-line{
    border-right: 54vmax solid;
    color:var(--color1);
    margin-right:10rem;
  }


}

@media screen and (min-width:1400px) {
  #equipe .horizontal-line{
    border-right: 89rem solid;
  }
}





/* Trombinoscope */

#equipe .moovup img {
  max-width:20rem;
  border-radius:50%;

  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  display:block;
  margin:auto;
  margin-bottom:4rem;
}

#equipe figcaption {
  color:white;
  display:flex;
  flex-direction: column;
  align-items: center;
  margin-bottom:8rem;
}

#equipe .nom {
  font-size:2.2rem;
  font-weight:600;
}

#equipe .poste {

  font-weight:300;
}



/* NEWS */

#news {
  background-color:var(--color4);
  min-height:90vh;
  padding-top:10rem;
  padding-bottom:10rem;
}

#news h5 {
  min-height:4rem;
}

#news h4 {
  text-align:center;
  margin-bottom:10rem;
  position:relative;
}

@media screen and (max-width:992px) {
  #news h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background:var(--color1);
  }
}



@media screen and (min-width:992px) {
  #news h4 {
    text-align:start;
    margin-left:3rem;


  }

  #news .vertical-line {
    color:var(--color1);
    margin-right:5rem;
  }

}

#news .bouton-deposer {
  background-color: var(--color1);
}

#news .bouton-deposer:hover{
  background-color: grey;
  color:white;
}

.petit-bouton {
  font-size:1.5rem;
  padding:1rem;
  margin-bottom: 2rem;
}

#news p{
  margin-bottom:2rem;
}

#news .date-center{
  text-align:center;
  max-height:3rem;
}

#news .card {
  height:110%;
  margin-bottom:5rem;
}

#news .card img {
  transition:0.5s;
  max-width: 100%;
	height: 100%;
  object-fit: cover; 
}

#news .card img:hover {
  transform : scale(1.2);
}

#news .overflow-img {
  overflow:hidden;
  height:14rem;
  display:flex;
  align-items: center;
}

#news .card-body p{
  height:8rem;
  overflow-y:hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#news .row {
  margin-bottom:5rem;
}

#news .card-title {
  font-size: 2rem;
}







/*=============================================================
                               FOOTER
===============================================================*/

footer {
  background-color:var(--color3);
  color:white;
  font-size:1.6rem;
  display:flex;
  flex-direction: column;
  align-items:center;

}

footer a {
  color:var(--color1);
}

footer img {
  max-width:3rem;
}

footer a:first-child, footer div {
  margin:0.5rem;
}

@media screen and (min-width:992px) {

  footer {
    flex-direction:row;
    justify-content:center;
    align-items:center;
  }

  footer div::before{
    content: "| ";
  }

}

footer a {
  transition:all .4s;
  border-radius: 3px;
  padding:0.3rem;
}

footer a:hover {
  background-color: rgba(255,255,255, 0.3);
  color:var(--color1);

}

/*=============================================================
                               MODAL MENTIONS LEGALES
===============================================================*/

#legalModal p{
  color:#383838;
  font-size: 1.6rem;;
}

/* H3 */
#legalModal h3 {
  color:#383838;
  font-weight:400;
  font-size:1.8rem;
  margin-bottom:3rem;
}

@media screen and (min-width:992px) {
  #legalModal h3 {
    font-size:2.3rem;
  }
 }



/*=============================================================
                               MODAL CARTES DE VISITES
===============================================================*/

.carte-visite .modal-header {
  background-color: var(--color3);
  color:white;
}

.carte-visite .modal-body {
  background-color: var(--color3);
}

.carte-visite p {
  margin-bottom: 0;
}

.mobile-card h4 {
  font-size: 3rem;
  text-align: center;
}

.mobile-card h4 span{
  font-size: 2rem;
}

.carte-visite .photoid {
  border-radius:50%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  max-width: 35rem;
}

.mobile-card .photoid {
  max-width:18rem;
  display:block;
  margin:auto;
  margin-bottom:2rem;
}

.carte-visite .infoid {
  display:flex;
  align-items:flex-start;
  margin-bottom: 2rem;;
}

.mobile-card .infoid {
  justify-content: flex-start;
}

.carte-visite .infoid img {
  max-width:3rem;
  margin-right:1rem;
}

.carte-visite ul {
  color:white;
  font-weight: 300;
}

.carte-visite .postes {
  list-style: inside;
}

.carte-visite .skills {
  display:flex;
  flex-wrap: wrap;
}

.carte-visite .skills li {
  margin:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
  font-size:1.6rem;
  background-color: var(--color1);
  border-radius:15px;
  display:flex;
 
}

.desktop-card {
  display:none;
}



@media screen and (min-width:992px) {

    .carte-visite .container-card {
      width:90%;
      margin:auto;
      background-image: url("../img/backline-orange2.webp");
      background-repeat: repeat-y;
    }

    .mobile-card {
      display:none;
    }

    .desktop-card {
      display:block;
    }

    .desktop-card h4 {
      font-size: 4rem;
      margin-bottom:5rem;
    }
    
    .desktop-card h4 span{
      font-size: 3rem;
    }

    .flex-id .vertical-line {
      color:var(--color1);
      height: 10rem;
      margin-right:1rem;

    }

    .flex-id {
      display:flex;
      
    }

    .desktop-card .padding-left-id {
      padding-left:3.2rem;
    }

    .carte-visite .photoid {
      margin-left:5rem;
    }

}






/*=============================================================
                               MODAL DEPOT DE DOSSIER
===============================================================*/

.modal-doss .modal-header {
  background-color: var(--color4);
  color:white;
}

.modal-doss .modal-body {
  background-color: var(--color4);
  color:white;
}

.modal-doss .container-dossier  {
  width:90%;
  margin:auto;

}

.modal-doss form p {
  margin-bottom:1rem;
}


.modal-doss h4 {
  text-align:center;
  margin-bottom:5rem;
  position: relative;
}

.modal-doss label  {
  font-weight: 300;
}

.modal-doss .bouton-deposer {
  width:100%;
  margin-top:5rem;
  margin-bottom:5rem;
}

.modal-doss img {
  max-width:3rem;
  float:left;
}




@media screen and (max-width:992px) {
  .modal-doss h4:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--orange1);
  }
}



@media screen and (min-width:992px) {
  .modal-doss h4{
    text-align:start;
    margin-left:3rem;
  }

  .modal-doss .vertical-line {
    color:var(--orange1);
    margin-right:2rem;
  }
}

.modal-doss .contact_form2 div{

  display:flex;
  flex-direction: column;
  margin-bottom: 4rem !important;
}

.modal-doss .contact_form2 textarea{
  min-height:15rem;
}

.modal-doss .contact_form2 img{
  max-width:20rem !important;
}



/* #activite-1, #financ-1, #montant-1, #produit-1{
  margin-left:-3rem !important;
} */



/*=============================================================
                               MODAL NEWS
===============================================================*/

.news .modal-header {
  background-color: var(--color3);
  color:white;
}

.news .modal-body {
  background-color: var(--color3);
  color:white;
}

.news .container-news {
  width:90%;
  margin:auto;

}


.news h4 {
  text-align:center !important;
  margin-bottom:5rem;
  position:relative;
}

.news img {
  margin-bottom :5rem;
}

.news h4:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--color1);
}

.news p{
  white-space:pre-wrap;
  margin-bottom:5rem !important;
}




