.flex-row-nav {
  display: flex;
  flex-direction: row;
}
.special-webinar.option {
  background-color: var(--color-blue-light);
  border-radius: 10px;
  margin-top: 1rem;
  transition: all .4s ease!important;
}
.special-webinar.option:hover {
  transform: scale(1.01);
}
a {text-decoration: none;}
ul {padding: 0;}
p {/*color: var(--color-blue-dark-opacity);*/ margin: 0;}
.nav {
  cursor: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.drop-down-offres,
.drop-down-applications,
.drop-down-ressources,
.drop-down-apropos {
  position: relative;
  display: block;
}
.nav .btn {
  background-color: transparent;
  outline: none;
  position: relative;
  cursor: pointer;
  height: 100%;
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  transition: 0.3s all ease;
  box-sizing: revert!important; /* ajout à enlever quand les pages du site seront à refaire */
}
.nav .btn > * {cursor: pointer;}
.drop-down-offres:hover .options-offres,
.drop-down-applications:hover .options-applications,
.drop-down-ressources:hover .options-ressources,
.drop-down-apropos:hover .options-apropos {
  /* opacity: 1; */
  display: block; /* ajout = remplace opacity */
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.option span a {
  color: var(--color-blue-dark);
}
.option > span:nth-child(3) {
  text-align: left;
}
.label-text a, .label-text span {
  font-family: "Montserrat", sans-serif!important;
  font-size: 14px; /* ajout */
  color: var(--color-blue-dark-opacity-8);
}
.drop-down-offres:hover .label-text > span > span > div > ul > li > a, /* a */
.drop-down-applications:hover .label-text a,
.label-text a:hover, .label-text span > span > div > ul > li > a:hover,
.drop-down-ressources:hover .label-text span > span > div > ul > li > a, /* a */
.drop-down-apropos:hover .label-text span > span > div > ul > li > a { /* a */
  color: var(--color-blue-dark);
}
.nav .btn .icon {
  position: relative;
  top: 4px;
  transition: 0.2s all ease;
  /* color: var(--color-blue-dark-opacity); */
  opacity: 0.45;
}
/*.feather-chevron-down {
  height: 15px;
  width: 15px;
} */
.feather { /* ajout 24/05/2021 */
  height: 15px;
  width: 15px;
}
.drop-down-ressources .option > span,
.drop-down-apropos .option > span,
.option > span:nth-child(2) {
  white-space: nowrap;
}
.icon-dropdown-offres {
  background-color: var(--color-blue-light);
  height: 30px; /* 45px */
  width: 30px; /* 45px */
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: initial!important;
}
.icon-dropdown-applications,
.icon-dropdown-ressources {
  background-color: var(--color-blue-light);
  height: 40px; /* 35px */
  width: 40px; /* 35px */
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: initial!important;
}
.icon-dropdown-offres img {
  height: 100%!important;
  max-width: 30px!important; /* 50px */
}
.icon-dropdown-applications img,
.icon-dropdown-ressources img {
  height: auto !important;
  max-width: 60% !important;
  /* max-height: 25px!important; */
  /* max-width: 25px!important; /* ajout icon pti */
  /* width: 100%!important; */
}
.more-info__img img { /* ajout */
  max-height: 25px!important;
  width: 15px!important;
}
.options-offres {
  left: -168px; /* -145px */
}
.options-applications {
  left: -89px; /* -63px */
}
.options-ressources {
  left: -105px;
}
.options-apropos {
  left: -60px;
}
.options-offres,
.options-applications,
.options-ressources,
.options-apropos {
  position: absolute;
  top: 40px;
  list-style-type: none;
  color: #151542;
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  padding: 1em;
  margin: 0;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  /* opacity: 0; */
  display: none; /* ajout = remplace opacity */
  z-index: 5;
}
.container-options {
  background-color: rgba(255,255,255,0.98);
  box-shadow: 0 0 25px rgba(0,46,59,.06);
  -webkit-box-shadow: 0 0 25px rgba(0,46,59,.06);
  -moz-box-shadow: 0 0 25px rgba(0,46,59,.06);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
  padding: 1em;
} 
.triangle {
  width: 0;
  height: 0;
  position: absolute;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255,255,255,0.98);
  top: -8px;
  left: 50%;
  margin-left: -8px;
}
/* ajout 05/05/2022 */
.options-offres .triangle {
  left: 26%;
}
.options-applications .triangle {
  left: 18%; /* 24% */
}
.options-ressources .triangle {
  left: 24%;
}
/* fin ajout 05/05/2022 */
.options-offres .option:nth-child(1),
.options-offres .option:nth-child(2) {
  margin-bottom: .5em;
}
.options-offres .option,
.options-ressources .option,
.options-apropos .option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: background, color 0.3s ease;
}
/* ajout 05/05/2022 */
.options-applications .container-options {
  display: flex;
  column-gap: 15px;
}
.options-ressources .container-options {
  display: flex;
  flex-direction: column;
  column-gap: 15px;
}
.options-applications .option {
  white-space: nowrap;
}
.title-option {
  font-size: .9rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.8rem;
}
/* fin ajout 05/05/2022 */
.options-applications .option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: background, color 0.3s ease;
}
.options-offres .option:hover,
.options-applications .option:hover,
.options-ressources .option:hover,
.options-apropos .option:hover {
  border-radius: 10px;
  background: var(--color-blue-light);
}
.options-ressources > .container-options > .flex-row-nav > ul:nth-child(2) > .option:nth-child(7)::after {
  position: relative;
  content: "new";
  /* margin-left: .5rem; */
  color: var(--color-red);
  font-size: .75rem;
  background: rgba(200, 3, 46, 0.1);
  border-radius: 20px;
  padding: 3px 8px;
  
  font-weight: 600 !important;
  line-height: 1.6em;
  white-space: nowrap;
  
}
/* ajout */
.option {
  position: relative;
}
.option > a,
.cas-clients > a {
  position: absolute;
  width:100%;
  height:100%;
  top:0px;
  left:0px;
}
/* fin ajout */
/* ajout */
.container-nav-link > span:nth-child(1) > div > ul > li > a {
  width: 100%; /* ajout */
  display: flex; /* ajout */
  color: var(--color-blue-dark);
  font-size: 16px; /* 1.125em new --> 1em*/
  font-weight: 600!important;
  line-height: 1.6em;
  white-space: nowrap; /* ajout */
}
.container-nav-link-special-webinar > span:nth-child(1) > div > ul > li > a {
  width: 100%;
  display: flex;
  color: var(--color-red-opacity);
  font-size: 14px;
  line-height: 1.6em;
  white-space: nowrap;
}
.container-nav-link > span:nth-child(2) > div > ul > li > a {
  color: var(--color-blue-dark-opacity);
  font-size: 12px; /* .750em */
  line-height: 1.3em;
  white-space: nowrap; /* ajout */
}
.container-nav-link-special-webinar > span:nth-child(2) > div > ul > li > a {
  color: var(--color-blue-dark);
  font-size: 16px;
  font-weight: 600!important;
  line-height: 1.6em;
  /* white-space: nowrap; */
}
.drop-down-applications .label-text a {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6em;
}
.more-info > span > div > ul > li > a {
  color: var(--color-blue-dark-opacity)!important;
}
/* fin ajout */
.container-nav-link-special-webinar > span:nth-child(2) > div > ul > li > a::after {
  position: relative;
  content: url('https://f.hubspotusercontent40.net/hubfs/5056642/Icon-header/icon-external-link.svg');
  margin-left: .5rem;
}
/* séparateur */
.router-splitter {
  border-top: 1px solid rgba(2, 46, 59, .05);
}
/* fin séparateur */
/* option offres WL */
.options-offres ul:nth-child(2) .option:nth-child(6) .container-nav-link > span:nth-child(1) > div > ul > li > a::after {
  position: relative;
  content: url('https://f.hubspotusercontent40.net/hubfs/5056642/Icon-header/icon-external-link.svg');
  margin-left: .5rem;
}
/* fin option offres WL */
/* option ressources les 4 briques de l'IoT / the four bricks of the IoT */
/* .options-ressources .option:nth-child(1) .container-nav-link > span > div > ul > li > a::after {
  position: relative;
  content: "new";
  margin-left: .5rem;
  color: var(--color-red);
  font-size: .75rem;
  background: rgba(200,3,46,0.1);
  border-radius: 20px;
  padding: 0 8px;
} */
/* fin option ressources les 4 briques de l'IoT / the four bricks of the IoT */

.options-offres ul:nth-child(1) .option:nth-child(1) .container-nav-link > span:nth-child(1) > div > ul > li > a::after {
  position: relative;
  content: "new";
  margin-left: .5rem;
  color: var(--color-red);
  font-size: .75rem;
  background: rgba(200,3,46,0.1);
  border-radius: 20px;
  padding: 0 8px;
}

/* entre 1040px et 1045px after Tablet styles */
@media (max-width: 1040px) and (min-width: 990px) {
  /* .nav {
    justify-content: flex-start;
  } */
}

/* entre 1303px et 1308px after Tablet styles */
@media (max-width: 1335px) and (min-width: 1300px) {
  /* .nav {
    justify-content: flex-start;
  } */
}

/* After Tablet styles */
@media (max-width: 1300px) and (min-width: 990px) {
  .drop-down-applications .label-text a,
  .btn .label-text a {
    font-size: 13px; /* 14px */
  }
  .options-offres,
  .options-applications,
  .options-ressources,
  .options-apropos {
    top: 30px;
  }
  .label-text {
    padding-right: .2em;
  }
  /*.feather-chevron-down {
    height: 12px;
    width: 12px;
  } */
  .feather {
    height: 12px;
    width: 12px;
  }
}

/* Tablet styles */
@media (max-width: 990px) and (min-width: 767px) { /* à la base = max-width: 1150px / en suite max-width: 1300px */
  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
  }
  .drop-down-offres,
  .drop-down-applications,
  .drop-down-ressources,
  .drop-down-apropos,
  .nav > div:nth-child(3), /* ajout */
  .nav > div:nth-child(4) { /* ajout */
    position: relative;
    display: block;
    width: 100%;
  }
  /* ajout 21/05/2021 */
  .drop-down-offres:hover .options-offres,
  .drop-down-applications:hover .options-applications,
  .drop-down-ressources:hover .options-ressources,
  .drop-down-apropos:hover .options-apropos {
    display: none;
    clip-path: polygon(0 0,100% 0%,100% 100%,0% 100%);
  }
  /* fin ajout 21/05/2021 */
  .nav .btn {
    background-color: transparent;
    outline: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 100%;
    width: 100%;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s all ease;
  }
  /* ajout */
  .nav .btn.active {
    background-color: var(--color-blue-light);
    border-radius: 10px;
  }
  .nav .btn .label-text a,
  .nav .btn .label-text span {
    color: var(--color-blue-dark-opacity-8);
    font-size: 14px; /* ajout odj */
  }
  .nav .btn.active .label-text a,
  .nav .btn.active .label-text span {
    color: var(--color-blue-dark);
    font-weight: 600;
  }
  /* fin ajout */
  .nav .btn > * {cursor: pointer;}
  .nav .btn.active .icon {transform: rotate(180deg); /*color: var(--color-blue-dark);*/ opacity: 1;}
  /* ajout */
  .nav > div:before {
    content : "";
    position: absolute;
    left: 9px; /* 10 */
    bottom: 13px; /* 5 */
    height: 1px;
    width: 96%;  /* percentage of the element width*/
    border-bottom: 1px solid rgba(220,220,227,0.4);
  }
  /* fin ajout */
  .nav .btn.active + .options-offres,
  .nav .btn.active + .options-applications,
  .nav .btn.active + .options-ressources,
  .nav .btn.active + .options-apropos {
    opacity: 1;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  /* .nav .btn .label-text a,
  .option span a {
    color: var(--color-blue-dark);
  } */
  .nav .btn .icon {
    display: flex;
    flex-direction: column;
    font-size: 0.5rem;
    transition: 0.2s all ease;
  }
  .options-offres,
  .options-applications,
  .options-ressources,
  .options-apropos {
    position: inherit;
    top: 0;
    list-style-type: none;
    color: #151542;
    display: none;
    transition: all 0.2s ease-in;
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    padding: .5em; /* ajout */
    /* padding-top: initial; à décommenter si choix icones */
    padding-left: .7em;
    width: auto;
    height: auto;
    left: initial;
    margin: initial;
  }
  .container-options {
    flex-wrap: wrap; /* ajout */
    box-shadow: none;
    border-radius: none;
    position: initial;
    height: auto;
    width: auto;
    padding: initial;
  }
  .triangle {
    width: initial;
    height: initial;
    position: initial;
    border-left: none;
    border-right: none;
    border-bottom: none;
    top: initial;
    left: initial;
    margin-left: initial;
  }
  .flex-row-nav {
    flex-wrap: wrap; /* ajout */
  }
  /* ajout */
  .options-offres .option:nth-child(1),
  .options-offres .option:nth-child(2) {
    margin-bottom: 0;
  }
  .options-offres .option {
    flex-direction: row!important;
  }
  /* fin ajout */
  .options-offres .option,
  .options-ressources .option,
  .options-apropos .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem .8rem; /* padding: 0.3rem 0.8rem; */
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-applications .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-offres .option:hover,
  .options-applications .option:hover,
  .options-ressources .option:hover,
  .options-apropos .option:hover {
    border-radius: 10px;
    background: var(--color-blue-light);
  }
  /* .icon-dropdown-offres {
    height: 40px;
    width: 40px;
  }
  .icon-dropdown-applications {
    height: 30px;
    width: 30px;
  } */
  /* ajout */
  /* .container-nav-link > span:nth-child(2) > div > ul > li > a {
    display: none;
  } */
  .icon-dropdown-offres,
  .icon-dropdown-applications,
  .icon-dropdown-ressources,
  .container-nav-link > span:nth-child(2) > div > ul > li > a {
    display: none;
  }
  /* fin ajout */
  /* ajout */
  .container-nav-link > span:nth-child(1) > div > ul > li > a {
    font-size: 16px; /* 1em */
  }
  /* fin ajout */
}
/* Mobile tiny styles */
@media (max-width: 300px) {
  .options-offres .option,
  .options-applications .option,
  .options-ressources .option,
  .options-apropos .option {
    padding: .2rem .3rem!important;
  }
  .container-nav-link > span:nth-child(1) > div > ul > li > a {
    font-size: .86em!important;
  }
}
/* Mobile styles */
@media (max-width: 767px) {
  .flex-row-nav {
    flex-direction: column;
  }
  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
  }
  .drop-down-offres,
  .drop-down-applications,
  .drop-down-ressources,
  .drop-down-apropos,
  .nav > div:nth-child(3), /* ajout */
  .nav > div:nth-child(4) { /* ajout */
    position: relative;
    display: block;
    width: 100%;
  }
  /* ajout 21/05/2021 */
  .drop-down-offres:hover .options-offres,
  .drop-down-applications:hover .options-applications,
  .drop-down-ressources:hover .options-ressources,
  .drop-down-apropos:hover .options-apropos {
    display: none;
    clip-path: polygon(0 0,100% 0%,100% 100%,0% 100%);
  }
  /* fin ajout 21/05/2021 */
  .nav .btn {
    background-color: transparent;
    outline: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 100%;
    width: 100%;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s all ease;
  }
  /* ajout */
  .nav .btn.active,
  nav .btn:focus,
  nav .btn:active {
    background-color: var(--color-blue-light);
    border-radius: 10px;
  }
  .nav .btn .label-text a,
  .nav .btn .label-text span {
    color: var(--color-blue-dark-opacity-8);
    font-size: 14px; /* ajout odj */
  }
  .nav .btn.active .label-text a,
  .nav .btn.active .label-text span {
    color: var(--color-blue-dark);
    font-weight: 600;
  }
  /* fin ajout */
  .nav .btn > * {cursor: pointer;}
  .nav .btn.active .icon {transform: rotate(180deg); /*color: var(--color-blue-dark);*/ opacity: 1;}
  /* ajout */
  .nav > div:before {
    content : "";
    position: absolute;
    left: 9px; /* 10 */
    bottom: 13px; /* 5 */
    height: 1px;
    width: 96%;  /* percentage of the element width*/
    border-bottom: 1px solid rgba(220,220,227,0.4);
  }
  /* fin ajout */
  .nav .btn.active + .options-offres,
  .nav .btn.active + .options-applications,
  .nav .btn.active + .options-ressources,
  .nav .btn.active + .options-apropos {
    opacity: 1;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  /* .nav .btn,
  .option span a {
    color: var(--color-blue-dark);
  } */
  .nav .btn .icon {
    display: flex;
    flex-direction: column;
    font-size: 0.5rem;
    transition: 0.2s all ease;
  }
  .options-offres,
  .options-applications,
  .options-ressources,
  .options-apropos {
    position: inherit;
    top: 0;
    list-style-type: none;
    color: #151542;
    display: none;
    transition: all 0.2s ease-in;
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    padding: .5em; /* ajout */
    /* padding-top: initial; à décommenter si choix icones */
    padding-left: .7em;
    width: auto;
    height: auto;
    left: initial;
    margin: initial;
  }
  /* ajout 05/05/2022 */
  .options-applications .container-options,
  .options-ressources .container-options {
    flex-direction: column;
  }
  /* fin ajout 05/05/2022 */
  .container-options {
    box-shadow: none;
    border-radius: none;
    position: initial;
    height: auto;
    width: auto;
    padding: initial;
  }
  .triangle {
    width: initial;
    height: initial;
    position: initial;
    border-left: none;
    border-right: none;
    border-bottom: none;
    top: initial;
    left: initial;
    margin-left: initial;
  }
  /* ajout */
  .options-offres .option:nth-child(1), .options-offres .option:nth-child(2) {
    margin-bottom: 0;
  }
  .options-offres .option {
    flex-direction: row!important;
  }
  /* fin ajout */
  .options-offres .option,
  .options-ressources .option,
  .options-apropos .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem .8rem; /* padding: 0.3rem 0.8rem; */
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-applications .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-offres .option:hover,
  .options-applications .option:hover,
  .options-ressources .option:hover,
  .options-apropos .option:hover {
    border-radius: 10px;
    background: var(--color-blue-light);
  }
  /* .icon-dropdown-offres {
    height: 40px;
    width: 40px;
  }
  .icon-dropdown-applications {
    height: 30px;
    width: 30px;
  } */
  .drop-down-ressources .option > span,
  .drop-down-apropos .option > span,
  .option > span:nth-child(2) {
    white-space: initial;
  }
  /* ajout */
  /* .container-nav-link > span:nth-child(2) > div > ul > li > a {
    display: none;
  } */
  .icon-dropdown-offres,
  .icon-dropdown-applications,
  .icon-dropdown-ressources,
  .container-nav-link > span:nth-child(2) > div > ul > li > a {
    display: none;
  }
  /* fin ajout */
  /* ajout */
  .container-nav-link > span:nth-child(1) > div > ul > li > a {
    font-size: 16px; /* 1em */
  }
  /* fin ajout */
}
/* essaie tablette ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation: landscape) {
  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
  }
  .drop-down-offres,
  .drop-down-applications,
  .drop-down-ressources,
  .drop-down-apropos,
  .nav > div:nth-child(3), /* ajout */
  .nav > div:nth-child(4) { /* ajout */
    position: relative;
    display: block;
    width: 100%;
  }
  /* ajout 21/05/2021 */
  .drop-down-offres:hover .options-offres,
  .drop-down-applications:hover .options-applications,
  .drop-down-ressources:hover .options-ressources,
  .drop-down-apropos:hover .options-apropos {
    display: none;
    clip-path: polygon(0 0,100% 0%,100% 100%,0% 100%);
  }
  /* fin ajout 21/05/2021 */
  .nav .btn {
    background-color: transparent;
    outline: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 100%;
    width: 100%;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s all ease;
  }
  /* ajout */
  .nav .btn.active {
    background-color: var(--color-blue-light);
    border-radius: 10px;
  }
  .nav .btn .label-text a,
  .nav .btn .label-text span {
    color: var(--color-blue-dark-opacity-8);
    font-size: 14px; /* ajout odj */
  }
  .nav .btn.active .label-text a,
  .nav .btn.active .label-text span {
    color: var(--color-blue-dark);
    font-weight: 600;
  }
  /* fin ajout */
  .nav .btn > * {cursor: pointer;}
  .nav .btn.active .icon {transform: rotate(180deg); /*color: var(--color-blue-dark);*/ opacity: 1;}
  /* ajout */
  .nav > div:before {
    content : "";
    position: absolute;
    left: 9px; /* 10 */
    bottom: 13px; /* 5 */
    height: 1px;
    width: 96%;  /* percentage of the element width*/
    border-bottom: 1px solid rgba(220,220,227,0.4);
  }
  /* fin ajout */
  .nav .btn.active + .options-offres,
  .nav .btn.active + .options-applications,
  .nav .btn.active + .options-ressources,
  .nav .btn.active + .options-apropos {
    opacity: 1;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  .nav .btn .icon {
    display: flex;
    flex-direction: column;
    font-size: 0.5rem;
    transition: 0.2s all ease;
  }
  .options-offres,
  .options-applications,
  .options-ressources,
  .options-apropos {
    position: inherit;
    top: 0;
    list-style-type: none;
    color: #151542;
    display: none;
    transition: all 0.2s ease-in;
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    padding: .5em; /* ajout */
    /* padding-top: initial; à décommenter si choix icones */
    padding-left: .7em;
    width: auto;
    height: auto;
    left: initial;
    margin: initial;
  }
  .container-options {
    box-shadow: none;
    border-radius: none;
    position: initial;
    height: auto;
    width: auto;
    padding: initial;
  }
  .triangle {
    width: initial;
    height: initial;
    position: initial;
    border-left: none;
    border-right: none;
    border-bottom: none;
    top: initial;
    left: initial;
    margin-left: initial;
  }
  /* ajout */
  .options-offres .option:nth-child(1),
  .options-offres .option:nth-child(2) {
    margin-bottom: 0;
  }
  /* fin ajout */
  .options-offres .option,
  .options-ressources .option,
  .options-apropos .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem .8rem; /* padding: 0.3rem 0.8rem; */
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-applications .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    transition: background, color 0.3s ease;
  }
  .options-offres .option:hover,
  .options-applications .option:hover,
  .options-ressources .option:hover,
  .options-apropos .option:hover {
    border-radius: 10px;
    background: var(--color-blue-light);
  }
  .icon-dropdown-offres,
  .icon-dropdown-applications,
  .container-nav-link > span:nth-child(2) > div > ul > li > a {
    display: none;
  }
  /* fin ajout */
  /* ajout */
  .container-nav-link > span:nth-child(1) > div > ul > li > a {
    font-size: 16px; /* 1em */
  }
}
/* essaie tablette ipad */