body{
    top:0;
    left:0;
    width:100%;
    height:100%;
    position: relative;
    color:#000;
}
#title {
    position:relative;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content:center;
}
#title h1{
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight:900;
    font-size: 100pt;
    user-select: none; 
}
#title h3{
    user-select: none; 
    position:relative;
    top: 35px;
}
#title:hover{
    cursor:pointer;
}
#home img{
    margin-top: -8px;
    width: 40px;
}
#home:hover{
    background:#fff;
    border-radius: 50%;
}
.connection-btns a{
    font-weight: 600;
    border-radius: 22px;
    margin-left: 10px;
}
.activechoice{
    background:rgba(255,255,255,0.2);
}
.desactivechoice{
    background:black;
}
#recherche-voiture-accueil ul li:hover{
background:rgba(255,255,255,0.3);
}
/* section title */
.section-title--special {
    background: var(--transparentBlue);
    color: var(--mainWhite);
    padding: 0.5rem 2rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  }
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");

:root {
  --mainBlue: #40acf1;
  --transparentBlue: rgba(64, 172, 241, 0.7);
  --mainWhite: #ffffff;
  --mainBlack: #292f36;
  --mainGrey: rgb(216, 214, 214);
  --mainYellow: #e3b505;
}


/* inventory section */

.inventory {
    height: fit-content;
    width: 80%;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  background:transparent;
  border-radius :22px;
  border:3px solid black;
}

.car-card {
  border-radius: 0 !important;
}

.car-img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.car-value {
  background: var(--mainBlue);
  color: var(--mainWhite);
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  transition: all 1s linear;
}

.car-value:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#part1 ul{
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  #part1 ul li{
      position:relative;
      list-style: none;
  }
   #part1 ul li a{
      position: relative;
      width: 80px;
      height: 80px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background-color:rgba(255,255,255,0.5);
      margin: 0 10px;
      text-decoration: none;
      font-size: 30px;
      border-radius: 50%;
      color: #e2e2e2;
      box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2),2px 2px 5px rgba(0,0,0,0.2);
      transition: 0.5s;
  
  }
  #part1 ul li a:hover{
      color: #fff;
      transform: translateY(-20px);
      box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2),2px 24px 10px rgba(0,0,0,0.1);
  }
  #part1 ul li a .fa{
      position: relative;
      z-index: 1;
  }
  #part1 ul li a::before
  {
      content: '';
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      bottom: 10px;
      border-radius: 50%;
      border: 2px solid rgba(0,0,0,0.1);
  }
  #part1 ul li:nth-child(1) a::before
  {
      background: #1877f2;
  }
  #part1 ul li:nth-child(2) a::before
  {
      background: #25d366;
  }
  #part1 ul li:nth-child(3) a::before
  {
      background:#0d8af0 ;
  }
  #part1 ul li:nth-child(4) a::before
  {
      background:#ea4c89 ;
  }
  #defilee{
      margin-top:30px;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
  }
  #defilee a {
      width: 80px;
      height:80px;
      padding-right: 50px;
  }
  #defilee a img{
      width:fit-content;
      height:fit-content;
  }
  /* Make the image fully responsive */
  .carousel-inner img {
    width: 100%;
    height:100%;
  }
  /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.activepanel, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
  @media screen and (min-width: 676px) {
        .modal-dialog {
          max-width: 600px; /* New width for default modal */
        }
    }
.btn:focus {
  outline: none;
}

.green{
  color: green;
}

.red{
  color: red;
}
.likebuttons{
display:flex;
justify-content:space-between;
}
#footer{
  width: 80%;margin-left: auto;margin-right: auto;
}
@media only screen and (max-width: 600px) {
  .inventory {width: 100%;}
  .navbar{
    width: 100%;
  }
  #part1 ul li a{
    width: 50px;
    height: 50px;
  }
  #footer{
    width: 100%;
  }
}