@import url("https://fonts.googleapis.com/css?family=Montserrat");
body {
  font-family: "Montserrat";
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.content-container {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: auto;
}

main {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 15px;
}

.button-shape {
  border: 1px solid;
  color: #FFFFFF;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all ease-in-out 0.5s;
}

.button-primary {
  background-color: #0056A4;
  border-color: #0056A4;
}

.button-secondary {
  background-color: #009FDF;
  border-color: #009FDF;
}

.button-dark {
  background-color: #003466;
  border-color: #003466;
}

a {
  text-decoration: none;
  color: #0056A4;
  font-size: 1rem;
  font-weight: 500;
}

.link {
  position: relative;
}
.link::before {
  content: "";
  height: 1px;
  background-color: #009FDF;
  position: absolute;
  bottom: 0;
  width: calc(100% - 30px);
  transform: scaleX(0);
  transition: transform ease-in-out 0.3s;
}
.link:hover::before {
  transform: scaleX(1);
}

p {
  font-size: 1rem;
  color: #000000;
}

span {
  font-size: 1rem;
  color: #000000;
}

b, em, strong {
  font-size: 1rem;
  font-weight: 600;
  color: #0056A4;
}

ul, ol {
  font-size: 1rem;
  color: #000000;
}

header {
  display: flex;
  justify-content: start;
  position: sticky;
  position: -webkit-sticky;
  background-color: #0056A4;
  height: 100px;
  padding: 0 15px;
  top: 0;
}

.header-content {
  display: flex;
  width: 100%;
}

.header-sticky {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
}
.header-stickya {
  color: #0056A4;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo, .sticky-logo {
  width: auto;
  height: 90px;
}

.menu-burger-button {
  display: none;
  color: #FFFFFF;
}

@media screen and (max-width: 1039px) {
  .menu-burger-button {
    display: block;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-sticky .menu-burger-button {
    color: #FFF;
  }
  .custom-logo-link {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
footer {
  background-color: #0056A4;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
  padding: 0 15px;
}

.footer-haut {
  display: flex;
  justify-content: space-between;
  justify-content: end;
  border-bottom: 1px solid #FFFFFF;
}
.footer-haut img {
  margin-right: auto;
}

.footer-bas {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}

.copyright {
  display: flex;
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
}

.liens-footer a {
  position: relative;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 15px;
}
.liens-footer a:last-child {
  padding-right: 0;
}
.liens-footer a:not(:last-child)::after {
  content: "|";
  color: #FFFFFF;
  font-weight: 500;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 1039px) {
  .footer-bas {
    flex-direction: column;
    gap: 15px;
  }
  .footer-bas .liens-footer {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-bas .liens-footer a {
    padding: 10px 0;
    text-align: center;
  }
  .footer-bas .liens-footer a:last-child {
    padding-right: 0;
  }
  .footer-bas .liens-footer a:not(:last-child)::after {
    content: none;
  }
  .footer-bas .copyright {
    order: 2;
    justify-content: center;
    padding: 0;
    padding-top: 15px;
    border-top: 1px solid #FFFFFF;
  }
}
nav {
  display: flex;
}
nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  align-items: center;
}
nav ul li {
  display: flex;
}
nav ul li a {
  display: flex;
  padding: 1rem 2rem;
  color: #FFFFFF;
  text-decoration: none;
}
nav ul li a:hover {
  color: #009FDF;
}

.sticky a {
  background: #FFFFFF;
  color: #0056A4;
}
.sticky a:after {
  color: #0056A4;
}

@media screen and (max-width: 1039px) {
  nav .menu-mobile {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    padding: 1rem 1.25rem;
    align-items: start;
  }
  nav .menu-mobile li {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
  }
  nav .menu-mobile li a {
    display: flex;
    align-items: center;
    /* flex: 1 0 90%; */
    position: relative;
    text-decoration: none;
    padding: 0.5rem 0;
    color: #333;
  }
  nav .menu-mobile li a:hover {
    color: #da9f00;
  }
  nav .menu-mobile li .sub-menu-opener {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 7px;
    cursor: pointer;
  }
  nav .menu-mobile li .sub-menu-opener::before {
    content: "\f139";
    font-family: "dashicons";
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #da9f00;
    line-height: 20px;
    border: 1px solid #da9f00;
    border-radius: 10px;
  }
  nav .menu-mobile li .sub-menu-opened {
    transform: rotate(90deg);
  }
  nav .menu-mobile li .sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
  }
  nav .menu-mobile li .extrait-page {
    display: none;
  }
  nav .menu-mobile-visible {
    transform: scaleY(1);
    transition: transform 0.3s ease;
  }
}
.search-container {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.search-container a {
  position: relative;
}
.search-container img {
  width: 20px;
  height: 20px;
}

.search-window {
  display: flex;
  position: absolute;
  background-color: #FFFFFF;
  height: calc(100vh - 100px);
  top: 100px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform ease 0.3s;
  justify-content: center;
  align-items: center;
  width: 100%;
  left: 0;
}
.search-window > .dashicons {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  position: absolute;
  cursor: pointer;
  top: 2rem;
  right: 2rem;
}
.search-window > .dashicons::before {
  color: #0056A4;
}

.search-window-visible {
  transform: scaleY(1);
}

.custom-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
}
.custom-search-form input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #0056A4;
  font-size: 1.5rem;
  width: 50%;
  outline: none;
  color: #0056A4;
}
.custom-search-form input::placeholder {
  color: #0056A4;
}
.custom-search-form button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.custom-search-form button span {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}
.custom-search-form button span::before {
  color: #0056A4;
}

@media screen and (max-width: 1024px) {
  .search-container {
    margin-left: 0;
  }
}
nav {
  display: flex;
  align-items: flex-end;
  margin-left: 3rem;
  background: transparent;
  width: 100%;
}
nav .mega-menu {
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  /* position: relative; */
  display: flex;
  box-sizing: border-box;
}
nav .mega-menu > li {
  list-style-type: none;
  flex-direction: column;
  background: transparent;
  display: flex;
  /* a{
      padding: 1rem 2rem;
      text-decoration: none;
      color: #FFFFFF;
      background: transparent;
      font-size: 16px;   
      font-weight: 600;
      line-height: 25px;
      position: relative;
      display: flex;

      &:hover{
          background: #FFFFFF;
          color: #0056A4;
      }
      &:after{
          content: $dash-icon;
          font-family: "dashicons";
          position: absolute;
          right: 10px;
          transform: rotate(90deg);
          line-height: 1.5;
      }
  } */
}
nav .mega-menu > li > a {
  text-decoration: none;
  color: #FFFFFF;
  padding: 1rem 2rem 1rem 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  position: relative;
}
nav .mega-menu > li > a:after {
  content: "\f345";
  font-family: "dashicons";
  position: absolute;
  right: 15px;
  transform: rotate(90deg);
  line-height: 1.5;
  color: #009FDF;
}
nav .mega-menu > li > a:before {
  content: "";
  width: calc(100% - 2rem);
  height: 3px;
  background: #009FDF;
  position: absolute;
  bottom: -1.5rem;
  transform: scaleX(0);
  transition: transform ease-in-out 0.3s;
}
nav .mega-menu > li > a:hover::before {
  transform: scaleX(1);
}
nav .mega-menu > li > a.remove-after::after {
  display: none;
}
nav .mega-menu > li > .sub-menu {
  flex-direction: row;
  position: absolute;
  background: #EDFAFF;
  top: 100%;
  display: flex;
  right: 0;
  left: 0;
  padding: 50px 140px;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform ease-in-out 0.3s;
  border-top: 1px solid rgba(0, 0, 0, 0.1254901961);
  min-height: 300px;
}
nav .mega-menu > li > .sub-menu > li {
  flex: 0 1 33%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
nav .mega-menu > li > .sub-menu > li > a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #333; /* #0056A4; */
  /* position: relative; */
  padding: 1rem 2rem;
  align-items: center;
  margin-bottom: 15px;
  /* &:hover{
      text-decoration: underline;
      text-underline-offset: 5px;
  } */
}
nav .mega-menu > li > .sub-menu > li > a::after {
  content: "\f345";
  font-family: "dashicons";
  position: relative;
  left: 10px;
  line-height: 26px;
  color: #0056A4;
}
nav .mega-menu > li > .sub-menu > li > .sub-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  left: 0;
  padding-left: 0;
}
nav .mega-menu > li > .sub-menu > li > .sub-menu > li {
  /* padding-left: 55px; */
}
nav .mega-menu > li > .sub-menu > li > .sub-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  padding: 0.2rem 2rem;
  color: #333 !important;
  text-decoration: none;
  position: relative;
  align-items: center;
}
nav .mega-menu > li > .sub-menu > li > .sub-menu > li > a::before {
  content: "\f345";
  font-family: "dashicons";
  position: absolute;
  left: 10px;
  line-height: 25px;
  color: #009FDF;
}
nav .mega-menu > li > .sub-menu > li > .sub-menu > li > a::after {
  content: "";
  transform: scaleX(0);
  background: #0056A4 !important;
  height: 1px;
  position: absolute;
  transition: transform ease-in-out 0.3s;
  bottom: 5px;
  width: calc(100% - 4rem);
}
nav .mega-menu > li > .sub-menu > li > .sub-menu > li > a:hover::after {
  transform: scaleX(1);
  /* text-decoration: underline;
  text-underline-offset: 5px; */
}
nav .mega-menu > li:hover > .sub-menu {
  display: flex;
  transform: scaleY(1);
}
nav .mega-menu .sub-menu {
  display: none;
}
nav .mega-menu .icone-menu {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
nav .mega-menu .item-title {
  position: relative;
}
nav .mega-menu .item-title::before {
  content: "";
  height: 1px;
  background: #0056A4;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transition: transform ease-in-out 0.3s;
}
nav .mega-menu .item-title:hover::before {
  transform: scaleX(1);
}
nav .mega-menu .extrait-page {
  position: absolute;
  top: 75px;
  margin-top: 15px;
  width: 75%;
  /* padding-left: 40px; */
  padding-left: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
nav .mega-menu .menu-produits-entreprises > a {
  border: 1px solid #0069E6;
  color: #FFFFFF !important;
  background: #0069E6;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}
nav .mega-menu .menu-produits-entreprises > a::after {
  color: #FFFFFF !important;
}
nav .mega-menu .menu-produits-professionnels > a {
  border: 1px solid #1FDED4;
  color: #FFFFFF !important;
  background: #1FDED4;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}
nav .mega-menu .menu-produits-professionnels > a::after {
  color: #FFFFFF !important;
}
nav .mega-menu .menu-produits-immeubles > a {
  border: 1px solid #16D7F1;
  color: #FFFFFF !important;
  background: #16D7F1;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}
nav .mega-menu .menu-produits-immeubles > a::after {
  color: #FFFFFF !important;
}

@media screen and (max-width: 1280px) {
  nav .mega-menu > li > a {
    font-size: 0.8rem;
    padding-right: 1.5em;
  }
  nav .mega-menu > li > a::after {
    right: 4px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1039px) {
  nav {
    display: none;
  }
}

/*# sourceMappingURL=custom-style.css.map */
