
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  min-height: 100vh;
  cursor: url(/images/cursor.cur), auto;
}
a , input , select , option , label , textarea , button {
  cursor: url(/images/cursor.cur), auto;
}
.wrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 4;
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.wrapper header i {
  color: blue;
  font-size: 32px;
}
.wrapper header h2 {
  color: black;
  font-weight: 900;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: blue;
  text-decoration: none;
  font-weight: 500;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: black;
  cursor: url(/images/cursor.cur), auto;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: blue;
}
#declineBtn {
  border: 2px solid black;
  background-color: #fff;
  color: black;
}
#declineBtn:hover {
  background-color: black;
  color: #fff;
}

/* NAVBAR */
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: linear-gradient(10deg,#fc6a44 0, rgb(400, 155, 68));
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 3px 3px 3x rgba(0, 0, 0, 0.23);
  -o-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.23);
  z-index: 99;
  transition: background-color 0.3s ease-in-out 0.3s;
}
.smooth-transition {
    transition: background-color 0.3s ease-in-out 0.3s; 
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 50px;
}
nav .navbar .name {
  display: flex;
}
nav .navbar .logo {
    display: flex;
}
.navbar .logo a{
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: auto;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}

nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav-links li a{
  position: relative;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  text-decoration: none;
}
.nav-links li a:before{
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.htmlCss-sub-menu a:before {
  display: none;
}

.nav-links li a:hover:before{
  width: 100%;
}
.nav-links li a:before{
  left: 50%;
  transform: translateX(-50%);
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: linear-gradient(10deg, rgb(400, 155, 68) 0, #fc6a44 );
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.presta {
  transition: all 0.3s ease;
}
.presta:hover {
  /* border-bottom: #d9d9d9 solid 2px; */
  transition: ease-in-out 0.5s ;
  transform: translateX(5%);
}

.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
/* Empecher bootscrap de modifier la navbar et le hover */
nav .navbar {
  flex-wrap: nowrap;
}
a:not([href]):not([class]) {
  &,
  &:hover {
    color: #fff;
  }
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 20px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:840px){
  .navbar .bx-menu{
    display: block;
  }
  .navbar .logo .name{
    display: none;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    /* background: linear-gradient(10deg,#fc6a44 0, rgb(400, 155, 68)); */
    background: linear-gradient(10deg, rgb(400, 155, 68) 0, #fc6a44 );
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  nav .navbar .links li .sub-menu{
    background: transparent;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
  }
    .sidebar-logo i {
    font-size: 30px;
    color: #fff;
    position: relative;
    bottom: 20px;
    left: 10px;
  }
  .navbar .bx-menu {
    font-size: 35px;
    color: #fff;
  }
    .sidebar-logo  a{
      text-decoration: none;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    display: flex;
    align-items: center;
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
    .nav-links li a:before {
      display: none;
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


/* CONTENT */
#content {
    padding: 100px 0;
    background-color: #fff;
    margin: auto;
  }
  #content h2 {
    font-size: 45px;
    display: flex;
    text-align: left;
    justify-content: center;
    padding-bottom: 50px;
  }
  #content img {
    display: flex;
    margin: auto;
    border-radius: 5%;
    width: 500px;
    height: auto;
  }
  
  #content .mid img {
    margin-left: 100px;
    margin-top: 180px;
  }
  #content .mid span {
    font-size: 35px;
  }
  #content p {
    font-size: 20px;
    line-height: 1.5;
    width: 80%;
    margin: auto;
    text-align: justify;
  }
  #content p a:link {
    color: black;
  }
  #content p a:visited {
    color: black;
  }
  #content p a:hover {
    color: orangered;
  }
  #content p span {
    font-weight: 600;
  }
  #content .topic {
    display: flex;
    text-align: left;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .mid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: center;
  }
  #content .title h2 {
    display: none;
  }
  #content .back {
    padding: 50px;
  }
  #content .back a{
    color: #111;
    padding: 50px 0 0 0;
    font-size: 1.2rem;
  }
  #content .back a:hover {
    color: #fc6a44;
    transition: all ease .3s;
  }
  
  @media (max-width:800px){ 
    #content h2 {
      font-size: 2.4rem;
      color: #2b2b2b;
      font-weight: 600;
      padding-bottom: 20px;
    }
    #content p {
        font-size: 1.4rem;
        width: 80%;
        text-align: left;
    }
  }
  
  @media (max-width:1200px){ 
    #content .mid {
      flex-direction: column;
    }
    #content .mid img {
      margin: 0;
    }
    #content .topic h2 {
      display: none;
    }
    #content .title h2 {
      display: flex;
      text-align: center;
    }
    #content img {
      width: 60%;
    }
  }
  
  @media (max-width:600px){ 
    #content img {
      width: 80%;
    }
  }

  

/* FOOTER */
footer{
  width: 100%;
  /* position: fixed;
  bottom: 0;
  left: 0; */
  background: #111;
}
footer .content {
  max-width: 1350px;
  font-size: 14px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .content p,a{
  color: #fff;
}
footer .content .box{
  width: 33%;
  transition: all 0.4s ease;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fc6a44;
  margin-bottom: 16px;

}
footer .content p{
  text-align: justify;
}

footer .adress , .email , .rdv {
  padding: 10px 0px;
}
footer .content .lower .topic{
  margin: 24px 0 20px 0;
}


footer .content .middle{
  padding-left: 80px;
}
footer .content .middle a{
  line-height: 32px;
}


footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  transition: all 0.3s ease;
}
.content .media-icons a:hover{
  border-color: #fc6a44;
}
footer .bottom{
  width: 100%;
  text-align: center;
  color: #d9d9d9;
  padding: 20px 0px 20px 0;
  line-height: 1.5;
  font-size: 14px;
}

footer a{
  transition: all 0.3s ease;
}
footer a:hover{
  color: #fc6a44;;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
  }
}
@media (max-width:950px){
  footer .content .box{
    width: 50%;
  }
  .content .right{
    margin-top: 40px;
  }
}
@media (max-width:560px){
  footer{
    position: relative;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle{
    padding-left: 0;
  }
}











