/*
Theme Name: Palms Avenue
Theme URI: https://smarteez.eu
Author: Smarteez
Author URI: https://smarteez.eu
Description: Developped by Smarteez.
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.3
Text Domain: sz
*/
:root {
  --nav-height: 80px;
  --color-primary: #00383F;
  --color-secondary: #043239;
  --color-success: #3BA073;
  --color-danger: #F51414;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Calibri";
  src: url("assets/fonts/Calibri.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Calibri-Bold";
  src: url("assets/fonts/Calibri-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BellMT";
  src: url("assets/fonts/BellMT.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BellMT-Bold";
  src: url("assets/fonts/BellMTBold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DINCondensed";
  src: url("assets/fonts/D-DINCondensed.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DINCondensed-Bold";
  src: url("assets/fonts/D-DINCondensed-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Kiona";
  src: url("assets/fonts/Kiona-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Kiona-Bold";
  src: url("assets/fonts/Kiona-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Kiona-Light";
  src: url("assets/fonts/Kiona-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Kiona-SemiBold";
  src: url("assets/fonts/Kiona-SemiBold.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ArnoPro";
  src: url("assets/fonts/ArnoPro-Caption.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Retro";
  src: url("assets/fonts/RetroSignature.otf");
  font-weight: normal;
  font-style: normal;
}
/*Global*/
html, body {
  overflow-x: hidden;
  font-family: Calibri, sans-serif;
}

h1 {
  font-family: BellMT-Bold, sans-serif;
}

h2 {
  font-family: Kiona-Bold, serif;
}

.text-justify {
  text-align: justify;
}

.title {
  font-family: Kiona-Bold, serif;
}

.subtitle {
  font-family: Kiona-Bold, serif;
  color: #169B95;
  letter-spacing: 4px;
}

::-moz-selection {
  background: rgba(0, 56, 63, 0.6);
}

::selection {
  background: rgba(0, 56, 63, 0.6);
}

.screen-reader-response {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

.form-control:focus {
  box-shadow: 0 0 5px 2px rgba(4, 50, 57, 0.2);
}

.img-full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-full-width {
  width: 100%;
  height: auto;
}

/*Landing Page*/
.lp-container {
  width: 100%;
  height: calc(100vh - var(--nav-height));
}
.lp-container .lp-content {
  position: relative;
  background-image: url("./assets/images/slide2.png");
  background-size: cover;
  background-position-x: 90%;
  height: 100%;
  width: 100%;
}
.lp-container .lp-content .lp-title {
  width: 55%;
  height: auto;
  padding-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-container .lp-content .lp-title img {
  max-width: 100%;
}
.lp-container .lp-content .lp-lancement {
  position: absolute;
  left: 0;
  bottom: 10%;
}
.lp-container .lp-content .lp-reelle {
  position: absolute;
  right: -200px;
  bottom: 3%;
}
.lp-container .lp-content .lp-form {
  background-color: #FFFFFF;
  padding: 20px 40px 40px 40px;
  border-radius: 5px;
  border-top: 12px solid var(--color-primary);
  width: 40%;
  max-width: 600px;
  min-width: 402px;
  margin: auto;
  position: absolute;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.4);
  top: 20px;
  right: 20px;
}
.lp-container .lp-content .lp-form h2 {
  font-family: DINCondensed-Bold, sans-serif;
  font-size: 28px;
  color: var(--color-secondary);
}
.lp-container .lp-content .lp-form .form-control:focus {
  box-shadow: 0 0 2px 1px var(--color-primary);
}
.lp-container .lp-content .lp-form input {
  border: 1px solid #BCD2D8;
}
.lp-container .lp-content .lp-form input[type=submit] {
  background-color: var(--color-primary);
  border: 0;
  color: #FFFFFF;
  padding: 10px 20px;
  width: 100%;
  font-weight: 600;
  transition: background-color 600ms;
}
.lp-container .lp-content .lp-form input[type=submit]:hover {
  background-color: var(--color-secondary);
}
.lp-container .lp-content .lp-form .screen-reader-response {
  display: none;
}

@media only screen and (max-height: 830px) {
  .lp-container .lp-content .lp-form {
    transform: scale(0.7);
    top: -50px;
    right: -60px;
  }
  .lp-container .lp-content .lp-price {
    width: 20%;
    bottom: 110px;
  }
  .lp-container .lp-content .lp-description {
    width: 25%;
    bottom: 110px;
  }
}
@media only screen and (max-height: 830px) and (max-width: 992px) {
  .lp-container .lp-content .lp-price {
    left: 0;
    right: unset;
    bottom: 220px;
  }
}
@media only screen and (max-height: 830px) and (max-width: 740px) {
  .lp-container .lp-content .lp-form {
    transform: scale(1);
  }
  .lp-container .lp-content .lp-price {
    left: unset;
    right: 0;
    width: 400px;
  }
}
@media only screen and (max-width: 740px) {
  .lp-container .lp-content {
    background-position-x: 75%;
    height: 400px;
  }
  .lp-container .lp-content .lp-form {
    top: 400px;
    left: 0;
    right: 0;
    max-width: 100%;
    min-width: 270px;
    width: 100%;
    border-radius: 0px;
  }
  .lp-container .lp-content .lp-title {
    width: 270px;
    margin: 0 auto;
    display: block;
    padding-top: 10%;
  }
  .lp-container .lp-content .lp-lancement {
    bottom: 15%;
    width: 30%;
  }
  .lp-container .lp-content .lp-reelle {
    position: absolute;
    right: -270px;
    bottom: 3%;
  }
}
/*Header*/
header {
  background-color: var(--color-primary);
  font-family: Kiona-Bold, serif;
  font-size: 15px;
  transition: box-shadow 500ms;
  z-index: 1000;
  position: fixed;
  width: 100%;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);
}
header .container {
  display: flex;
  height: 80px;
}
header .logo {
  margin-right: auto;
  height: 110px;
  width: auto;
  z-index: 1000;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.2);
}
header a {
  color: #A0A8AA;
  text-decoration: none;
}
header a:hover {
  color: #FFFFFF;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul {
  list-style: none;
  display: flex;
  margin: 0 20px 0 0;
  padding: 0;
  height: 100%;
  align-items: center;
}
header nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}
header nav ul li a {
  margin-right: 20px;
}
header nav ul li.current-menu-item a {
  color: #FFFFFF;
}
header nav ul .menu-item-has-children {
  position: relative;
}
header nav ul .menu-item-has-children .sub-menu {
  position: absolute;
  display: none;
  background-color: #fff;
  top: 80px;
  height: unset;
  min-width: 300px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);
}
header nav ul .menu-item-has-children .sub-menu .menu-item {
  padding: 14px 15px;
  height: unset;
  display: block;
  border-bottom: 2px solid #00383f;
}
header nav ul .menu-item-has-children .sub-menu .menu-item a:hover {
  color: #00383f;
}
header nav ul .menu-item-has-children .sub-menu .menu-item.current-menu-item a {
  color: #00383f;
}
header nav ul .menu-item-has-children:hover .sub-menu {
  display: block;
}
header nav .contact-btn {
  border: 1px solid #FFF;
  padding: 10px 20px;
  color: #FFF;
  text-align: center;
}
header nav .lang-switch {
  color: #A0A8AA;
  margin-left: 40px;
  display: none;
}
header nav #hamburger, header nav #close {
  display: none;
  cursor: pointer;
}

#header-margin {
  margin-bottom: 80px;
}

#mobile-menu-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.6666666667);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*Footer*/
footer {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  padding: 80px 0;
  background-position: right, left;
  background-repeat: no-repeat;
  background-size: contain;
}
footer h2 {
  font-family: Kiona-Bold, serif;
  font-size: 24px;
}
footer .links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Kiona-Bold, serif;
}
footer .links li a {
  text-decoration: none;
  color: #E8E8E8;
  display: inline-block;
  margin-bottom: 15px;
}
footer .social-links img {
  height: 20px;
}
footer .footer-form form {
  display: flex;
}
footer .footer-form form input[type=email] {
  padding: 12px 20px;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: #AFAEAE;
  font-size: 14px;
}
footer .footer-form form input[type=submit] {
  padding: 10px 30px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: #44ACA1;
  color: #FFFFFF;
  font-family: Kiona-Bold, serif;
}

.copyright {
  background-color: #04282E;
  color: #FFFFFF;
  padding: 20px 0;
}
.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright a {
  color: #FFFFFF;
  text-decoration: none;
}

/*Contact Form*/
.wpcf7-form p {
  margin: 0px;
}

.row-project select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}

.wpcf7-radio {
  padding: 0;
  margin-top: 6px;
  display: block;
}
.wpcf7-radio .wpcf7-list-item {
  margin-left: 40px;
}
@media (max-width: 576px) {
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0px;
  }
  .wpcf7-radio .wpcf7-list-item:not(.first) {
    margin-top: 7px;
  }
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  padding: 0 0 0 2rem;
  position: relative;
}
.wpcf7-radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpcf7-radio .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.wpcf7-radio .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  left: 0px;
  top: -2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 0.05rem solid #bababa;
  background: rgba(255, 255, 255, 0.1607843137);
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  left: 4px;
  top: 2px;
  background-color: #49B5A9;
  height: 12px;
  width: 12px;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:focus + .wpcf7-list-item-label::before {
  outline: 0.05rem dotted;
}
.wpcf7-radio .wpcf7-list-item:first-of-type {
  margin-left: 0px;
}

.wpcf7-not-valid-tip {
  color: var(--color-danger);
}

.wpcf7-form.sent .wpcf7-response-output {
  background-color: #EBF5F1;
  color: var(--color-success);
  margin-top: 20px;
  padding: 8px 5px;
}

.wpcf7-form.invalid .wpcf7-response-output {
  background-color: #FFEBEB;
  color: var(--color-danger);
  margin-top: 20px;
  padding: 8px 5px;
}

/*Home*/
.page-template-home header:not(.sticky) {
  box-shadow: unset;
  background-color: #04404A;
}

.banner-container {
  height: 80vh;
  overflow: hidden;
  position: relative;
}
.banner-container .slick-track, .banner-container .row {
  height: 80vh;
}
@media only screen and (max-width: 992px) {
  .banner-container a.slick-slide {
    pointer-events: none;
  }
}
.banner-container #banner-dots {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-container #banner-dots .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner-container #banner-dots .slick-dots li button {
  font-size: 0;
  padding: 3px;
  border-radius: 100px;
  border: 1px solid #FFF;
  background-color: transparent;
}
.banner-container #banner-dots .slick-dots li.slick-active button {
  background-color: #FFFFFF;
  transform: scale(1.4);
}
.banner-container .banner-overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 5%, rgba(255, 255, 255, 0) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 0 2px #000000;
}
.banner-container .banner-overlay h1 {
  font-size: 50px;
  font-family: Kiona-Bold, serif;
}
.banner-container .banner-overlay h3 {
  font-size: 30px;
  font-family: Kiona-Bold, serif;
}
@media only screen and (max-width: 992px) {
  .banner-container .banner-overlay {
    text-align: center;
  }
  .banner-container .banner-overlay h1 {
    font-size: 30px;
  }
  .banner-container .banner-overlay h3 {
    font-size: 19px;
    max-width: 260px;
  }
}
.banner-container .slide1 .banner-overlay .slide-footer {
  position: absolute;
  bottom: 20px;
  left: 0;
}
.banner-container .slide1 .banner-overlay .subtitle {
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.banner-container .slide1 .banner-overlay .subtitle h1 {
  font-size: 40px;
  font-family: Kiona-SemiBold, serif;
  text-transform: uppercase;
  color: #05383f;
}
.banner-container .slide1 .banner-overlay .subtitle h2 {
  font-size: 40px;
  font-family: Kiona-Light, serif;
  text-transform: uppercase;
  color: #05383f;
}
@media only screen and (max-width: 1145px) {
  .banner-container .slide1 .banner-overlay .subtitle {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .banner-container .slide1 .banner-overlay .subtitle h1 {
    font-size: 22px;
  }
  .banner-container .slide1 .banner-overlay .subtitle h2 {
    font-size: 22px;
  }
}
.banner-container .slide3 .banner-overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 5%, rgba(255, 255, 255, 0) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-container .slide3 .banner-overlay .slide-lancement {
  position: absolute;
  left: 0;
  bottom: 2%;
}
@media only screen and (max-width: 992px) {
  .banner-container .slide3 .banner-overlay .slide-lancement {
    bottom: 20%;
    width: 200px;
  }
}
.banner-container .slide3 .banner-overlay .slide-title {
  position: absolute;
  bottom: 2%;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.banner-container .slide3 .banner-overlay .slide-title img {
  max-width: 100%;
  width: 350px;
}
@media only screen and (max-width: 992px) {
  .banner-container .slide3 .banner-overlay .slide-title {
    max-width: 100%;
    width: 280px;
  }
}
.banner-container .slide3 .banner-overlay .banner-title2 {
  position: absolute;
  top: 40px;
  background-color: transparent;
  font-family: ArnoPro, serif;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  color: #e4dfd5;
}
.banner-container .slide3 .banner-overlay .banner-title2 h1 {
  font-size: 70px;
  font-family: ArnoPro, serif;
}
.banner-container .slide3 .banner-overlay .banner-title2 h2 {
  font-size: 50px;
  font-family: ArnoPro, serif;
}
.banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  width: 100%;
}
.banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 h1 {
  margin-left: -610px;
}
.banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  margin-top: -90px;
}
.banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 h1 {
  font-size: 60px;
}
.banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
  position: relative;
  top: 10px;
}
@media only screen and (max-height: 720px) {
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 h1 {
    font-size: 45px;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 h2 {
    font-size: 40px;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 h1 {
    font-size: 40px;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
    margin-top: 20px;
    width: 240px;
  }
}
@media only screen and (max-width: 992px) {
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 h1 {
    font-size: 32px;
    margin: 0;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle1 h2 {
    font-size: 16px;
    margin-left: 5px !important;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 {
    margin-top: -30px;
    flex-direction: column;
    align-items: center;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 h1 {
    font-size: 32px;
  }
  .banner-container .slide3 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
    margin-top: -15px;
    width: 60%;
  }
}
.banner-container .slide2 .banner-overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 5%, rgba(255, 255, 255, 0) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-container .slide2 .banner-overlay h1 {
  font-family: Kiona-Bold, serif;
  font-size: 70px;
  text-align: center;
}
.banner-container .slide2 .banner-overlay h3 {
  font-family: DINCondensed-Bold, serif;
  font-size: 36px;
}
.banner-container .slide2 .banner-overlay .slide-title {
  position: absolute;
  top: 12%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.banner-container .slide2 .banner-overlay .slide-title img {
  max-width: 100%;
  width: 400px;
}
.banner-container .slide2 .banner-overlay .slide-lancement {
  position: absolute;
  left: 0;
  bottom: 10%;
}
.banner-container .slide2 .banner-overlay .slide-reelle {
  position: absolute;
  right: -200px;
  bottom: 3%;
}
@media only screen and (max-width: 750px) {
  .banner-container .slide2 .banner-overlay .slide-reelle {
    position: absolute;
    right: -300px;
  }
}
.banner-container .slide2 .actualites-stripe {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 0;
  left: 40%;
  padding: 70px 80px;
}
.banner-container .slide2 .actualites-stripe h1 {
  color: var(--color-primary);
  font-size: 42px;
  font-family: DINCondensed-Bold, serif;
}
.banner-container .slide2 .actualites-stripe p {
  color: var(--color-primary);
  font-size: 16px;
}
.banner-container .slide2 .actualites-stripe a {
  font-family: Kiona-Bold, serif;
  color: var(--color-primary);
  text-decoration: none;
  background-color: #FFF;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
  border: 1px solid var(--color-secondary);
  border-radius: 2px;
}
.banner-container .slide4 .banner-overlay .slide-footer {
  position: absolute;
  bottom: 20px;
  left: -30px;
}
.banner-container .slide5 .banner-overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-container .slide5 .banner-overlay .slide-lancement {
  position: absolute;
  left: 0;
  bottom: 2%;
}
@media only screen and (max-width: 992px) {
  .banner-container .slide5 .banner-overlay .slide-lancement {
    bottom: 20%;
    width: 200px;
  }
}
.banner-container .slide5 .banner-overlay .slide-title {
  position: absolute;
  bottom: 2%;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.banner-container .slide5 .banner-overlay .slide-title img {
  max-width: 100%;
  width: 700px;
}
@media only screen and (max-width: 992px) {
  .banner-container .slide5 .banner-overlay .slide-title {
    max-width: 100%;
    width: 100%;
  }
  .banner-container .slide5 .banner-overlay .slide-title img {
    width: 500px;
  }
}
.banner-container .slide5 .banner-overlay .banner-title2 {
  position: absolute;
  top: 40px;
  background-color: transparent;
  font-family: ArnoPro, serif;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.banner-container .slide5 .banner-overlay .banner-title2 h1 {
  font-size: 50px;
  font-family: ArnoPro, serif;
  color: #133455;
  text-shadow: unset;
  text-align: center;
  margin: 80px 0 auto !important;
}
.banner-container .slide5 .banner-overlay .banner-title2 h1 span {
  color: #487a53;
  font-size: 59px;
  display: inline-block;
  padding: 0 13px;
}
@media only screen and (max-width: 576px) {
  .banner-container .slide5 .banner-overlay .banner-title2 h1 span {
    font-size: 37px;
  }
}
.banner-container .slide5 .banner-overlay .banner-title2 h1 img {
  display: inline;
}
@media only screen and (max-width: 576px) {
  .banner-container .slide5 .banner-overlay .banner-title2 h1 img {
    width: 220px;
  }
}
.banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  width: 100%;
}
.banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 h1 {
  margin-left: -610px;
}
.banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  margin-top: -90px;
}
.banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 h1 {
  font-size: 60px;
}
.banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
  position: relative;
  top: 10px;
}
@media only screen and (max-height: 720px) {
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 h1 {
    font-size: 45px;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 h2 {
    font-size: 40px;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 h1 {
    font-size: 40px;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
    margin-top: 20px;
    width: 240px;
  }
}
@media only screen and (max-width: 992px) {
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 h1 {
    font-size: 32px;
    margin: 0;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle1 h2 {
    font-size: 16px;
    margin-left: 5px !important;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 {
    margin-top: -30px;
    flex-direction: column;
    align-items: center;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 h1 {
    font-size: 32px;
  }
  .banner-container .slide5 .banner-overlay .banner-title2 .subtitle2 .slide-autrement {
    margin-top: -15px;
    width: 60%;
  }
}
.banner-container #banner-social {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px 35px;
  transition: background-color 300ms;
  background-color: rgba(255, 255, 255, 0.4);
}
.banner-container #banner-social .banner-social-title {
  display: block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font: normal normal 400 18px/22px Calibri;
  color: #34656A;
}

.home-projects {
  padding: 0 0 200px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .home-projects {
    padding: 0 0 130px;
  }
}
.home-projects .section-title {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 60px 0 110px;
}
@media (max-width: 576px) {
  .home-projects .section-title {
    margin: 60px 0 60px;
  }
}
.home-projects .section-title h2 {
  font-size: 38px;
  color: #043239;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10%;
  margin: auto;
  margin-bottom: 0px !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .home-projects .section-title h2 {
    font-size: 40px;
    line-height: 45px;
    padding: 0 15px;
  }
}
.home-projects .section-title::before, .home-projects .section-title::after {
  content: "";
  height: 1px;
  background-color: #043239;
  width: 30%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  position: absolute;
  z-index: 0;
}
.home-projects .section-title::before {
  left: 0;
}
.home-projects .section-title::after {
  right: 0;
}
.home-projects .projects-cards {
  max-width: 90%;
  margin: auto;
}
@media (max-width: 576px) {
  .home-projects .projects-cards {
    max-width: 100%;
  }
}
.home-projects .projects-cards .single-project {
  width: calc(100% - 25px);
  height: 650px;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .home-projects .projects-cards .single-project {
    height: 500px;
  }
}
.home-projects .projects-cards .single-project .single-project-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  z-index: 1;
}
.home-projects .projects-cards .single-project .single-project-content .project-title-before {
  color: #fff;
  font: normal normal normal 75px/80px Retro;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .home-projects .projects-cards .single-project .single-project-content .project-title-before {
    font-size: 60px;
    line-height: 65px;
  }
}
.home-projects .projects-cards .single-project .single-project-content .project-title {
  color: #fff;
  font: normal normal normal 50px/63px Kiona-Bold;
  margin-bottom: 70px;
}
@media (max-width: 576px) {
  .home-projects .projects-cards .single-project .single-project-content .project-title {
    font-size: 40px;
    line-height: 45px;
  }
}
.home-projects .projects-cards .single-project .single-project-content .project-btn {
  font: normal normal normal 17px/20px Calibri;
  background-color: #D5B571;
  border: 1px solid #B28724;
  color: #fff;
  border-radius: 2px;
  text-transform: none;
  text-decoration: unset;
  padding: 15px 50px 16px 30px;
  position: relative;
}
.home-projects .projects-cards .single-project .single-project-content .project-btn:hover {
  background-color: 1px solid #B28724;
}
.home-projects .projects-cards .single-project .single-project-content .project-btn:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 15px;
  background-image: url(./assets/images/double-chevron-white.png);
  background-size: cover;
}
.home-projects .projects-cards .single-project::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #043239;
  position: absolute;
  top: -25px;
  left: 25px;
}
.home-projects .projects-cards .single-project.first-project {
  margin-top: 80px;
  margin-left: auto;
}
.home-projects .projects-cards .single-project.first-project::before {
  top: 25px;
  left: -25px;
}
@media (max-width: 992px) {
  .home-projects .projects-cards .single-project.first-project {
    margin-top: 0px;
    margin-bottom: 90px;
  }
}
.home-projects .projects-cards .single-project.second-project {
  margin-right: auto;
}
.home-projects .projects-cards .single-project.second-project::before {
  top: 25px;
  right: -25px;
}
.home-projects::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(./assets/images/home-projects-bg.webp);
  background-size: cover;
  width: 700px;
  height: 700px;
}

.home-about .home-about-content {
  padding: 100px 0 50px;
}
.home-about .home-about-content .about-content-img img {
  width: 100%;
}
@media (max-width: 992px) {
  .home-about .home-about-content .about-content {
    padding-top: 40px;
  }
}
.home-about .home-about-content .about-content .content-title {
  font: normal normal normal 38px/44px Kiona-Bold;
  color: #043239;
  position: relative;
  padding: 0 0 30px;
  margin-bottom: 45px;
}
.home-about .home-about-content .about-content .content-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #043239;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.home-about .home-about-content .about-content .content-desc {
  font: normal normal normal 18px/24px Calibri;
  color: #043239;
  text-align: justify;
}
.home-about .home-about-content .about-content .content-desc br {
  content: "";
  display: block;
  margin: 25px;
}
.home-about .home-about-content .about-content .content-btn {
  font: normal normal normal 17px/20px Calibri;
  background-color: #043239;
  border: 1px solid #043239;
  color: #fff;
  border-radius: 2px;
  text-transform: none;
  text-decoration: unset;
  padding: 15px 50px 16px 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 70px;
  position: relative;
}
.home-about .home-about-content .about-content .content-btn:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 15px;
  background-image: url(./assets/images/double-chevron-white.png);
  background-size: cover;
}

.home-adv {
  background: url(./assets/images/raisons-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 100px 0 170px;
  position: relative;
}
@media (max-width: 768px) {
  .home-adv {
    padding: 120px 0 100px;
  }
}
.home-adv .section-title {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 0 60px;
  z-index: 2;
}
@media (max-width: 768px) {
  .home-adv .section-title {
    margin: 0 0 60px;
  }
}
.home-adv .section-title h2 {
  font: normal normal normal 38px/44px Kiona-Bold;
  color: #043239;
  margin-bottom: 20px !important;
  position: relative;
  z-index: 2;
}
.home-adv .section-title .description {
  font: normal normal 400 17px/22px Calibri;
  color: #043239;
  max-width: 450px;
  margin: auto;
  display: block;
}
.home-adv .adv-list {
  max-width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .home-adv .adv-list {
    max-width: 100%;
  }
}
.home-adv .adv-list .single-adv {
  border: 2px solid #043239;
  background-color: #fff;
  padding: 25px 20px 20px;
  height: 100%;
  text-align: center;
}
.home-adv .adv-list .single-adv .adv-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.home-adv .adv-list .single-adv .adv-title {
  font: normal normal normal 19px/24px Kiona-Bold;
  color: #043239;
  margin-bottom: 15px;
  text-align: center;
}
.home-adv .adv-list .single-adv .adv-desc {
  font: normal normal 400 14px/21px Calibri;
  color: #043239;
  margin-bottom: 0px;
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
}
.home-adv:before {
  content: "";
  background: #fff;
  background: linear-gradient(180deg, #fff 8%, #fff 40%, rgba(0, 0, 0, 0) 86%);
  top: 0px;
  left: 0;
  right: 0;
  height: 500px;
  position: absolute;
  z-index: 1;
}

.home-map {
  background-color: #043239;
  padding: 100px 0 100px;
}
.home-map .section-title {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 0 100px;
}
.home-map .section-title h2 {
  font: normal normal normal 38px/44px Kiona-Bold;
  color: #fff;
  background-color: #043239;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 6%;
  margin-bottom: 0px !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .home-map .section-title h2 {
    margin: unset;
  }
}
.home-map .section-title::before, .home-map .section-title::after {
  content: "";
  height: 1px;
  background-color: #fff;
  width: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  position: absolute;
  z-index: 1;
}
@media (max-width: 576px) {
  .home-map .section-title::before, .home-map .section-title::after {
    display: none;
  }
}
.home-map .section-title::before {
  left: 0;
}
.home-map .section-title::after {
  right: 0;
}
.home-map .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.home-map .map-container #map {
  height: 800px;
}
.home-map .map-container .locations-details {
  position: absolute;
  left: 30px;
  bottom: 15px;
}
@media (max-width: 576px) {
  .home-map .map-container .locations-details {
    position: relative;
    left: unset;
    bottom: unset;
    margin-top: 30px;
  }
}
.home-map .map-container .locations-details .locations-list {
  list-style: none;
  padding: 35px 35px;
  background-color: #fff;
  box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
  margin-bottom: 20px;
}
.home-map .map-container .locations-details .locations-list .single-location {
  border-bottom: 1px solid #DBDBDB;
}
.home-map .map-container .locations-details .locations-list .single-location a {
  position: relative;
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-decoration: unset;
  cursor: pointer;
}
.home-map .map-container .locations-details .locations-list .single-location a .location-icon {
  width: 35px;
  height: 35px;
}
.home-map .map-container .locations-details .locations-list .single-location a .location-title {
  font: normal normal 400 17px/22px Calibri-bold;
  color: #043239;
  padding-right: 110px;
}
.home-map .map-container .locations-details .locations-list .single-location a .location-chevron {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #043239;
  border-radius: 50%;
  padding: 4px;
  right: 0;
}
.home-map .map-container .locations-details .locations-list .single-location.active a .location-title {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page-template-apropos .banner-container .img-full {
    height: 80vh;
  }
}
.palms-corners {
  padding: 120px 0;
  background-position: bottom right, top left;
  background-repeat: no-repeat;
  background-size: auto;
}

.alternate-grid .row {
  margin-left: 10px;
  margin-right: 10px;
}

.alternate-grid .row:nth-child(1) {
  background-color: #0D5D5A;
  color: #FFFFFF;
}

.alternate-grid .row:nth-child(2) {
  background-color: #009B95;
  color: #FFFFFF;
}

.alternate-grid .row:nth-child(3) {
  background-color: var(--color-secondary);
  color: #FFFFFF;
}

.alternate-grid .row .col-lg-6 {
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.services-container {
  position: relative;
}

.services-float {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.0784313725);
  padding: 40px 40px;
  background-color: #FFFFFF;
  background-position: right, left;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 70%;
  margin: 0 auto;
}

.services-float p {
  font-family: Calibri-Bold, serif;
  color: var(--color-secondary);
  font-size: 20px;
}

.services-float .float-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.services-overlay {
  background: transparent linear-gradient(180deg, rgba(25, 60, 57, 0) 0%, var(--color-secondary) 100%) 0 0 no-repeat padding-box;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
}

.services-overlay h2 {
  text-align: center;
  font-size: 50px;
}

.lancement {
  padding: 160px 0;
}

.lancement h2 {
  color: var(--color-secondary);
  font-size: 38px;
}

.lancement form {
  background-color: #FFFFFF;
  border: 2px solid #2B6C66;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
}

.lancement form label {
  font-family: Calibri-Bold, serif;
}

.lancement form input[type=submit] {
  width: 100%;
  border: 0;
  background-color: #054659;
  color: #FFFFFF;
  padding: 10px;
}

/*A propos*/
.banner-text {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text .subtitle {
  color: #169B95;
  letter-spacing: 10px;
  font-size: 24px;
}

.redirect-section {
  background-color: var(--color-secondary);
  background-position: bottom left, top right;
  background-repeat: no-repeat;
  background-size: 50%;
}

.redirect-section .float-right, .redirect-section .float-left {
  background-color: #FFFFFF;
  padding: 40px;
  color: var(--color-secondary);
}

.redirect-section .float-right {
  position: relative;
  right: -20%;
}

.redirect-section .float-left {
  position: relative;
  left: -20%;
}

.palm-btn {
  text-transform: uppercase;
  padding: 12px 40px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-decoration: none;
  font-family: Kiona-Bold, serif;
  display: inline-block;
  border-radius: 3px;
  transition: all 400ms;
}

.palm-btn:hover {
  background: transparent linear-gradient(261deg, #19B4B4 0%, #17A39F 50%, #169B95 71%, #208989 100%) 0 0 no-repeat padding-box;
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(0.95);
}

.img-with-bg-square, .img-with-bg-square > img {
  position: relative;
}

.img-with-bg-square.square-left .bg-square {
  height: 300px;
  width: 300px;
  background-color: #169B95;
  position: absolute;
  top: -50px;
  left: -50px;
}

.img-with-bg-square.square-right .bg-square {
  height: 300px;
  width: 300px;
  background-color: #169B95;
  position: absolute;
  top: -50px;
  right: -50px;
}

/*Appartements*/
.banner-overlay.appartements {
  top: 50%;
  background: linear-gradient(0deg, var(--color-secondary) 5%, rgba(255, 255, 255, 0) 100%);
}

.banner-overlay.appartements h1 {
  font-size: 50px;
}

.video-appartemenets {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.video-appartemenets h2 {
  color: var(--color-secondary);
  font-size: 38px;
}
.video-appartemenets ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 70px 0 30px 0;
  flex-wrap: wrap;
}
.video-appartemenets ul li {
  margin-bottom: 40px;
}
.video-appartemenets ul li a {
  color: #444;
  background-color: #F5F5F5;
  border-radius: 100px;
  padding: 18px 60px;
  text-decoration: none;
  margin: 10px;
  font-size: 20px;
}
.video-appartemenets ul li a[aria-selected=true] {
  color: #159B95;
  border: 1px solid #159B95;
}
.video-appartemenets ul.smaller {
  margin: 0;
}
.video-appartemenets ul.smaller li a {
  padding: 16px 30px;
  font-size: 16px;
}
.video-appartemenets .grid {
  display: flex;
}
.video-appartemenets .grid-col {
  flex: 1;
}
.video-appartemenets .grid-item {
  overflow: hidden;
  margin: 6px;
  cursor: pointer;
  display: block;
}
.video-appartemenets .grid-item img {
  width: 100%;
  transition: all 400ms;
}
.video-appartemenets .grid-item img:hover {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .video-appartemenets .grid-col--3 {
    display: none;
  }
}
.video-appartemenets iframe {
  min-height: 600px;
}
@media (max-width: 768px) {
  .video-appartemenets iframe {
    min-height: 450px;
  }
}

.visit {
  border-top: 1px solid #d3d3d3;
  background-color: #F5F5F5;
  padding: 40px 0 60px 0;
}
.visit h2 {
  color: #054659;
}
.visit ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 70px 0;
  flex-wrap: wrap;
}
.visit ul li {
  margin-bottom: 40px;
}
.visit ul li a {
  color: #A0A8AA;
  background-color: #FFFFFF;
  border-radius: 100px;
  padding: 18px 60px;
  text-decoration: none;
  margin: 10px;
  font-size: 20px;
}
.visit ul li a[aria-selected=true] {
  color: #159B95;
  border: 1px solid #159B95;
}

.type-hover {
  text-decoration: none;
}
.type-hover h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 4px solid #FFF;
  color: #FFF;
}
.type-hover img {
  width: 100%;
  height: auto;
}

.types-head {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 80px;
}
.types-head a {
  margin-bottom: 40px 0;
}

.appartement-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.types-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.types-content .details {
  background-color: #F5F5F5;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.gallery-container {
  position: relative;
  overflow-y: hidden;
}

#gallery-nav {
  background-color: rgba(4, 50, 57, 0.6666666667);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 80%;
  padding: 10px 20px;
}

#gallery-nav img {
  margin: 10px 0;
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

.type-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.type-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: var(--color-secondary);
  color: #FFFFFF;
  width: 100%;
}

.page-template-appartements-bouskoura .lancement, .page-template-galerie-commerciale .lancement {
  background-image: url("./assets/images/contact-form-bg2.webp") !important;
  background-position-y: top;
  background-repeat: no-repeat;
}

/*contact*/
.contact .container {
  background-color: var(--color-secondary);
  color: #FFF;
  padding: 40px;
  position: relative;
  top: -200px;
}

.contact input, .contact textarea {
  border-radius: 1px;
}

.contact input[type=submit] {
  background-color: #49B5A9;
  color: #FFFFFF;
  width: 100%;
  border: 0;
  padding: 10px 30px;
}

.link-action {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 400ms;
}

.link-action:hover {
  color: #49B5A9;
}

/*Actualites*/
.actualites {
  background-color: var(--color-secondary);
}
.actualites .actualites-title {
  color: #FFF;
}
.actualites .article {
  color: #FFF;
}
.actualites .article .thumbnail {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.actualites .article .content {
  min-height: 250px;
  background-color: #FFF;
}
.actualites .article .content .title a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 20px;
}
.actualites .article .content .title-underline {
  background-color: #000;
  height: 4px;
  width: 30%;
  margin-bottom: 20px;
  border-radius: 100px;
}
.actualites .article .content .excerpt {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}
.actualites .article .content .read-more {
  color: #169B95;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
.actualites .slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.actualites .slick-dots li button {
  font-size: 0;
  padding: 3px;
  border-radius: 100px;
  border: 1px solid #FFF;
  background-color: transparent;
  margin: 0 10px;
}
.actualites .slick-dots li.slick-active button {
  background-color: #FFFFFF;
  transform: scale(1.4);
}
.actualites .custom-pagination {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 80px;
}
.actualites .custom-pagination .page-numbers {
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  display: inline-block;
  min-width: 32px;
  padding: 2px;
  margin: 0 4px;
}
.actualites .custom-pagination .page-numbers.current {
  background-color: #FFFFFF;
  color: #00383F;
}
.actualites .custom-pagination .prev, .actualites .custom-pagination .next {
  padding: 4px 8px;
}

.hover-zoom {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 500ms;
}

.hover-zoom img:hover {
  transform: scale(1.2);
}

.floating-controls {
  position: fixed;
  right: 0;
  top: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 8px 1px rgba(102, 102, 102, 0.6);
  background-color: #0D5D5A;
  z-index: 9;
}

.floating-controls a {
  padding: 15px 10px;
}

.floating-controls img {
  height: 50px;
  width: auto;
  filter: invert(1);
}
.floating-controls img.without-filter {
  filter: unset;
}

@media only screen and (max-width: 600px) {
  .floating-controls a {
    padding: 12px 6px;
  }
  .floating-controls img {
    height: 40px;
    width: auto;
    filter: invert(1);
  }
}
@media only screen and (max-width: 1200px) {
  .no-scroll {
    overflow: hidden;
  }
  header nav ul {
    display: none;
  }
  header nav ul .contact-nav {
    position: absolute;
    bottom: 0;
    padding: 20px;
    left: 0;
    border: 0 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header nav #hamburger, header nav #close {
    display: inline-block;
  }
  header nav ul li {
    padding: 20px 0;
    border-top: 1px solid #26545B;
    width: 100%;
    height: unset;
    display: block;
    align-items: unset;
  }
  header nav li a {
    width: 100%;
    display: inline-block;
  }
  header nav ul li:first-child {
    padding-top: 0;
    border-top: 0;
  }
  header nav ul li:last-child {
    border-bottom: 1px solid #26545B;
  }
  header nav ul.show {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 30%;
    background-color: var(--color-secondary);
    z-index: 100000000;
    padding: 20px;
    transition: all 500ms;
  }
  header nav ul .menu-item-has-children .sub-menu {
    position: relative;
    background-color: unset;
    top: unset;
    height: unset;
    min-width: unset;
    box-shadow: unset;
    margin-top: 7px;
  }
  header nav ul .menu-item-has-children .sub-menu .menu-item {
    border: unset;
  }
  header nav ul .menu-item-has-children .sub-menu .menu-item a {
    position: relative;
  }
  header nav ul .menu-item-has-children .sub-menu .menu-item a:before {
    position: absolute;
    display: block;
    content: "";
    top: 9px;
    left: -15px;
    background-image: url("./assets/images/nav-item-circle.png");
    background-size: cover;
    width: 8px;
    height: 8px;
  }
  header nav ul {
    margin: 0;
  }
  #mobile-menu-overlay.show {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  footer {
    background-image: none !important;
    padding-top: 20px;
  }
  footer .row {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .col-lg-3 {
    margin-top: 40px;
  }
  /*home*/
  .banner-container .slide2 .banner-overlay h1 {
    font-size: 25px;
  }
  .banner-container .slide2 .banner-overlay h3 {
    margin-top: -10px;
    font-size: 15px;
    text-align: center;
  }
  .services-container {
    height: 600px;
  }
  .services-overlay {
    padding-top: 30px;
    justify-content: flex-start;
  }
  .services-float {
    background-image: none !important;
    max-width: 95%;
    margin: 0 auto;
  }
  .services-float img {
    width: 50px;
  }
  .services-float p {
    font-size: 18px;
  }
  .banner-container {
    overflow: visible;
  }
  .redirect-section .float-right {
    right: 0;
    top: -60px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .redirect-section .float-left {
    left: 0;
    top: -60px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .actualites-stripe {
    left: 15% !important;
  }
}
body.translatepress-ar {
  direction: rtl;
}
body.translatepress-ar header .logo {
  margin-right: unset;
  margin-left: auto;
}
body.translatepress-ar .lancement form {
  direction: rtl;
}
body.translatepress-ar .lancement form input[type=email] {
  direction: rtl !important;
}
@media only screen and (max-width: 1200px) {
  body.translatepress-ar header nav ul li a {
    margin-right: unset;
  }
}