@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: normal;
  src: local("Barlow"), url("fonts/Barlow-Regular.woff2") format("woff");
}
@font-face {
  font-family: "Barlow-Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Barlow-Condensed"), url("fonts/Barlow-Condensed-Regular.woff2") format("woff");
}
@font-face {
  font-family: "Barlow-Condensed-600";
  font-style: normal;
  font-weight: normal;
  src: local("Barlow-Condensed-600"), url("fonts/Barlow-Condensed-600.woff2") format("woff");
}
@font-face {
  font-family: "Barlow-700";
  font-style: normal;
  font-weight: normal;
  src: local("Barlow-700"), url("fonts/Barlow-700.woff2") format("woff");
}
@font-face {
  font-family: "Abril-Fatface";
  font-style: normal;
  font-weight: normal;
  src: local('"Abril-Fatface'), url("fonts/Abril-Fatface.woff2") format("woff");
}
html {
  font-size: 16px;
}

body {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
}

ol, ul {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  padding: 0;
  list-style-type: none;
}

a {
  color: #d8366b;
  text-decoration: underline;
}
a:is(:focus, :hover, :active) {
  color: #d8366b;
  text-decoration: none;
}

h1 {
  font-family: "Abril-Fatface", sans-serif;
  position: relative;
  margin-bottom: 20px;
  color: #5b504d;
  font-size: 2.813em;
  line-height: 1.333;
}

h2 {
  color: #5b504d;
}

/*form styling*/
#dynamic_form {
  display: block;
}

.form-control {
  min-height: 40px;
  line-height: 1.2;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #737373;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  box-shadow: none;
}

.btn, .ebtn {
  font-family: "Barlow-700", sans-serif;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border-radius: 25px;
  background-color: #d8366b;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}
.btn:is(:focus, :hover, :active, :active:focus, :active:hover), .ebtn:is(:focus, :hover, :active, :active:focus, :active:hover) {
  background-color: #d8366b;
  border: 1px solid transparent;
  color: #fff !important;
  outline: none;
}

form label, form option {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 25px;
  font-weight: 400;
}
form option {
  color: #212529;
}

.form-control:focus {
  border: 1px solid #ced4da;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-file {
  max-width: 100% !important;
}

.input-group .input-group-addon {
  border: 1px solid #737373;
}
.input-group .input-group-addon:focus {
  border: 1px solid #ced4da;
}

::placeholder, input::placeholder {
  color: #212529;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #737373;
  background-image: url(img/icon-select.svg) !important;
  background-position: right 0.6rem top 0.6rem;
  background-repeat: no-repeat;
  cursor: default;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-right: 0px;
  margin-left: 15px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #ade1f6;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #ced4da;
  outline: 0;
}

.select2-results__option {
  color: rgb(36, 36, 36);
}

.select2-search.select2-search--inline {
  padding-left: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.select2-dropdown {
  border-top: 1px solid #aaa !important;
}

select {
  border: 1px solid #737373;
  background-image: url(img/icon-select.svg) !important;
  background-position: right 0.6rem top 0.8rem;
  background-repeat: no-repeat;
  cursor: default;
  min-width: 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 70px;
  height: 60px;
  border-bottom: 1px solid #e6e6e6;
}
@media (min-width: 992px) {
  .site-header {
    height: 100px;
  }
}
.site-header .header-logo img {
  height: 50px;
  width: auto;
}
@media (min-width: 992px) {
  .site-header .header-logo img {
    height: 70px;
  }
}
.site-header .container {
  height: 100px;
  width: 100vh;
  padding: 0;
  margin: 0;
}

/* Logo Image */
.img-logo {
  margin-top: 5px;
  margin-left: 100px;
}
@media (min-width: 992px) {
  .img-logo {
    margin-left: 150px;
  }
}

/* Navigation Menu */
#menuToggle {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 4;
  background-color: #b7c000;
}
@media (min-width: 992px) {
  #menuToggle {
    width: 100px;
    height: 100px;
  }
}
#menuToggle input {
  position: fixed;
  z-index: 10;
  width: 40px;
  height: 32px;
  left: 15px;
  top: 15px;
  cursor: pointer;
  opacity: 0;
}
@media (min-width: 992px) {
  #menuToggle input {
    left: 32px;
    top: 30px;
  }
}
#menuToggle input:checked ~ span {
  display: none;
}
#menuToggle input:checked ~ ul {
  transform: none;
}
#menuToggle span {
  z-index: 2;
  display: flex;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  left: 15px;
  top: 15px;
  background: #5b504d;
  border-radius: 3px;
  transform-origin: 5px 0;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
@media (min-width: 992px) {
  #menuToggle span {
    left: 32px;
    top: 30px;
  }
}
#menuToggle:hover {
  border: 1px solid #000;
}

/* Close Button */
.icon-close {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #b7c000;
}
@media (min-width: 992px) {
  .icon-close {
    width: 100px;
    height: 100px;
  }
}
.icon-close svg {
  margin-bottom: 25px;
}

/* Header Navigation */
.header_menu__nav {
  position: fixed;
  margin-top: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_menu__nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #e6e6e6;
}
@media (min-width: 992px) {
  .header_menu__nav::after {
    width: 33.34vw;
  }
}
@media (min-width: 992px) {
  .header_menu__nav {
    margin-top: -100px;
  }
}

.header-logo-wrapper {
  margin-left: 25px;
}

/* Side Menu */
#menutop {
  display: block;
  width: 100vw;
  padding-top: 60px;
  height: 104vh;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s;
  overflow-y: auto;
}
@media (min-width: 992px) {
  #menutop {
    width: 33.34vw;
    padding-top: 125px;
    margin-top: -25px;
  }
}
#menutop li {
  padding: 0;
}

/* Menu Links */
.site-header .menu > li > a {
  display: flex;
  align-items: center;
  padding: 27px 50px 27px 40px;
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b504d;
  font-family: "Barlow-Condensed-600", sans-serif;
  line-height: 1.1;
  transition: all 0.3s;
  text-decoration: none;
}
@media (min-width: 992px) {
  .site-header .menu > li > a {
    font-size: 2rem;
    padding: 30px 45px 30px 30px;
  }
}
.site-header .menu > li > a:hover {
  color: #d8366b !important;
}

/* Navigation Button */
.navigation-button-text {
  position: fixed;
  left: 15px;
  top: 26px;
  z-index: 4;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 7px;
}
@media (min-width: 992px) {
  .navigation-button-text {
    left: 32px;
    top: 43px;
  }
}
.navigation-button-text .skip-closed {
  font-size: 1rem;
  font-family: "Barlow-Condensed-600", sans-serif;
  color: #5b504d;
}

/* Social Media Icons */
.second-navigation {
  display: none;
}
@media (min-width: 992px) {
  .second-navigation {
    display: block;
  }
}

.header-link.list-unstyled {
  display: flex;
  flex-direction: row;
}

.list-item.network {
  margin: 0 12px;
}
.list-item.network svg {
  fill: #878887;
  width: 24px !important;
}
.list-item.network:last-child {
  margin-right: 0;
}
.list-item a:is(:focus, :hover, :active) svg {
  fill: #5b504d;
}

/* Overlay */
#overlay {
  display: none;
}
#overlay.active {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  cursor: pointer;
}

.site-nav-breadcrumbs {
  background-color: var(--bs-blue-color);
  padding: 1em 0;
  list-style-type: none;
  gap: 7px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  color: #242424;
  font-family: "Barlow-700", sans-serif;
}
.site-nav-breadcrumbs a {
  color: #737373;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
}
.site-nav-breadcrumbs a::after {
  position: relative;
  content: url(img/next.svg);
  margin-right: 20px;
  left: 15px;
  top: 3px;
}
.site-nav-breadcrumbs a:hover {
  text-decoration: underline;
}

.site-content::before {
  content: "";
  height: 75px;
  display: block;
  background-color: #f7f5ec;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .site-content::before {
    height: 150px;
  }
}

#page-offres .page-header__background::before {
  position: absolute;
  top: 105px;
  z-index: 1;
  content: "";
  height: 60px;
  width: 270px;
  left: -135px;
  background: url(img/biais-fond.svg) repeat 0 0;
}
@media (min-width: 992px) {
  #page-offres .page-header__background::before {
    top: 215px;
  }
}
@media (min-width: 1200px) {
  #page-offres .page-header__background::before {
    left: calc((100% - 1170px) / 2 - 135px);
  }
}

#offre_libre{
  display: none;
}
#offre_libre p::before {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 4px;
  width: 15px;
  background-color: #b7c000;
}

.title_section, .site-main .container h3, .info-commune h2, .info-commune-end h2 {
  font-family: "Barlow-Condensed-600", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.25rem;
  text-align: start;
  text-transform: uppercase;
  color: #5b504d;
}
@media (min-width: 992px) {
  .title_section, .site-main .container h3, .info-commune h2, .info-commune-end h2  {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
}

.site-main {
  background-color: #fff;
}
.site-main.candidature {
  font-size: 1.125rem;
  padding: 2em 1em !important;
}
.bloc_result {
  font-family: "Barlow", sans-serif;
}
.bloc_result p {
  font-size: 1.375rem;
}
.bloc_result span {
  font-family: "Barlow-700", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.625rem;
  color: #d8366b;
}

.section-filter .select2-container--default .select2-selection--multiple, .section-filter .form-control {
  height: 60px;
  position: relative;
  border: 1px solid #737373;
  border-radius: 30px;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}

.section-filter .block-title {
  display: none;
}
.section-filter .filter_fields {
  display: grid;
  gap: 10px;
  align-items: baseline;
}
.section-filter .filter_fields .control-label {
  display: none;
}
@media (min-width: 768px) {
  .section-filter .filter_fields {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-filter .form-control {
  padding-left: 15px;
}
.section-filter .form-control:focus {
  border: 1px solid #d8366b;
}
.section-filter .select2-container--default .select2-selection--multiple {
  background-position: right 0.6rem top 1.4rem;
}
.section-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin-top: 10px;
}
.section-filter .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #d8366b;
  outline: 0;
}
.section-filter ::placeholder {
  font-size: 16px;
  color: rgb(36, 36, 36);
  opacity: 1;
}

.offre {
  text-align: left !important;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding: 30px 30px 50px !important;
  background-color: #fff;
  position: relative;
  border: none !important;
}
.offre .libelle {
  margin: 0;
}
.offre .libelle a {
  font-family: "Abril-Fatface", sans-serif;
  font-weight: 400;
  color: #5b504d;
  text-decoration: none;
  line-height: 1.133;
}

.link-action {
  margin-top: 15px;
}

.info.dateReponse {
  font-size: 1rem;
  font-family: "Barlow-700", sans-serif;
  font-weight: 400;
  color: #d8366b;
}
#liste {
  gap: 30px;
  display: grid;
}
#liste .offre {
  margin: 0;
}
@media (min-width: 768px) {
  #liste {
    grid-template-columns: 1fr 1fr;
  }
}

.offre:hover .link__offre {
  background-color: #d8366b;
}
.offre:hover .link__offre svg path {
  fill: #fff;
}

.link__offre {
  height: 50px;
  width: 50px;
  background-color: #f7f5ec;
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
.link__offre svg {
  width: 30px;
  margin-left: 10px;
  margin-top: 10px;
}
.link__offre svg path {
  fill: #b7c000;
}
@media (min-width: 1200px) {
  .link__offre {
    display: block;
  }
}

#details-offre {
  padding-left: 15px;
  padding-right: 15px;
}

#page-offres #alerte {
  background-color: #b7c000;
  padding: 20px 0px;
  border-radius: 20px;
  margin-top: 2.4rem;
}

.page-header__title::before {
  position: absolute;
  left: -95px;
  top: 32px;
  content: "";
  height: 2px;
  width: 60px;
  background-color: #b7c000;
}
@media (min-width: 992px) {
  .page-header__title::before {
    top: 40px;
  }
}
@media (min-width: 992px) {
  .page-header__title {
    font-size: 3.75rem;
  }
}

#offre .infos {
  background: #fff;
  padding: 5px;
}

.btn-link.pull-right {
  color: #737373;
  font-size: 1rem;
  text-transform: none;
  text-decoration: none;
}
.btn-link.pull-right:is(:focus, :hover, :active) {
  color: #d8366b;
}

.btn-success.pull-right {
  font-family: "Barlow-700", sans-serif;
  font-size: 1rem;
  border: 1px solid #d8366b;
  border-radius: 30px;
  padding: 0 25px;
  height: 60px;
  color: #d8366b;
  text-decoration: none;
  background-color: transparent;
}
.btn-success.pull-right:is(:focus, :hover, :active) {
  border-color: #d8366b;
  color: #fff;
  background-color: #d8366b;
}

.actions {
  display: flex;
  justify-content: start;
  align-items: center;
}
.actions .form-group {
  margin-bottom: 0;
}

#bottombtn {
  display: block;
}

.ebtn {
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  height: 50px;
  background-color: #b7c000;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  text-transform: none;
}
.ebtn:is(:focus, :hover, :active) {
  background-color: #b7c000 !important;
  color: #fff !important;
}

/*pagination*/
.row-pagination {
  margin: 60px 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.pagination .page-item .page-link {
  padding: 6px 16px;
  font-family: "Barlow-700", sans-serif;
  font-size: 1.375rem;
  line-height: 2.063rem;
  border: none;
  border-radius: 0;
  min-width: 45px;
  background-color: #f7f5ec;
  color: #5b504d;
  text-decoration: none;
  margin-left: 0;
}
.pagination .page-item .page-link:hover {
  background-color: #d8366b;
  color: #fff;
}
.pagination .page-item.active .page-link {
  background-color: #d8366b;
  color: #fff;
}

.site-footer {
  display: block;
  overflow: hidden;
  position: relative;
}
.site-footer .container-left {
  background-color: #f7f5ec;
  display: block;
  padding: 70px 0 40px 100px;
}
@media (min-width: 992px) {
  .site-footer .container-left {
    display: flex;
    gap: 80px;
    justify-content: center;
    padding: 70px 40px 40px 135px;
    width: 75%;
  }
}
.site-footer a {
  color: #242424;
  text-decoration: none;
  text-wrap: wrap;
}
.site-footer .link {
  text-wrap: nowrap;
}
.footer-top {
  display: block;
}
@media (min-width: 992px) {
  .footer-top {
    display: flex;
  }
}
.footer-top .logo {
  margin-bottom: 30px;
  width: 200px;
}
.footer-top .footer-address {
  padding-bottom: 30px;
}
.footer-top .footer-buttons {
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 20px;
  text-align: left;
  padding-top: 40px;
}
@media (min-width: 992px) {
  .footer-top .footer-buttons {
    align-items: baseline;
    flex-direction: row;
  }
}
.footer-top .footer-address {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-top .footer-useful {
  padding: 20px 0 40px;
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-top .footer-useful {
    padding: 100px 0 0 100px;
    text-align: left;
  }
}
.footer-top .useful-links {
  line-height: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-top .useful-links {
    text-align: left;
  }
}
.footer-top .useful-links .item {
  display: block;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.footer-logo .header-link a {
  font-size: 24px;
}

.site-footer a {
  text-decoration: none;
}
.site-footer .footer-flex {
  justify-content: center;
  align-items: baseline;
  display: flex;
  gap: 20px;
  text-align: left;
  padding: 40px 10px 0px 10px;
}
@media (min-width: 992px) {
  .site-footer .footer-flex {
    justify-content: unset;
  }
}

.footer-address .frame-type-textmedia .element-header {
  color: #5b504d;
  font-size: 1.5rem;
  font-family: "Abril-Fatface", sans-serif;
}

.usefool-links-title {
  font-weight: bold;
  text-transform: uppercase;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/*buttons footer*/
.btn-secondary {
  align-items: center;
  border: 2px solid #d8366b;
  color: #242424;
  border-radius: 25px;
  background-color: transparent;
  color: #d8366b !important;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-secondary:is(:focus, :hover, :active) {
  background-color: #d8366b;
  border-color: #d8366b;
  color: #ffffff;
}

.link-phone svg {
  width: 17px;
}

/*  link in the end of the footer page */
.footer-links {
  height: 100px;
}
.footer-links ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  line-height: 30px;
}
.footer-links .list-item {
  margin: 0 15px;
  font-size: 0.813rem;
  color: #242424;
  text-decoration: none;
}
.footer-links .link {
  color: #242424;
  text-decoration: none;
}
.footer-links .link:is(:focus, :hover, :active) {
  text-decoration: underline;
}

/* sticky button*/
.scrolltop {
  right: 0;
  bottom: 0;
  z-index: 1000;
  position: fixed;
  width: 75px;
  display: none;
  margin-bottom: 2em;
}
.scrolltop .show {
  display: block;
}

.fontawesome-regular-angle-up.ni {
  position: absolute;
  height: 1.5em;
  fill: #fff;
}

.btn-up {
  position: fixed;
  right: 15px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: #d8366b;
  color: #fff;
}
.btn-up:is(:hover, :active) {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none;
}
.btn-up:is(:hover, :active) .fontawesome-regular-angle-up.ni {
  fill: #d8366b;
}

.visually-hidden {
  visibility: hidden;
}

#cookie-space {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: pointer;
}

.sticky-cookie .cookie-message {
  position: absolute;
  bottom: 0;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.btn-cookie {
  background-color: #d8366b;
  color: #fff;
  font-weight: normal;
  border-radius: 5px;
  height: 60px;
  width: 200px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
}
.btn-cookie:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=spec.css.map */
span.asterisk {
    color: red;
}
#offre .info {
  display: flex;
}