@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url(https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

body {
  font-family: 'Montserrat', sans-serif;
  min-height:100vh;
  display: flex;
  flex-direction: column;
  color: #838383;
  line-height: 1.5;
  font-size: 14px;
  overflow-x: hidden;

}

h2 {
  text-transform: uppercase;
  color: #582582;
  text-align: center;
}

main.login h2 {
  margin-bottom: 50px;
}

h3 {
  text-transform: uppercase;
  color: #582582;
  margin-top: 0;
}

form h3 {
  text-align: left;
}

a {
  width: fit-content;
  display: block;
  text-decoration: none;
}

ul {
  padding: 0;
}

  ul li {
    list-style: none;
  }

main {
  display: flex;
  flex-direction: column;
  padding: 100px 0 100px 0;
}

main.fiche, main.login, main.index {
  display: flex;
  flex-direction: column;
  padding: 100px 0 0 0;
  margin: initial;
}

/** HEADER **/

h1 {
  text-indent: -100000px;
  background-image: url('../img/Clac_Logo_RVB.svg');
  background-repeat: no-repeat;
  width: 15rem;
  height: 8rem;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
  padding: 50px 50px 50px 50px;
  /*box-shadow: -3px 6px 15px 4px rgba(25, 34, 67, 0.1);*/
}

header ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

  header ul li {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: bold;
  }

    header ul li a {
      color: #582582;
      transition: color 0.3s ease-in-out;
    }

      header ul li a:hover {
        color: #00c6b1;
      }

    a.cta-blue {
      color: #fff;
      background-color: #00c6b1;
      padding: 10px 20px 10px 20px;
      border-radius: 20px;
      transition: background-color 0.3s ease-in-out;
      cursor: pointer;
      white-space: nowrap;
    }

    @media only screen and (max-width: 917px) and (min-width: 800px) {
      a.cta-blue {
        font-size: 14px;
        padding: 8px 15px;
      }
    }

      a.cta-blue:hover {
        color: #fff;
        background-color: #582582;
      }

/* section.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: -webkit-center;
  align-items: center;
} */

#secteur-index p {
  /**width: 80%;**/
  padding: 0 0 10px 0;
}

/* .search-bar {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
} */

/* input#searchbar.rounded {
  border: none;
  color: #fff;
  text-align: center;
  transition: width 0.3s ease-in-out;
  width: 100%;
  padding: 20px;
  border-radius: 40px;
  background-color: rgba(88, 37, 130, 0.5);
}

input#searchbar.rounded-partialy {
  border: none;
  color: #fff;
  text-align: center;
  transition: width 0.3s ease-in-out;
  width: 100%;
  padding: 20px;
  border-radius: 40px 40px 0px 0px;
  background-color: rgba(88, 37, 130, 0.5);
}


input#searchbar:focus {
  outline-color: rgba(57, 21, 87, 0.5);
}

input#searchbar + .fa-solid {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #6edbb2;
  font-size: 20px;
}

::placeholder {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
} */

/**start search bar**/

/* General header styles */
header {
  display: flex;
  flex-direction: column;
  padding: 50px;
}

/* First section: header */
section.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Search bar container */
.search-bar {
  position: relative;
  width: 50%;
  margin: 40px auto 0;
}

/* Search bar input */
input#searchbar.rounded,
input#searchbar.rounded-partialy {
  border: none;
  color: #fff;
  text-align: center;
  transition: width 0.3s ease-in-out;
  width: 100%;
  padding: 20px;
  border-radius: 40px;
  background-color: rgba(88, 37, 130, 0.5);
}

/* Rounded corners for partial display */
input#searchbar.rounded-partialy {
  border-radius: 40px 40px 0 0;
}

/* Focused input outline color */
input#searchbar:focus {
  outline-color: rgba(57, 21, 87, 0.5);
}

/* Search icon positioning */
input#searchbar + .fa-solid {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #6edbb2;
  font-size: 20px;
  pointer-events: none;
}

/* Placeholder styling */
::placeholder {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

/* Media query for tablets and small desktops */
@media only screen and (max-width: 768px) {
  header {
    padding: 20px;
  }

  .search-bar {
    width: 80%;
    margin-top: 20px;
  }

  input#searchbar.rounded,
  input#searchbar.rounded-partialy {
    padding: 15px;
    font-size: 16px;
  }

  input#searchbar + .fa-solid {
    right: 5px;
    font-size: 18px;
  }

  ::placeholder {
    font-size: 16px;
  }
}

/* Media query for very small screens (320px width) */
@media only screen and (max-width: 480px) {
  header {
    padding: 15px;
  }

  .search-bar {
    width: 90%;
    margin-top: 20px;
  }

  input#searchbar.rounded,
  input#searchbar.rounded-partialy {
    padding: 12px;
    font-size: 14px;
    border-radius: 30px;
    margin-left: -12px;
  }

  input#searchbar + .fa-solid {
    right: 8px;
    font-size: 16px;
  }

  ::placeholder {
    font-size: 14px;
  }
}

@media only screen and (max-width: 320px) {
  header {
    padding: 10px;
  }

  .search-bar {
    width: 100%;
    margin-top: 15px;
  }

  input#searchbar.rounded,
  input#searchbar.rounded-partialy {
    padding: 10px;
    font-size: 12px;
    border-radius: 20px;
  }

  input#searchbar + .fa-solid {
    right: 5px;
    font-size: 14px;
  }

  ::placeholder {
    font-size: 12px;
  }
}



/**end search bar**/

/** INDEX MAIN **/

main {
  margin: 0 auto;
}

#secteur-index {
  padding: 0 50px 0 50px;
}

#secteur-index p {
  /**width: 80%;**/
  text-align: left;
}

.secteur {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}

  .secteur li {
    width: 80%;
    text-align: center;
    padding: 30px 30px 30px 30px;
  }

    .secteur li a {
      width: fit-content;
      margin: 0 auto;
      text-transform: uppercase;
      font-weight: bold;
      color: #582582;
      transition: color 0.3s ease-in-out;
    }

    .secteur li a:hover {
      color: #00c6b1;
    }

.secteur img {
    content: "";
    background: no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

#intro-annuaire {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-index {
  width: 80%;
}

#intro-annuaire h2 {
  font-size: 30px;
  text-align: right;
  margin-top: -50px; margin-right: 130px;
  margin-bottom: 0;
}

span.blue {
  color: #00c6b1;
}

strong.purple {
  color: #582582;
}


/* .secteur li:nth-child(2)::before {
    content: "";
    background: url(../img/SVG/agriculture.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
} */

/* .secteur li:nth-child(3)::before {
    content: "";
    background: url(../img/SVG/banques.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
} */

/* .secteur li:nth-child(4)::before {
    content: "";
    background: url(../img/SVG/commerce.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(5)::before {
    content: "";
    background: url(../img/SVG/construction.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(6)::before {
    content: "";
    background: url(../img/SVG/divertissement.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(7)::before {
    content: "";
    background: url(../img/SVG/graphisme.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(8)::before {
    content: "";
    background: url(../img/SVG/horeca.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(9)::before {
    content: "";
    background: url(../img/SVG/alimentation.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(10)::before {
    content: "";
    background: url(../img/SVG/automobile.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(11)::before {
    content: "";
    background: url(../img/SVG/chimie.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(12)::before {
    content: "";
    background: url(../img/SVG/minereaux.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(13)::before {
    content: "";
    background: url(../img/SVG/informatique.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(14)::before {
    content: "";
    background: url(../img/SVG/transports.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(15)::before {
    content: "";
    background: url(../img/SVG/bois.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(16)::before {
    content: "";
    background: url(../img/SVG/manufactures.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 35px;
    height: 52px;
}

.secteur li:nth-child(17)::before {
    content: "";
    background: url(../img/SVG/textile.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(18)::before {
    content: "";
    background: url(../img/SVG/autres.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(19)::before {
    content: "";
    background: url(../img/SVG/profession-liberale.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
}

.secteur li:nth-child(20)::before {
    content: "";
    background: url(../img/SVG/services-divers.svg) no-repeat;
    background-size: 100%;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
    width: 47px;
    height: 52px;
} */

#partenaires {
  background-color: #f6f6f6;
  padding: 100px 50px 100px 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 100px;
}

ul.partenaires {
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

@media all and (max-width: 800px){
  ul.partenaires {
    flex-direction: column;
  }
}

/* ul.partenaires li {
  margin-right: 30px;
} */

ul.partenaires li:last-child {
  margin-right: 0;
}

ul.partenaires li:first-child a {
  text-indent: -100000px;
  background-image: url('../img/SVG/ucmmouvLux.svg');
  background-repeat: no-repeat;
  width: 12rem;
  height: 8rem;
  margin: 0;
  cursor: pointer;
}

ul.partenaires li:nth-child(2) a {
  text-indent: -100000px;
  background-image: url('../img/Province-lux_logo.png');
  background-repeat: no-repeat;
  width: 12rem;
  height: 8rem;
  margin: 0;
  cursor: pointer;
}

/** FILTER **/

/* Dropdown Button */
.filter {
  text-align: left; /* Center the child elements horizontally */
  padding: 40px 60px 40px 100px;
}

@media (max-width: 832px) {
  .filter {
    text-align: center;
    padding: 20px;
  }

  .dropdown {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }

  .dropdown select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.filter h4 {
  color: #00c6b1;
  font-weight: normal;
}

.dropbtn {
  /**background-color: #04AA6D;**/
  /**color: white;**/
  color: #838383;
  padding: 16px;
  font-size: 14px;
  /**border: none;**/
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;

  transition: border 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.fa-angle-right {
  color: #00c6b1;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  /**background-color: #3e8e41;**/
  border: 1px solid #00c6b1;
  color: #00c6b1;
}

/* The search field */
#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 3px solid #ddd;}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin-inline: 5px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/** LISTING **/

.result {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 50px;
  justify-content: space-around; /* Use space-around to evenly distribute cards */
}

.result-card {
  flex: 0 0 calc(33.33% - 20px);
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: -3px 6px 15px 4px rgba(25, 34, 67, 0.3);
  border-radius: 15px;
  padding: 20px 40px;
  margin-bottom: 20px; /* Adjust the margin as needed */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .result {
    padding: 20px;
    justify-content: center;
  }

  .result-card {
    flex: 0 0 100%;
    max-width: 380px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 289px;
    align-items: center;
    text-align: center;
  }
}

a.cta-blue .fa-circle-user {
  color: #fff;
}

.result li {
  list-style: none;
}

.result  li p {
  margin: 0;
}

.result-card  p:nth-child(4),
.result-card  p:last-child {
  margin-top: 25px;
}

/** ENTREPRISE.HTML **/

.clac-secteur, .clac-description, .clac-number, .clac-contact-entreprise, .clac-social-network {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#fiche {
  background-color: #fff;
  box-shadow: -3px 6px 15px 4px rgba(25, 34, 67, 0.3);
  border-radius: 15px;
  padding: 20px 40px 20px 40px;
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 800px) {
  #fiche {
    width: 100%;
  }
}

.fiche h2 {
  margin-bottom: 50px;
}

.clac-secteur ul, .clac-description ul, .clac-number ul, .clac-contact-entreprise ul, .clac-social-network ul {
  width: 40%;
}
  .clac-secteur ul.clac-secteur-info, .clac-description ul.clac-description-info, ul.clac-number-info, ul.clac-contact-entreprise-info, ul.clac-social-network-info {
    width: 60%;
  }

#fiche ul li p {
  margin: 0 0 0 0;
}

#fiche ul li a {
  display: initial;
  color: #00c6b1;
  margin-right: 10px;
}

iframe {
  width: 100%;
}

.map {
  margin-top: 120px;
  width: 100%;
}

/** FORM **/

section#form {
  width: 80%;
  margin: 0 auto;
}

form {
  text-align: center;
  padding: 60px 80px 60px 80px;
  box-shadow: -3px 6px 15px 4px rgba(25, 34, 67, 0.3);
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}

/** **/
@media (max-width: 401px) {
  form {
    padding: 20px 10px;
  }

  form label {
    font-size: 12px;
  }

  form input {
    font-size: 12px;
    padding: 8px;
  }

  form .cta-blue {
    font-size: 12px;
    padding: 8px 12px;
  }

  a.signup, .checkbox label {
    font-size: 12px;
  }
}
/** **/

form .checkbox {
  text-align: left;
}
form label {
  text-align: left;
  color: #848484;
  margin-bottom: 5px;
}

form input {
  color: #848484;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #b4b4b4;
  padding: 5px;
}

form textarea {
  color: #848484;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #b4b4b4 !important;
  resize: none;
}

.styled-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.styled-select select {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  color: #848484;
  border-radius: 5px;
  border: 1px solid #f2f2f2;
}

form .cta-blue {
  cursor: pointer;
  margin: 0 auto;
  color: #fff;
  background-color: #00c6b1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin-top: 20px;
  border: none;

  transition: background 0.3s ease-in-out;
}

  form .cta-blue:hover {
    background-color: #582582;
  }

form a {
  width: initial;
  margin-top: 50px;
  text-decoration: none;
  color: #848484;
  transition: color 0.3s ease-in-out;
}

  form a:hover {
    color: #00c6b1;
  }

form a.signup {
  margin-top: 0;
  color: #00c6b1;
  transition: color 0.3s ease-in-out;
}

  form a.signup:hover {
    color: #582582;
  }

form a.check-condition {
  color: #00c6b1;
  margin-top: 0;
  display: initial;
  transition: color 0.3s ease-in-out;
}

form a.check-condition:hover {
  color: #582582;
}

/** LOGIN **/

.logo-ucm-lux {
  text-indent: -100000px;
  background-image: url('../img/SVG/ucmmouvLux.svg');
  background-repeat: no-repeat;
  width: 15rem;
  height: 8rem;
}

a.ucm {
  margin: 0 auto;
}

/** FOOTER **/

footer {
  flex-grow:1;
  justify-content: space-between;
  box-shadow: 0px -7px 15px 4px rgba(25, 34, 67, 0.1);
}

footer .info-footer {
  display: flex;
  flex-direction: column;
  padding: 20px 50px 20px 50px;
}

@media (max-width: 800px) {
  footer .info-footer {
    align-items:center;
  }
  footer .info-footer .left{
    display: contents;
    text-align:center;
  }
}

  footer .info-footer .fa-solid, footer .info-footer .fa-brands {
    color: #582582;
    margin-right: 10px;
   }

   .info-footer .left a {
    text-indent: -100000px;
     background-image: url(../img/SVG/clac-monogramme.svg);
     background-repeat: no-repeat;
     width: 4rem;
     height: 4rem;
     margin: 0;
   }

footer .right a {
  display: inline;
  color: #838383;
  transition: color 0.3s ease-in-out;
}

footer .right a:hover {
  color: #582582;
}

footer .mention {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #f6f6f6;
  padding: 20px 50px 20px 50px;
  flex-wrap: wrap;
 }

@media (max-width: 800px) {
  footer .mention {
  flex-direction: column;
  align-items: center;
  column-gap: 10;
  }
}

footer .mention a {
  color: #838383;
  transition: color 0.3s ease-in-out;
  margin: 0 10px 0 10px;
}

footer .mention a, footer .mention span {
  text-wrap: nowrap;
}

  footer .mention a:hover {
    color: #582582;
  }

footer .right ul li:nth-child(4) {
  margin-bottom: 15px;
}

/** RESPONSIVE **/

@media all and (min-width: 600px) {
  #intro-annuaire h2 {
    margin-right: 180px;
  }

  #intro-annuaire .text {
    padding-left: 70px;
  }
}

@media all and (min-width: 700px) {
  #intro-annuaire h2 {
    margin-right: 230px;
  }
}

@media all and (min-width: 800px) {

/** HEADER **/
  section.header {
    flex-direction: row;
    justify-content: space-between;
    text-align: -webkit-center;
    align-items: center;
  }

  header ul {
    flex-direction: row;
    align-items: end;
  }

  header ul li {
    margin: 0 30px 10px 0;
  }

  header ul li:last-child {
    margin: 0 0 0 0;
  }

  section#form {
    width: 50%;
  }

  .search-bar {
    width: 40%;
    padding: 1.25rem 1.875rem 1.25rem 1.875rem;
  }

  .result {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .result ul {
    margin-right: 40px;
    width: 20%;
  }

/** MAIN INDEX **/

.secteur {
  flex-direction: row;
}

  .secteur li {
    width: 20%;
  }

#intro-annuaire {
  flex-direction: row;
}

/** FOOTER **/

  footer .info-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media all and (min-width: 900px) {

  .map-index {
    width: 60%;
  }

  #intro-annuaire h2 {
    margin-right: 200px;
  }
}

@media all and (min-width: 930px) {

  section#form {
    width: 50%;
  }

  main.login #form {
    width: 45%;
  }

  .result {
    width: 90%;
    padding: 40px 60px 40px 100px;
  }

}

@media all and (min-width: 1300px) {
  #intro-annuaire h2 {
    margin-right: 270px;
  }

  .map-index {
    width: 60%;
  }

}

@media all and (min-width: 1500px) {
  #intro-annuaire h2 {
    margin-right: 340px;
  }
}

@media all and (min-width: 1600px) {

  .map-index {
    width: 40%;
  }

  #intro-annuaire h2 {
    margin-right: 300px;
  }
}

@media all and (min-width: 1800px) {
  #intro-annuaire h2 {
    margin-right: 330px;
  }
}

@media all and (min-width: 1900px) {
  #intro-annuaire h2 {
    margin-right: 530px; margin-top: -60px;
  }
}

@media all and (min-width: 2000px) {
  #intro-annuaire h2 {
    margin-right: 550px; margin-top: -70px;
  }
}
