@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-family: "Inter", sans-serif, -apple-system;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}

ul {
  list-style: none;
}

body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

body {
  background: #EFF0F5;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: large;
  overflow-x: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.42, 0, 0.24, 0.46);
  transition: 0.5s cubic-bezier(0.42, 0, 0.24, 0.46);
}

section {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
}

.container {
  width: calc(100% - 1vw);
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
.container .content {
  width: 100%;
}

.button {
  background-color: #227B94;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: "Inter", sans-serif, -apple-system;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background-color: rgb(0.4464285714, 1.3392857143, 4.5535714286);
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

img {
  width: 100%;
}

.no-scroll {
  overflow-Y: hidden !important;
}

.toHide {
  display: none !important;
}

a.cta-button {
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
}

a.cta-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 20px 40px;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
a.cta-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link:hover::after {
  width: 100%;
}
a.cta-link:hover svg {
  -webkit-transform: translateX(16px) rotate(-25deg);
          transform: translateX(16px) rotate(-25deg);
  z-index: 3;
}
a.cta-link:hover svg path {
  fill: #ffffff;
}
a.cta-link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link svg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.cta-link-sld {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  gap: 10px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  backdrop-filter: blur(4px);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
a.cta-link-sld::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link-sld:hover {
  border-color: #ffffff;
}
a.cta-link-sld:hover::after {
  width: 100%;
}
a.cta-link-sld:hover svg {
  -webkit-transform: translateX(16px) rotate(-25deg);
          transform: translateX(16px) rotate(-25deg);
  z-index: 3;
}
a.cta-link-sld:hover svg path {
  fill: #ffffff;
}
a.cta-link-sld:hover svg:first-of-type {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
a.cta-link-sld:hover svg:first-of-type path {
  fill: #050F33;
}
a.cta-link-sld span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link-sld svg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link-sld svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.cta-link-wht {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 20px 40px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #050F33;
  text-decoration: none;
  font-weight: bold;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.23s ease-in-out;
  transition: all 0.23s ease-in-out;
}
a.cta-link-wht::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.cta-link-wht:hover {
  color: #EFF0F5;
  border: 1px solid #CDCFD6;
}
a.cta-link-wht:hover::after {
  width: 100%;
}
a.cta-link-wht span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cta-link-green {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 20px 40px;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.cta-link-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  z-index: 0;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-link-green:hover span {
  color: #ffffff;
}
.cta-link-green:hover::after {
  width: 100%;
}
.cta-link-green span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cta-link-blue {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 20px 40px;
  background: #050F33;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.cta-link-blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #CDCFD6;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-link-blue:hover::after {
  width: 100%;
}
.cta-link-blue span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cta-link-blue-gd {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  gap: 10px;
  padding: 20px 40px;
  background: linear-gradient(92.76deg, #3B4B84 -25.35%, #050F33 113.59%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.cta-link-blue-gd::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #227B94;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-link-blue-gd:hover {
  border-color: #050F33;
}
.cta-link-blue-gd:hover::after {
  width: 100%;
}
.cta-link-blue-gd span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-blue {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 20px 40px;
  background: #050F33;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #CDCFD6;
  z-index: 1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-blue:hover::after {
  width: 100%;
}
.btn-blue:hover span {
  color: #050F33;
}
.btn-blue span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-green {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgb(62, 148, 172);
  gap: 10px;
  padding: 20px 40px;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  z-index: -1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-green:hover {
  color: #CDCFD6;
  border-color: #CDCFD6;
}
.btn-green:hover::after {
  width: 100%;
}

.btn-green-arrow {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 16px;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-green-arrow svg path {
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-green-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #CDCFD6;
  z-index: -1;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-green-arrow:hover {
  color: #CDCFD6;
}
.btn-green-arrow:hover::after {
  width: 100%;
}
.btn-green-arrow:hover svg path {
  fill: #227B94;
}

.btn-green-transp {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 10px;
  padding: 16px;
  cursor: pointer;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  overflow: hidden;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-green-transp svg path {
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.btn-green-transp::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 0;
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  z-index: -1;
  width: 200%;
  height: 150%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-green-transp:hover {
  color: #CDCFD6;
}
.btn-green-transp:hover::after {
  top: 0%;
}
.btn-green-transp:hover svg path {
  fill: #CDCFD6;
}

.nwlr-wrapper {
  width: 100%;
  position: relative;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 40px 70px -30px rgba(34, 123, 148, 0.5);
          box-shadow: 0px 40px 70px -30px rgba(34, 123, 148, 0.5);
  gap: 20px;
}
.nwlr-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(43deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.nwlr-wrapper .nwlr-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  overflow: hidden;
}
.nwlr-wrapper .nwlr-bg img {
  width: 100%;
  opacity: 0.1 !important;
}
.nwlr-wrapper .nwlr-title {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.nwlr-wrapper .nwlr-title span {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 36px;
  line-height: 56px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}
.nwlr-wrapper .nwlr-form {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
  z-index: 3;
}
.nwlr-wrapper .nwlr-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
.nwlr-wrapper .nwlr-form form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.nwlr-wrapper .nwlr-form form .form-group input[type=email] {
  height: 60px;
  padding: 15px 20px;
  font-size: 16px;
  background: #EFF0F5;
  border: 1px solid #EFF0F5;
  color: #050F33;
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus {
  background: #fff;
  border-color: #050F33;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus::-webkit-input-placeholder {
  letter-spacing: 1px;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus::-moz-placeholder {
  letter-spacing: 1px;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus:-ms-input-placeholder {
  letter-spacing: 1px;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus::-ms-input-placeholder {
  letter-spacing: 1px;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:focus::placeholder {
  letter-spacing: 1px;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]::-webkit-input-placeholder {
  color: #333;
  -webkit-transition: 0.24s ease-in-out;
  transition: 0.24s ease-in-out;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]::-moz-placeholder {
  color: #333;
  -moz-transition: 0.24s ease-in-out;
  transition: 0.24s ease-in-out;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]:-ms-input-placeholder {
  color: #333;
  -ms-transition: 0.24s ease-in-out;
  transition: 0.24s ease-in-out;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]::-ms-input-placeholder {
  color: #333;
  -ms-transition: 0.24s ease-in-out;
  transition: 0.24s ease-in-out;
}
.nwlr-wrapper .nwlr-form form .form-group input[type=email]::placeholder {
  color: #333;
  -webkit-transition: 0.24s ease-in-out;
  transition: 0.24s ease-in-out;
}

.nwlr-wrapper .nwlr-form form .form-group input[type=submit],
.nwlr-wrapper .nwlr-form form .form-group button {
  border: 1px solid #050F33;
  cursor: pointer;
  font-size: 18px;
  height: 60px;
}

.ctc-section {
  height: auto;
  padding: 70px 0;
}
.ctc-section .container {
  width: calc(100% - 100px);
  padding: 0;
}
.ctc-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.ctc-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ctc-section .container .content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 100px;
  background: #EFF0F5;
  position: relative;
  -webkit-box-shadow: 0px 40px 70px -30px rgba(5, 15, 51, 0.5);
          box-shadow: 0px 40px 70px -30px rgba(5, 15, 51, 0.5);
}
.ctc-section .container .content .bottom .ctc-bt-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ctc-section .container .content .bottom .ctc-bt-bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ctc-section .container .content .bottom::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(32, 42, 76);
  background: linear-gradient(32deg, rgb(32, 42, 76) 100%, rgb(5, 15, 51) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ctc-section .container .content .bottom .ctc-wrapper {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  width: 100%;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 75%;
      -ms-flex: 75%;
          flex: 75%;
  gap: 26px;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text span {
  text-transform: uppercase;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #CDCFD6;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe {
  background: transparent;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe .wpcf7{
    width: 100%;
  }
	
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: transparent;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #227B94;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field label {
  color: #ffffff;
  position: absolute;
  left: 0;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: rgba(255, 255, 255, 0.7176470588);
  line-height: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field label.top {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  color: #fff;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field textarea {
  font-size: 17px;
  background: transparent;
  color: #ffffff;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field input {
  font-size: 17px;
  background: transparent;
  color: #ffffff;
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field input.focused {
  border-bottom-color: transparent;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field input:focus {
  outline: 0;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field.forTxtArea label {
  top: 0;
}
.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .btn-form {
  font-size: 20px;
  cursor: pointer;
  -ms-flex-item-align: center;
      align-self: center;
}

.logo-section {
  background: #ffffff;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}
.logo-section img {
  width: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 540px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.logo-section img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: invert(1);
          filter: invert(1);
}
.logo-section:has(img:hover) {
  background: #050F33;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  background-color: #fff;
}
.main-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  z-index: -25;
}
.main-header.scrolled {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.main-header.scrolled .container {
  background: #fff;
  width: 100%;
}
.main-header.scrolled .container::after {
  bottom: 0;
}
.main-header.scrolled .container .content ul li a {
  color: #050F33;
}
.main-header.scrolled .container .content ul li a::after {
  background: #050F33;
}
.main-header.scrolled .container .content .logo a svg {
  width: 120px;
}
.main-header.scrolled .container .content .logo a svg path {
  fill: #050F33;
}
.main-header .container {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.main-header .container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background: rgba(255, 255, 255, 0.308);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0.4;
  z-index: 25;
}
.main-header .container .content .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.main-header .container .content .header-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
	align-items: center;
}
.main-header .container .content .header-nav .nav-list a {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  color: #050F33;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.main-header .container .content .header-nav .nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #ffffff;
  width: 0%;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main-header .container .content .header-nav .nav-list a:hover {
  opacity: 0.7;
}
.main-header .container .content .header-nav .nav-list a:hover::after {
  width: 100%;
}
.main-header .container .content .header-nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
}
.main-header .container .content .header-nav .logo svg {
  width: 250px;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-header .container .content .header-nav .logo svg path {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-header .container .content .header-nav .logo:hover a svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.main-header .container .content .header-nav .middle {
  padding: 12px;
}
.main-header .container .content .header-nav .middle a svg {
  width: 180px;
  height: auto;
}
.main-header .container .content .header-nav .middle a svg path {
  fill: #050F33;
}
.main-header .container .content .header-nav .middle .mobile-burg {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.main-header.forMob {
  height: 130px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.main-header.forMob .container {
  height: 100%;
}
.main-header.forMob .container .content .header-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: max-content;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1px;
}
.main-header.forMob .container .content .header-nav .middle, .main-header.forMob .container .content .header-nav .left, .main-header.forMob .container .content .header-nav .right {
  width: 100%;
}
.main-header.forMob .container .content .header-nav .left {
  margin-top: 60px;
}
.main-header.forMob .container .content .header-nav .middle {
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  visibility: visible;
  opacity: 1;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu:hover {
  height: 30px;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu span {
  display: block;
  height: 5px;
  width: 100%;
  background: #050F33;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu.open span:nth-child(1) {
  -webkit-transform: translateY(20px) rotate(45deg);
          transform: translateY(20px) rotate(45deg);
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu.open span:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
}
.main-header.forMob .container .content .header-nav .middle a svg {
  width: 170px;
}
.main-header.forMob .container .content .header-nav .middle a:hover svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.main-header.forMob .container .content .header-nav .left,
.main-header.forMob .container .content .header-nav .right {
  height: 0;
  position: relative;
  left: -200%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.main-header.forMob .container .content .header-nav .left ul,
.main-header.forMob .container .content .header-nav .right ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.main-header.forMob .container .content .header-nav .left ul li,
.main-header.forMob .container .content .header-nav .right ul li {
  width: 100%;
  position: relative;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.main-header.forMob .container .content .header-nav .left ul li a,
.main-header.forMob .container .content .header-nav .right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(85, 93, 121, 0.231372549);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  font-size: 24px;
  position: relative;
  z-index: 3;
}
.main-header.forMob .container .content .header-nav .left ul li::before,
.main-header.forMob .container .content .header-nav .right ul li::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background: #227B94;
  -webkit-transition: 0.34s linear;
  transition: 0.34s linear;
}
.main-header.forMob .container .content .header-nav .left ul li::after,
.main-header.forMob .container .content .header-nav .right ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(1.26);
          transform: translateY(-50%) scale(1.26);
  width: 30px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.0001 5.99976H1.00012" stroke="%23227B94" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.0003 11C12.0003 11 17.0002 7.3176 17.0002 6C17.0002 4.6824 12.0002 1 12.0002 1" stroke="%23227B94" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}
.main-header.forMob .container .content .header-nav .left ul li:hover,
.main-header.forMob .container .content .header-nav .right ul li:hover {
  color: #fff;
}
.main-header.forMob .container .content .header-nav .left ul li:hover a,
.main-header.forMob .container .content .header-nav .right ul li:hover a {
  color: #fff;
  letter-spacing: 1.5px;
}
.main-header.forMob .container .content .header-nav .left ul li:hover::before,
.main-header.forMob .container .content .header-nav .right ul li:hover::before {
  width: 100%;
}
.main-header.forMob .container .content .header-nav .left ul li:hover::after,
.main-header.forMob .container .content .header-nav .right ul li:hover::after {
  height: 30px;
  -webkit-transform: translateY(-50%) scale(1.26);
          transform: translateY(-50%) scale(1.26);
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.0001 11.9998H4.00012" stroke="%23141B34" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.0003 17C15.0003 17 20.0002 13.3176 20.0002 12C20.0002 10.6824 15.0002 7 15.0002 7" stroke="%23141B34" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-header.open {
  height: 100% !important;
}
.main-header.open .container {
  height: 100%;
}
.main-header.open .container .content .header-nav .left,
.main-header.open .container .content .header-nav .right {
  height: 100%;
  opacity: 1;
  left: 0;
  visibility: visible;
}
@media (max-width: 768px) {
  .main-header {
    padding: 15px 20px;
  }
  .nav-list {
    gap: 1rem;
  }
  .nav-list a {
    font-size: 0.9rem;
  }
  .logo svg {
    width: 40px;
    height: 40px;
  }
}
footer.footer {
  background: #050F33;
}
footer.footer .top {
  padding: 60px 100px;
}
footer.footer .top .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer.footer .top .social-links li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 50px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 500;
  color: #555D79;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .top .social-links li a::after {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -12px;
  left: 0;
  background: #227B94;
  opacity: 0.8;
  z-index: 5;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .top .social-links li a img {
  width: 50px;
  height: 50px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .top .social-links li a span {
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .top .social-links li a:hover {
  color: #ffffff;
}
footer.footer .top .social-links li a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer.footer .top .social-links li a:hover span {
  color: #227B94;
}
footer.footer .top .social-links li a:hover::after {
  width: 100%;
}
footer.footer .bottom {
  padding: 60px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer.footer .bottom .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
footer.footer .bottom .left .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer.footer .bottom .left .footer-logo a {
  position: relative;
}
footer.footer .bottom .left .footer-logo a:hover img {
  -webkit-transform: scale(1.06) translateX(12px);
          transform: scale(1.06) translateX(12px);
}
footer.footer .bottom .left .footer-logo a img {
  width: 180px;
  -webkit-transform-origin: center;
          transform-origin: center;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .bottom .left .copyright-text span {
  font-size: 18px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #CDCFD6;
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
footer.footer .bottom .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer.footer .bottom .right .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
footer.footer .bottom .right .footer-menu .footer-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
footer.footer .bottom .right .footer-menu .footer-menu-list li a {
  position: relative;
  color: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
footer.footer .bottom .right .footer-menu .footer-menu-list li a::after {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
footer.footer .bottom .right .footer-menu .footer-menu-list li a:hover::after {
  width: 100%;
}

.hero-section {
  height: auto;
  position: relative;
  min-height: 120vh;
  width: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 110px;
}
.hero-section .splide__arrows {
  z-index: 30;
}
.hero-section .splide {
  height: 120vh;
  width: 100%;
  z-index: 97;
}
.hero-section .splide .container {
  width: 100%;
  height: 100%;
  padding: 0;
}
.hero-section .splide .container .content {
  position: relative;
}
.hero-section .splide__track,
.hero-section .splide__list {
  height: 100%;
  z-index: 26;
}
.hero-section .splide__slide {
  position: relative;
  height: 120vh;
}
.hero-section .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 88;
}
.hero-section .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .slide-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: white;
  z-index: 99;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.hero-section .slide-content h1 {
  position: relative;
  font-family: "Playfair", serif;
  width: 90%;
  font-size: 80px;
  font-weight: 600;
  line-height: 75px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 99;
}
.hero-section .slide-content p {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-section .slide-content .cta-button {
  display: inline-block;
  padding: 20px 40px;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-section .slide-content .cta-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-section::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(5, 15, 51);
  background: linear-gradient(77deg, rgb(5, 15, 51) 0%, rgb(5, 15, 51) 100%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  z-index: 25;
}
.hero-section .afteros {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(5, 15, 51);
  background: linear-gradient(92.76deg, #3B4B84 -25.35%, #050F33 113.59%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0.6;
  z-index: 30;
}
.hero-section .social-media-boxe {
  position: absolute;
  right: 90px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  z-index: 99;
}
.hero-section .social-media-boxe .social-media-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.hero-section .social-media-boxe .social-media-wrapper li {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.hero-section .social-media-boxe .social-media-wrapper li a {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.2470588235);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hero-section .social-media-boxe .social-media-wrapper li a img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.hero-section .social-media-boxe .social-media-wrapper li a:hover {
  background: linear-gradient(77deg, rgb(235, 205, 153) 0%, rgb(195, 155, 111) 100%);
}
.hero-section .social-media-boxe .social-media-wrapper li a:hover img {
  -webkit-transform: scale(1.21);
          transform: scale(1.21);
}
.hero-section .chiffres-boxe-wrapper {
  position: absolute;
  bottom: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
  padding: 40px 20px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 100px);
  z-index: 99;
}
.hero-section .chiffres-boxe-wrapper .chiffres-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
  font-family: "Playfair", serif;
  font-size: 80px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 1;
}
.hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 32px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 1;
  color: #6E7899;
}
.hero-section .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  width: 3rem;
  height: 3rem;
  z-index: 9999 !important;
}
.hero-section .splide__arrow:hover {
  background: white;
}
.hero-section .splide__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.hero-section .splide__pagination {
  bottom: 2rem;
}
.hero-section .splide__pagination .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.hero-section .splide__pagination .splide__pagination__page.is-active {
  background: white;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-section .my-carousel-progress {
  background: #555F75;
  width: 80%;
  margin: 0 auto;
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: 150px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}
.hero-section .my-carousel-progress-bar {
  background: #227B94;
  height: 5px;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 0;
}

.about-section {
  padding-top: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  gap: 40px;
}
.about-section .container {
  width: calc(100% - 100px);
  padding: 120px 0 150px;
}
.about-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.about-section .container .content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.about-section .container .content .left .about-title h2 {
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .container .content .left .about-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-section .container .content .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-section .container .content .right .about-cta {
  display: none;
}
.about-section .container .content .right p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section .about-images .about-image-boxe {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  height: 100%;
  background: rgb(16, 16, 16);
  background: radial-gradient(circle, rgb(16, 16, 16) 0%, rgb(49, 46, 47) 100%);
}
.about-section .about-images .about-image-boxe .about-image-prof {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.2862745098);
  padding: 26px 30px;
  border-radius: 30px;
  z-index: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  z-index: 4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-name {
  font-family: "Playfair", serif;
  font-size: 26px;
  color: #050F33;
  font-weight: bold;
  line-height: 36px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-role {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  line-height: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-rs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-rs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #227B94;
  padding: 6px;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-rs a img.about-rs-link-icon {
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-rs a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #050F33;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-rs a:hover img.about-rs-link-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.about-section .about-images .about-image-boxe .about-image-boxe-info::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  border-bottom: 20px solid rgba(255, 255, 255, 0.5);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  backdrop-filter: blur(6px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .about-image-boxe-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(116px);
  z-index: -1;
  border-radius: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe .expertise-icon-boxe {
  position: absolute;
  z-index: 0;
  width: auto;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #050F33;
  opacity: 0.47;
  z-index: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.about-section .about-images .about-image-boxe:hover .expertise-icon-boxe {
  opacity: 1;
  visibility: visible;
}
.about-section .about-images .about-image-boxe:hover::after {
  height: 100%;
}
.about-section .about-images .about-image-boxe:hover ~ .about-image-boxe:first-of-type:after, .about-section .about-images .about-image-boxe:hover ~ .about-image-boxe:last-of-type:after {
  opacity: 0.8;
  height: 100%;
  z-index: 4;
}
.about-section .about-images .about-image-boxe.onee .about-image-boxe-info {
  -webkit-transform: translate(-45px, 150%);
          transform: translate(-45px, 150%);
}
.about-section .about-images .about-image-boxe.onee:hover .about-image-boxe-info {
  -webkit-transform: translate(-45px, -30%);
          transform: translate(-45px, -30%);
}
.about-section .about-images .about-image-boxe.twoo {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.about-section .about-images .about-image-boxe.twoo .about-image-boxe-info {
  -webkit-transform: translate(145px, 150%);
          transform: translate(145px, 150%);
  right: inherit;
}
.about-section .about-images .about-image-boxe.twoo .expertise-icon-boxe {
  right: initial;
  left: 0;
}
.about-section .about-images .about-image-boxe.twoo:hover ~ .about-image-boxe.onee:after {
  opacity: 0.8;
  height: 100%;
  z-index: 4;
}
.about-section .about-images .about-image-boxe.twoo:hover .about-image-boxe-info {
  -webkit-transform: translate(145px, 0%);
          transform: translate(145px, 0%);
}
.about-section .about-images .about-image-boxe:first-of-type:hover ~ .about-image-boxe.twoo::after {
  opacity: 0.8;
  height: 100%;
  z-index: 4;
}
.about-section .about-images:has(.about-image-boxe.twoo:hover) .about-image-boxe:not(.twoo)::after {
  opacity: 0.8;
  height: 100%;
  z-index: 4;
}
.about-section .about-logo-shape {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.expertise-section {
  height: auto;
  padding: 80px 0;
  background: #050F33;
}
.expertise-section .container {
  width: calc(100% - 100px);
  padding: 0;
}
.expertise-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.expertise-section .container .content .expertise-section-title h3 {
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
  text-align: center;
  text-transform: initial;
}
.expertise-section .container .content .expertise-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 20px 28px;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe:hover {
  background: #ffffff;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe:hover .expertise-boxe-ic img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  left: 30px;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe:hover .expertise-boxe-title h4 {
  color: #050F33;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe:hover .expertise-boxe-descr p {
  color: #050F33;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic {
  margin-bottom: 10px;
  position: relative;
  height: 100px;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic img {
  width: 100%;
  max-width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-title h4 {
  font-family: "Playfair", serif;
  font-size: 56px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-descr {
  margin-bottom: 36px;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-descr p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #CDCFD6;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}
.expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-cta {
  border: 1px solid #227B94;
}
.actu-section {
  height: initial;
}
.actu-section .container {
  width: 100%;
  padding: 0;
}
.actu-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #050F33;
  gap: 20px;
}
.actu-section .container .content .left {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  position: relative;
  padding: 100px 50px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.actu-section .container .content .left .left-wrapper-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actu-section .container .content .left .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
}
.actu-section .container .content .left .top h5 {
  font-family: "Playfair", serif;
  font-size: 80px;
  font-weight: bold;
  line-height: 90px;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
}
.actu-section .container .content .left .top h5 span {
  font-family: "Playfair", serif;
  color: #227B94;
  display: block;
}
.actu-section .container .content .left .bottom {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.actu-section .container .content .left .bottom .actu-cta {
  border: 1px solid #227B94;
}
.actu-section .container .content .left .bottom .actu-pagination {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.actu-section .container .content .right {
  width: 50%;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.actu-section .container .content .right .single-actu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu {
  height: 100%;
  position: relative;
  width: 100%;
  padding: 100px 28px;
  padding-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #050F33;
  opacity: 0.8;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 0;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 3;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-categ {
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(3px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(255, 255, 255, 0.2196078431);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-categ span {
  z-index: 3;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-categ:hover {
  background: #EFF0F5;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-categ:hover span {
  color: #227B94;
  letter-spacing: 1.4px;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-title h6 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 42px;
  line-height: 52px;
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-descr p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 22px;
  line-height: 32px;
  color: #CDCFD6;
  font-weight: 400;
  width: 90%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 180px;
}
.abt-hero-section {
  background: #050F33;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.abt-hero-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
  padding: 240px 0 320px;
}
.abt-hero-section .container .content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.abt-hero-section .container .content .left h1 {
  position: relative;
  font-family: "Playfair", serif;
  font-size: 45px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 55px;
}
.abt-hero-section .container .content .left h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 35%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.abt-hero-section .container .content .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
	flex-direction:column;
	gap: 12px;
}
.abt-hero-section .container .content .right p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
 text-align: justify;
  line-height: 28px;
}
.abt-hero-section .container .content .right p a {
	color: #C4CAE1;
	font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
}
.abt-hero-section .abt-shape-ekl {
  position: absolute;
  left: 0;
  bottom: 180px;
  width: 70%;
  max-width: 600px;
}
.abt-hero-section .chiffres-boxe-wrapper {
  position: relative;
  background-color: #ffffff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 99;
  border-top: 25px solid rgb(34, 123, 148);
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
  font-family: "Playfair", serif;
  font-size: 80px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 1;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 32px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 1;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:first-of-type {
  background: #151F41;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(2) {
  background: #111A3D;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(3) {
  background: #0C1639;
}
.abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:last-of-type {
  background: #050F33;
}

.apprch-section {
  background: #EFF0F5;
  padding: 90px 0;
  height: auto;
}
.apprch-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.apprch-section .container .content .intro h2 {
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 55px;
  margin-bottom: 40px;
}
.apprch-section .container .content .intro p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #2B334E;
  line-height: 28px;
}
.apprch-section .container .content .intro p:not(:last-of-type) {
  margin-bottom: 12px;
}
.apprch-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  background: #E1E4EC;
  padding: 45px;
  padding-bottom: 85px;
}
.apprch-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 40%;
}
.apprch-section .container .content .top .left .apprch-icon img {
  width: 140px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.apprch-section .container .content .top .left .apprch-title {
  font-family: "Playfair", serif;
  font-size: 36px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 46px;
}
.apprch-section .container .content .top .right {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.apprch-section .container .content .top .right p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #2B334E;
  line-height: 30px;
}
.apprch-section .container .content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.apprch-section .container .content .bottom .btm-title h3 {
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 60px;
  text-align: center;
}
.apprch-section .container .content .bottom .btm-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  gap: 10px;
}
.apprch-section .container .content .bottom .btm-boxes .btm-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 20px 16px 40px;
}
.apprch-section .container .content .bottom .btm-boxes .btm-boxe .btm-boxe-icon img {
  width: 60px;
}
.apprch-section .container .content .bottom .btm-boxes .btm-boxe .btm-boxe-title h4 {
  font-family: "Playfair", serif;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 30px;
}
.apprch-section .container .content .bottom .btm-boxes .btm-boxe .btm-boxe-desc p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #555D79;
  line-height: 26px;
}
.apprch-section .container .content .bottom .btm-cta {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.equipe-hero-section {
  padding-top: 180px;
  padding-bottom: 80px;
  overflow: visible;
  height: auto;
}
.equipe-hero-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.equipe-hero-section .container .content .equipe-hero-title h1 {
  position: relative;
  text-align: center;
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.equipe-hero-section .container .content .equipe-hero-title h1::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.equipe-hero-section .container .content .equipe-hero-img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0px 75px 44px -80px rgba(5, 0, 51, 0.47);
          box-shadow: 0px 75px 44px -80px rgba(5, 0, 51, 0.47);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.equipe-hero-section .container .content .equipe-hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.equipe-hero-section .container .content .equipe-hero-img .background-boxe {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #E9E2DA;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  z-index: -1;
}
.equipe-hero-section .container .content .equipe-hero-img .hover-zone {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  cursor: pointer;
}
.equipe-hero-section .container .content .equipe-hero-img .hover-zone:nth-child(3) {
  left: 0%;
}
.equipe-hero-section .container .content .equipe-hero-img .hover-zone:nth-child(4) {
  left: 25%;
}
.equipe-hero-section .container .content .equipe-hero-img .hover-zone:nth-child(5) {
  left: 50%;
}
.equipe-hero-section .container .content .equipe-hero-img .hover-zone:nth-child(6) {
  left: 75%;
}
.equipe-hero-section .container .content .equipe-img-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 400px));
  gap: 16px;
}
.equipe-hero-section .container .content .equipe-img-boxes .equipe-img-boxe {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.equipe-hero-section .container .content .equipe-img-boxes .equipe-img-boxe img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.equipe-hero-section .container .content .equipe-img-boxes .equipe-img-boxe:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.equipe-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.equipe-hero-section::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 100%;
  height: 30px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.eqp-section {
  padding-top: 80px;
  height: auto;
}
.eqp-section .container .content .eqp-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  background: transparent;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 500px;
  min-width: 450px;
  background: rgb(16, 16, 16);
  background: linear-gradient(-38deg, rgb(16, 16, 16) 0%, rgb(49, 46, 47) 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img::after {
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(-38deg, #050F33 10%, rgb(49, 46, 47) 100%);
  -webkit-transition: all 0.34s ease-in-out;
  transition: all 0.34s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img img {
  width: 100%;
  height: 100%;
  z-index: 4;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img:hover::after {
  width: 100%;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-name h2 {
  position: relative;
  text-align: left;
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 60px;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  background: rgba(34, 123, 148, 0.2588235294);
  color: #227B94;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: 500;
  border-radius: 50px;
  z-index: 4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-radius: 50px;
  background: #050F33;
  z-index: -1;
  width: 200%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a:hover {
  color: #ffffff;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-text p {
  color: #2B334E;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-cta a {
  cursor: pointer;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact {
  background: rgb(239, 240, 245);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(239, 240, 245)), to(rgb(221, 224, 238)));
  background: linear-gradient(-180deg, rgb(239, 240, 245) 0%, rgb(221, 224, 238) 100%);
  padding: 45px 0;
  position: relative;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #227B94;
  z-index: 1;
  width: 10px;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 70px;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555D79;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  position: relative;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a img {
  width: 40px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a span {
  color: #555D79;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a:hover::after {
  width: 100%;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  background: #227B94;
  z-index: 1;
  width: 0px;
  height: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe:nth-child(even) .eqp-boxe-infowrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.eqp-section .container .content .eqp-boxes .eqp-boxe:nth-child(even) .eqp-boxe-infowrapper .eqp-boxe-info {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* Modal Equipe styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(77deg, rgba(62, 148, 172, 0.26) 0%, rgba(34, 123, 148, 0.22) 100%);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
  -webkit-transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
}
.modal-overlay .modal {
  background: #E8EAF2;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 90%;
  height: 100%;
  max-width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 150%);
          transform: translate(-50%, 150%);
  opacity: 1;
  -webkit-transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
}
.modal-overlay .modal::-webkit-scrollbar {
  display: none;
}
.modal-overlay .modal .modal-content {
  padding: 60px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-y: scroll;
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.modal-overlay .modal .modal-content .modal-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  background: rgb(16, 16, 16);
  background: linear-gradient(-38deg, rgb(16, 16, 16) 0%, rgb(49, 46, 47) 100%);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left::after {
  content: "";
  width: 100%;
  height: 0%;
  background: rgba(181, 205, 217, 0.6901960784);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left img {
  max-width: 100%;
  z-index: 4;
  width: 160px;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left:hover::after {
  height: 100%;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-name h2 {
  position: relative;
  text-align: left;
  font-family: "Playfair", serif;
  font-size: 42px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 50px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;
  padding: 6px 18px;
  background: rgba(34, 123, 148, 0.2588235294);
  color: #227B94;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  z-index: 4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-radius: 50px;
  background: #050F33;
  z-index: -1;
  width: 200%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a:hover {
  color: #CDCFD6;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.modal-overlay .modal .modal-content .modal-content-top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 24px;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555D79;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a img {
  width: 32px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a span {
  color: #555D79;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a:hover::after {
  width: 80%;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: scale(1.14);
          transform: scale(1.14);
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  background: #227B94;
  z-index: 1;
  width: 0px;
  height: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-bottom p {
  color: #2B334E;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}
.modal-overlay .modal .modal-content .modal-content-bottom p:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  background: #b5cdd9;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn:hover {
  color: #007bff;
  background: #050F33;
}
.modal-overlay .modal .close-btn:hover svg {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn:hover svg path {
  stroke: #b5cdd9;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn svg {
  width: 40px;
  height: 40px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.modal-overlay.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.modal-overlay.active .modal {
  opacity: 1;
  -webkit-transform: translate(-50%, -46%);
          transform: translate(-50%, -46%);
}

/* Modal Equipe styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(77deg, rgba(62, 148, 172, 0.26) 0%, rgba(34, 123, 148, 0.22) 100%);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
  -webkit-transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
}
.modal-overlay .modal {
  background: #E8EAF2;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 90%;
  height: 100%;
  max-width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 150%);
          transform: translate(-50%, 150%);
  opacity: 1;
  -webkit-transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
}
.modal-overlay .modal::-webkit-scrollbar {
  display: none;
}
.modal-overlay .modal .modal-content {
  padding: 60px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-y: auto;
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.modal-overlay .modal .modal-content .modal-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  background: rgb(16, 16, 16);
  background: linear-gradient(-38deg, rgb(16, 16, 16) 0%, rgb(49, 46, 47) 100%);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left::after {
  content: "";
  width: 100%;
  height: 0%;
  background: rgba(181, 205, 217, 0.6901960784);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left img {
  max-width: 100%;
  z-index: 4;
  width: 160px;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left:hover::after {
  height: 100%;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-name h2 {
  position: relative;
  text-align: left;
  font-family: "Playfair", serif;
  font-size: 42px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 50px;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;
  padding: 6px 18px;
  background: rgba(34, 123, 148, 0.2588235294);
  color: #227B94;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  z-index: 4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-radius: 50px;
  background: #050F33;
  z-index: -1;
  width: 200%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a:hover {
  color: #CDCFD6;
}
.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.modal-overlay .modal .modal-content .modal-content-top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 24px;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555D79;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a img {
  width: 32px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a span {
  color: #555D79;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a:hover::after {
  width: 80%;
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: scale(1.14);
          transform: scale(1.14);
}
.modal-overlay .modal .modal-content .modal-content-top .right ul li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  background: #227B94;
  z-index: 1;
  width: 0px;
  height: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.modal-overlay .modal .modal-content .modal-content-bottom p {
  color: #2B334E;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}
.modal-overlay .modal .modal-content .modal-content-bottom p:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  background: #b5cdd9;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn:hover {
  color: #007bff;
  background: #050F33;
}
.modal-overlay .modal .close-btn:hover svg {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn:hover svg path {
  stroke: #b5cdd9;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.modal-overlay .modal .close-btn svg {
  width: 40px;
  height: 40px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.modal-overlay.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.modal-overlay.active .modal {
  opacity: 1;
  -webkit-transform: translate(-50%, -46%);
          transform: translate(-50%, -46%);
}

.actus-hero-section {
  background: #050F33;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.actus-hero-section .container .content {
  padding: 200px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.actus-hero-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.actus-hero-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.actus-hero-section .container .content .top .left h1 {
  position: relative;
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 60px;
  width: 80%;
}
.actus-hero-section .container .content .top .left h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 45%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-hero-section .container .content .top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.actus-hero-section .container .content .top .right p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 28px;
}
.actus-hero-section .container .content .bottom {
  padding: 35px 0;
}
.actus-hero-section .container .content .bottom .filtre-categ {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.actus-hero-section .container .content .bottom .filtre-categ ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 42px;
  padding: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li:first-of-type .filtre-categ-count span {
  color: #227B94;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li:nth-of-type(2) .filtre-categ-count span {
  color: #C81D1F;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li:nth-of-type(3) .filtre-categ-count span {
  color: #0CA797;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li:last-of-type .filtre-categ-count span {
  color: #F8AF1B;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li span {
  color: #C3CAE1;
  font-size: 20px;
  font-family: "Inter", sans-serif, -apple-system;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li .filtre-categ-name {
  position: relative;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li .filtre-categ-name::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 0px;
  height: 5px;
  background: #227B94;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li .filtre-categ-count {
  font-size: 20px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li.active span {
  color: #fff;
}
.actus-hero-section .container .content .bottom .filtre-categ ul li.active .filtre-categ-name::after {
  opacity: 1;
  width: 100%;
}
.actus-hero-section .abt-shape-ekl {
  position: absolute;
  left: 0;
  bottom: 180px;
  width: 70%;
  max-width: 600px;
}
.actus-hero-section .chiffres-boxe-wrapper {
  position: relative;
  background-color: #ffffff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 99;
  border-top: 25px solid rgb(34, 123, 148);
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
  font-family: "Playfair", serif;
  font-size: 80px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 1;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 32px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 1;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:first-of-type {
  background: #151F41;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(2) {
  background: #111A3D;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(3) {
  background: #0C1639;
}
.actus-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:last-of-type {
  background: #050F33;
}
.actus-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: inline-block;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.actus-content-section {
  background: #EFF0F5;
  padding: 80px 0 220px;
  height: auto;
}
.actus-content-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 140px;
}
.actus-content-section .container .content .actus-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 24px;
}
.actus-content-section .container .content .actus-boxes .actu-boxe {
  display: none;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
  gap: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover {
  -webkit-box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.08);
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover .actu-boxe-img::after {
  opacity: 0;
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover .actu-boxe-text .actu-boxe-title {
  color: #227B94;
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover .actu-boxe-text .actu-boxe-subtitle {
  color: #050F33;
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover .actu-boxe-text .actu-boxe-info span:first-of-type {
  color: #050F33;
}
.actus-content-section .container .content .actus-boxes .actu-boxe:hover .actu-boxe-text .actu-boxe-info span:last-of-type {
  color: #227B94;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-img {
  position: relative;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(92.76deg, #3B4B84 -25.35%, #050F33 113.59%);
  opacity: 0.4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-title {
  font-family: "Playfair", serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-subtitle {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: #555D79;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span {
  display: block;
  font-size: 16px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span:first-of-type {
  color: #555D79;
}
.actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span:last-of-type {
  color: #050F33;
  font-weight: 600;
}
.actus-content-section .container .content .actus-boxes .actu-boxe.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.contact-hero-section {
  background: #050F33;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-hero-section .container .content {
  padding: 200px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.contact-hero-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.contact-hero-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.contact-hero-section .container .content .top .left h1 {
  position: relative;
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 60px;
  width: 80%;
}
.contact-hero-section .container .content .top .left h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 35%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-hero-section .container .content .top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.contact-hero-section .container .content .top .right p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 28px;
}
.contact-hero-section .abt-shape-ekl {
  position: absolute;
  left: 0;
  bottom: 180px;
  width: 70%;
  max-width: 600px;
}
.contact-hero-section .chiffres-boxe-wrapper {
  position: relative;
  background-color: #ffffff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 99;
  border-top: 25px solid rgb(34, 123, 148);
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
  font-family: "Playfair", serif;
  font-size: 80px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  line-height: 1;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 32px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 1;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:first-of-type {
  background: #151F41;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(2) {
  background: #111A3D;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:nth-of-type(3) {
  background: #0C1639;
}
.contact-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe:last-of-type {
  background: #050F33;
}
.contact-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: inline-block;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-form-section {
  height: initial;
  padding-top: 100px;
  padding-bottom: 160px;
}
.contact-form-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
.contact-form-section .container .content .top .contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  gap: 20px;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  padding: 28px 36px;
  background: rgb(239, 240, 245);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-53.75%, #EFF0F5), color-stop(250.5%, #DDE0EE));
  background: linear-gradient(0deg, #EFF0F5 -53.75%, #DDE0EE 250.5%);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-icc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-icc svg {
  width: 70px;
  height: 70px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-icc svg path {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf span {
  color: #000;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf a {
  color: #227B94;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe:hover {
  background: #fff;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe:hover .contact-icc svg path {
  stroke: #227B94;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe:hover .contact-inf span {
  color: #227B94;
}
.contact-form-section .container .content .top .contact-boxes .contact-boxe:hover .contact-inf a {
  color: #050F33;
}
.contact-form-section .container .content .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.contact-form-section .container .content .middle .ctc-form-title {
  font-family: "Playfair", serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  color: #050F33;
  position: relative;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .middle .ctc-form-title::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: #227B94;
  border-radius: 7px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .middle .ctc-form-boxe {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-53.75%, #EFF0F5), color-stop(250.5%, #DDE0EE));
  background: linear-gradient(0deg, #EFF0F5 -53.75%, #DDE0EE 250.5%);
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
.contact-form-section .container .content .middle .ctc-form-boxe form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: transparent;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #227B94;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field label {
  position: absolute;
  left: 0;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  line-height: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field label.top {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  color: #227B94;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea {
  background: transparent;
  color: #050F33;
  font-size: 18px;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #8D9ABB;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input {
  background: transparent;
  font-size: 18px;
  color: #050F33;
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #8D9ABB;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input.focused {
  border-bottom-color: transparent;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input::-webkit-input-placeholder, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea::-webkit-input-placeholder {
  color: #7A7F91;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input::-moz-placeholder, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea::-moz-placeholder {
  color: #7A7F91;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input:-ms-input-placeholder, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea:-ms-input-placeholder {
  color: #7A7F91;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input::-ms-input-placeholder, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea::-ms-input-placeholder {
  color: #7A7F91;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input::placeholder, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field textarea::placeholder {
  color: #7A7F91;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field input:focus {
  outline: 0;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field.forTxtArea label {
  top: 0;
}
.contact-form-section .container .content .middle .ctc-form-boxe form .btn-form {
  font-size: 20px;
  cursor: pointer;
  -ms-flex-item-align: center;
      align-self: center;
}
.contact-form-section .container .content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.contact-form-section .container .content .bottom .ctc-map-title {
  font-family: "Playfair", serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  color: #050F33;
  position: relative;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .bottom .ctc-map-title::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: #227B94;
  border-radius: 7px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper {
  width: 85%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-53.75%, #EFF0F5), color-stop(250.5%, #DDE0EE));
  background: linear-gradient(0deg, #EFF0F5 -53.75%, #DDE0EE 250.5%);
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .iframe-boxe {
  height: 250px;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .iframe-boxe iframe {
  width: 100%;
  height: 100%;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-ic img {
  width: 80px;
  height: 80px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text span {
  display: block;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text span:first-of-type {
  font-family: "Playfair", serif;
  font-size: 24px;
  color: #050F33;
  font-weight: 600;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text span:last-of-type {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  font-weight: 500;
  color: #555D79;
}
.contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-cta-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-hero-section {
  height: 60vh;
  padding-top: 0;
}
.article-hero-section .article-thumb {
  width: 100%;
  height: 100%;
}
.article-hero-section .article-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: inline-block;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.article-content-section {
  padding-top: 80px;
  padding-bottom: 120px;
  height: initial;
}
.article-content-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 80%;
  margin: 0 auto;
}
.article-content-section .container .content .art-ct-title h1 {
  font-family: "Playfair", serif;
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  color: #050F33;
}
.article-content-section .container .content .art-ct-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.article-content-section .container .content .art-ct-infos .art-ct-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.article-content-section .container .content .art-ct-infos .art-ct-info span:first-of-type {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: #91929A;
}
.article-content-section .container .content .art-ct-infos .art-ct-info span:last-of-type {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  color: #050F33;
  text-transform: uppercase;
}
.article-content-section .container .content .art-ct-content h2, .article-content-section .container .content .art-ct-content h3, .article-content-section .container .content .art-ct-content h4 {
  font-family: "Playfair", serif;
  font-weight: 400;
  color: #050F33;
  margin-bottom: 26px;
  margin-top: 26px;
}
.article-content-section .container .content .art-ct-content h2 {
  font-size: 40px;
  line-height: 50px;
}
.article-content-section .container .content .art-ct-content h3 {
  font-size: 36px;
  line-height: 46px;
}
.article-content-section .container .content .art-ct-content h4 {
  font-size: 32px;
  line-height: 42px;
}
.article-content-section .container .content .art-ct-content p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #555D79;
}
.article-content-section .container .content .art-ct-content p:not(:last-of-type) {
  margin-bottom: 12px;
}

.featured-posts-section {
  height: initial;
  padding-bottom: 130px;
}
.featured-posts-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.featured-posts-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.featured-posts-section .container .content .top h3 {
  font-family: "Playfair", serif;
  font-weight: 600;
  color: #050F33;
  font-size: 50px;
  line-height: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.featured-posts-section .container .content .top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 40px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background: transparent;
}
.featured-posts-section .container .content .top a span {
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 600;
  color: #227B94;
  font-size: 24px;
  line-height: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.featured-posts-section .container .content .top a svg {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: initial;
          transform: initial;
}
.featured-posts-section .container .content .top a svg path {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.featured-posts-section .container .content .top a:hover {
  background: #050F33;
}
.featured-posts-section .container .content .top a:hover span {
  color: #ffffff;
}
.featured-posts-section .container .content .top a:hover svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.featured-posts-section .container .content .top a:hover svg path {
  fill: #ffffff;
}
.featured-posts-section .container .content .bottom .actus-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 80px;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
  gap: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe:hover {
  -webkit-box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.08);
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-img img {
  width: 100%;
  height: 100%;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-title {
  font-size: 20px;
  line-height: 30px;
  color: #050F33;
  font-weight: bold;
  font-family: "Playfair", serif;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-subtitle {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  line-height: 26px;
  color: #555D79;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span {
  display: block;
  font-size: 16px;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span:first-of-type {
  color: #555D79;
}
.featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span:last-of-type {
  color: #050F33;
  font-weight: 600;
}

.singExp-hero-section {
  background: #050F33;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.singExp-hero-section .container .content {
  padding: 200px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.singExp-hero-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.singExp-hero-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.singExp-hero-section .container .content .top .left h1 {
  position: relative;
  font-family: "Playfair", serif;
  font-size: 56px;
  font-weight: 800;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  text-align: center;
  line-height: 60px;
}
.singExp-hero-section .container .content .top .left h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.singExp-hero-section .container .content .top .right {
  display: none;
}
.singExp-hero-section .container .content .top .right p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 28px;
}
.singExp-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: inline-block;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.singExp-content-section {
  height: auto;
  padding-top: 70px;
  padding-bottom: 20px;
}
.singExp-content-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.singExp-content-section .container .content .sg-intro {
  background: #E1E4EC;
  padding: 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-icon img {
  width: 80px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title {
  font-family: "Playfair", serif;
  font-size: 50px;
  font-weight: 800;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  text-align: left;
  line-height: 60px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: #fff;
  padding: 16px;
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta:first-of-type {
  background: #EFF0F5;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta:first-of-type:hover svg {
  -webkit-transform: rotate(45deg) translateX(-8px);
          transform: rotate(45deg) translateX(-8px);
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta svg, .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta path {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta:hover {
  background: #050F33;
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta:hover svg {
  -webkit-transform: rotate(-45deg) translateX(8px);
          transform: rotate(-45deg) translateX(8px);
}
.singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta:hover svg path {
  stroke: #ffffff;
}
.singExp-content-section .container .content .sg-intro .sg-intro-bt p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 22px;
  font-weight: 500;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #2B334E;
  line-height: 40px;
}
.singExp-content-section .container .content .sg-outro {
  padding: 40px 80px;
  background: transparent;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic img {
  width: 100px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title h3 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 32px;
  font-weight: 700;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #050F33;
  text-align: left;
  line-height: 42px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  padding-left: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1FR);
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #2B334E;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  margin-bottom: 6px;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  list-style: disc;
}
.singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: #2B334E;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  display: grid;
  gap: 20px;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 55px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
  display: inline-block;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li span {
  font-weight: 400;
  display: inline-block;
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M29.5312 22.7812V29.8125C29.5312 31.6763 28.0202 33.1875 26.1562 33.1875H9.84375C7.97979 33.1875 6.46875 31.6763 6.46875 29.8125V6.1875C6.46875 4.32354 7.97979 2.8125 9.84375 2.8125H22.3372C22.8543 2.8125 23.3506 3.01593 23.719 3.37883L27.5633 7.16648L29.0073 8.72598C29.3442 9.08989 29.5312 9.56753 29.5312 10.0635V17.0156" stroke="%23050F33" stroke-width="2"/><path d="M22.7812 3.375V7.59375C22.7812 8.99173 23.9145 10.125 25.3125 10.125H29.5312" stroke="%23050F33" stroke-width="2"/><path d="M9.84375 16.5938H25.875M9.84375 20.5312H22.7812M9.84375 24.4688H19.4062M9.84375 28.4062H18.5625M9.84375 12.6562H20.25" stroke="%23050F33" stroke-width="2" stroke-linecap="round"/><path d="M21.6779 25.5747C21.7948 25.0438 22.0612 24.5575 22.4456 24.1732L30.0448 16.5739C30.8101 15.8087 32.0507 15.8087 32.816 16.5739C33.5812 17.3392 33.5812 18.5799 32.816 19.3452L25.2168 26.9444C24.8324 27.3287 24.3461 27.5951 23.8153 27.712L21.0742 28.3158L21.6779 25.5747Z" stroke="%23227B94" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.droit-contrats .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 30px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #2B334E;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #227B94;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.droit-societes .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic {
  display: none;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  display: grid;
  gap: 20px;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 55px;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
  display: inline-block;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li span {
  font-weight: 400;
  display: inline-block;
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 30.75C28.3332 30.4505 29.3457 29.9583 30.1632 29.149C32.25 27.0829 32.25 23.7577 32.25 17.1075C32.25 10.4572 32.25 7.13199 30.1632 5.066C28.0763 3 24.7175 3 18 3C11.2825 3 7.92373 3 5.83686 5.066C3.75 7.13199 3.75 10.4572 3.75 17.1075C3.75 23.7577 3.75 27.0829 5.83686 29.149C6.65428 29.9583 7.66686 30.4505 9 30.75" stroke="%23050F33" stroke-width="2" stroke-linecap="round"/><path d="M3.75 12.75H32.25" stroke="%23050F33" stroke-width="2" stroke-linejoin="round"/><path d="M10.5 8.25H10.5135" stroke="%23050F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.5 8.25H16.5135" stroke="%23050F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M23.25 26.25V22.5C20.25 22.5 18 21 18 21C18 21 15.75 22.5 12.75 22.5V26.25C12.75 31.5 18 33 18 33C18 33 23.25 31.5 23.25 26.25Z" stroke="%23227B94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic {
  display: none;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  display: grid;
  gap: 20px;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 55px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
  display: inline-block;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li span {
  font-weight: 400;
  display: inline-block;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2703_5000)"><path d="M12.75 22.5H8.25C7.83525 22.5 7.5 22.1647 7.5 21.75V18.75C7.5 18.3352 7.83525 18 8.25 18H12.75C13.1647 18 13.5 18.3352 13.5 18.75V21.75C13.5 22.1647 13.1647 22.5 12.75 22.5ZM9 21H12V19.5H9V21ZM12.75 9H8.25C7.83525 9 7.5 8.66475 7.5 8.25V5.25C7.5 4.83525 7.83525 4.5 8.25 4.5H12.75C13.1647 4.5 13.5 4.83525 13.5 5.25V8.25C13.5 8.66475 13.1647 9 12.75 9ZM9 7.5H12V6H9V7.5ZM30.75 15.75H14.25C13.8352 15.75 13.5 15.4147 13.5 15V12C13.5 11.5852 13.8352 11.25 14.25 11.25H30.75C31.1647 11.25 31.5 11.5852 31.5 12V15C31.5 15.4147 31.1647 15.75 30.75 15.75ZM15 14.25H30V12.75H15V14.25ZM10.5 33C8.8455 33 7.5 31.6545 7.5 30C7.5 28.3455 8.8455 27 10.5 27C11.2395 27 11.9497 27.2707 12.5002 27.7642C12.8085 28.0402 12.8348 28.515 12.5588 28.8232C12.2835 29.1322 11.8072 29.1585 11.4997 28.8817C11.2252 28.6357 10.8697 28.5 10.5 28.5C9.67275 28.5 9 29.1727 9 30C9 30.8272 9.67275 31.5 10.5 31.5C10.8697 31.5 11.2252 31.3642 11.4997 31.1182C11.8072 30.8422 12.2835 30.8677 12.5588 31.1767C12.8348 31.485 12.8085 31.9597 12.5002 32.2357C11.9497 32.7292 11.2395 33 10.5 33Z" fill="%23227B94"/><path d="M14.25 19.5H6.75C6.33525 19.5 6 19.1647 6 18.75V8.25C6 7.83525 6.33525 7.5 6.75 7.5H14.25C14.6648 7.5 15 7.83525 15 8.25V18.75C15 19.1647 14.6648 19.5 14.25 19.5ZM7.5 18H13.5V9H7.5V18Z" fill="%23050F33"/><path d="M10.5 36.0002C10.1617 36.0002 9.87075 35.9762 9.6105 35.9267C6.71175 35.5187 4.5 32.9687 4.5 30.0002C4.5 29.0942 4.6965 28.2272 5.08425 27.4239C5.304 26.9522 5.59425 26.5044 5.94375 26.1032C6.32625 25.6434 6.789 25.2429 7.308 24.9219C8.12025 24.4037 9.07275 24.0917 10.0507 24.0242C10.1692 24.0099 10.3342 24.0002 10.5 24.0002C13.8082 24.0002 16.5 26.6919 16.5 30.0002C16.5 32.4264 15.0592 34.5977 12.8287 35.5299C12.102 35.8412 11.316 36.0002 10.5 36.0002ZM10.5 25.5002C10.3957 25.5002 10.2907 25.5054 10.1925 25.5174C9.4245 25.5707 8.71575 25.8032 8.106 26.1917C7.71525 26.4332 7.37475 26.7287 7.08675 27.0752C6.81975 27.3827 6.6045 27.7127 6.44025 28.0667C6.14625 28.6742 6 29.3222 6 30.0002C6 32.2262 7.6575 34.1379 9.855 34.4477C10.0567 34.4844 10.2562 34.5002 10.5 34.5002C11.112 34.5002 11.6992 34.3817 12.2445 34.1484C13.9207 33.4479 15 31.8204 15 30.0002C15 27.5184 12.9817 25.5002 10.5 25.5002ZM10.5 3.00019C10.0852 3.00019 9.75 2.66494 9.75 2.25019V0.750188C9.75 0.335437 10.0852 0.000187498 10.5 0.000187498C10.9147 0.000187498 11.25 0.335437 11.25 0.750188V2.25019C11.25 2.66494 10.9147 3.00019 10.5 3.00019ZM13.5 3.00019C13.308 3.00019 13.116 2.92669 12.9697 2.78044C12.6765 2.48719 12.6765 2.01319 12.9697 1.71994L14.469 0.219938C14.7622 -0.0733125 15.2362 -0.0733125 15.5295 0.219938C15.8227 0.513188 15.8227 0.987188 15.5295 1.28044L14.0302 2.78044C13.884 2.92669 13.692 3.00019 13.5 3.00019ZM7.5 3.00019C7.308 3.00019 7.116 2.92669 6.96975 2.78044L5.4705 1.28044C5.17725 0.987188 5.17725 0.513188 5.4705 0.219938C5.76375 -0.0733125 6.23775 -0.0733125 6.531 0.219938L8.03025 1.71994C8.3235 2.01319 8.3235 2.48719 8.03025 2.78044C7.884 2.92669 7.692 3.00019 7.5 3.00019Z" fill="%23050F33"/></g><defs><clipPath id="clip0_2703_5000"><rect width="36" height="36" fill="white"/></clipPath></defs></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p {
  margin-bottom: 0;
}

.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic {
  display: none;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  display: grid;
  gap: 20px;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 55px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
  display: inline-block;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li span {
  font-weight: 400;
  display: inline-block;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.834 66.6663L41.6673 54.1663M58.334 45.833L79.1673 33.333M50.0006 20.833V41.6663M50.0006 58.333V79.1663M20.834 33.333L41.6673 45.833M58.334 54.1663L79.1673 66.6663" stroke="%23050F33" stroke-width="5" stroke-linejoin="round"/><path d="M85.4173 37.4997V60.4163M56.2507 85.4163L79.1673 72.9163M18.7507 72.9163L43.7507 85.4163M14.584 62.4997V37.4997M18.7507 27.083L43.7507 14.583M81.2507 27.083L56.2507 14.583" stroke="%23050F33" stroke-width="5" stroke-linejoin="round"/><path d="M50 20.833C53.4517 20.833 56.25 18.0348 56.25 14.583C56.25 11.1312 53.4517 8.33301 50 8.33301C46.5483 8.33301 43.75 11.1312 43.75 14.583C43.75 18.0348 46.5483 20.833 50 20.833Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M50 91.667C53.4517 91.667 56.25 88.8687 56.25 85.417C56.25 81.9653 53.4517 79.167 50 79.167C46.5483 79.167 43.75 81.9653 43.75 85.417C43.75 88.8687 46.5483 91.667 50 91.667Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M14.584 37.5C18.0358 37.5 20.834 34.7018 20.834 31.25C20.834 27.7982 18.0358 25 14.584 25C11.1322 25 8.33398 27.7982 8.33398 31.25C8.33398 34.7018 11.1322 37.5 14.584 37.5Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M85.416 37.5C88.8677 37.5 91.666 34.7018 91.666 31.25C91.666 27.7982 88.8677 25 85.416 25C81.9643 25 79.166 27.7982 79.166 31.25C79.166 34.7018 81.9643 37.5 85.416 37.5Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M85.416 75C88.8677 75 91.666 72.2017 91.666 68.75C91.666 65.2983 88.8677 62.5 85.416 62.5C81.9643 62.5 79.166 65.2983 79.166 68.75C79.166 72.2017 81.9643 75 85.416 75Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M14.584 75C18.0358 75 20.834 72.2017 20.834 68.75C20.834 65.2983 18.0358 62.5 14.584 62.5C11.1322 62.5 8.33398 65.2983 8.33398 68.75C8.33398 72.2017 11.1322 75 14.584 75Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/><path d="M49.9993 40.625L58.3327 45.3125V54.6875L49.9993 59.375L41.666 54.6875V45.3125L49.9993 40.625Z" stroke="%23227B94" stroke-width="5" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p {
  margin-bottom: 0;
}

.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic {
  display: none;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #227B94;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
  display: grid;
  grid-template-columns: repeat(1, 1FR);
  gap: 20px;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
  width: 100%;
  position: relative;
  padding-left: 55px;
  font-family: "Inter", sans-serif, -apple-system;
  font-weight: 400;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li strong {
  font-weight: bolder;
  display: inline-block;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li span {
  font-weight: 400;
  display: inline-block;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="30" fill="%23EFF0F5"/><path d="M27 29.4417L19.6125 38.133C18.6212 39.2993 16.848 39.3704 15.7671 38.2869C14.6861 37.2036 14.7569 35.4266 15.9206 34.4331L24.5929 27.0293" stroke="%23050F33" stroke-width="2" stroke-linejoin="round"/><path d="M39 27.1008L31.5714 34.5457M26.9286 15.0029L19.5 22.4478M26.0001 15.9335L20.4286 21.5172C20.4286 21.5172 23.2143 25.2396 26.0001 28.0314C28.7858 30.8233 32.5001 33.6151 32.5001 33.6151L38.0715 28.0314C38.0715 28.0314 35.2857 24.309 32.5001 21.5172C29.7144 18.7253 26.0001 15.9335 26.0001 15.9335Z" stroke="%23050F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M42 29.4893L45 27.0293M42 34.4091L45 36.0491" stroke="%23227B94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M28.5039 44.9982H43.5006M30.341 44.9982C31.1682 43.517 31.7859 40.6824 34.7139 40.5237C35.5836 40.4765 36.4685 40.4765 37.338 40.5237C40.266 40.6824 40.8867 43.517 41.714 44.9982" stroke="%23227B94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 8px; /* Adjust spacing */
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul {
  padding-left: 16px;
  list-style: disc;
}
.marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p {
  margin-bottom: 0;
}

.notf-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #EFF0F5;
  padding-bottom: 220px;
  padding-top: 150px;
}
.notf-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notf-section .container .content .numb-boxe {
  width: 570px;
}
.notf-section .container .content .notf-title h1 {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 44px;
  font-weight: 600;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.notf-section .container .content .notf-subtitle P {
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #555D79;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}
.notf-section .container .content .notf-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notf-section .container .content .notf-cta a svg {
  z-index: 4;
}
.expertise-hero-section {
  background: #050F33;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.expertise-hero-section .container .content {
  padding: 200px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.expertise-hero-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.expertise-hero-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expertise-hero-section .container .content .top .left h1 {
  position: relative;
  font-family: "Playfair", serif;
  font-size: 56px;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #ffffff;
  text-align: center;
  line-height: 60px;
}
.expertise-hero-section .container .content .top .left h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35%;
  height: 5px;
  background: #227B94;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-hero-section .container .content .top .right {
  display: none;
}
.expertise-hero-section .container .content .top .right p {
  position: relative;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #C4CAE1;
  line-height: 28px;
}
.expertise-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: inline-block;
  background: rgb(62, 148, 172);
  background: linear-gradient(77deg, rgb(62, 148, 172) 0%, rgb(34, 123, 148) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.expertise-list-section {
  height: auto;
  padding-top: 100px;
  padding-bottom: 130px;
}
.expertise-list-section .container .content .expertise-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item {
  padding: 30px 60px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background: #E1E4EC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover {
  background: #050F33;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxee-left .exp-boxe-icon {
  background: #ffffff;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxee-left .exp-boxe-icon img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxee-left .exp-boxe-title span {
  color: #ffffff;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxe-cta {
  background: #050F33;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxe-cta svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item:hover .exp-boxe-cta svg path {
  stroke: #ffffff;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px;
  background: transparent;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-icon img {
  width: 90px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-title span {
  font-family: "Playfair", serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #050F33;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxe-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: #fff;
  padding: 16px;
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxe-cta svg, .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxe-cta path {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media (max-width: 1250px) {
  .container {
    max-width: 100%;
  }
  .hero-section .social-media-boxe {
    top: 150px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .hero-section .my-carousel-progress {
    bottom: 100px;
  }
  .about-section .container {
    padding: 70px 0 7px;
  }
  .nwlr-wrapper {
    padding: 50px;
  }
	.ctc-section .container .content .bottom .ctc-wrapper,
	.ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe .wpcf7,
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe {
    width: 100%;
  }
	

  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-cta {
    margin-top: 80px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu {
    padding-right: 50px;
  }
  .ctc-section .container .content .bottom {
    padding: 50px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-icc svg {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1200px) {
  .abt-hero-section .container .content {
    gap: 30px;
    padding: 200px 0 100px;
  }
  .abt-hero-section .abt-shape-ekl {
    left: 20%;
    bottom: 180px;
    width: 70%;
    max-width: 300px;
  }
  .contact-form-section .container .content {
    gap: 40px;
  }
  .contact-form-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .actus-hero-section .container .content {
    padding: 180px 0 30px;
    gap: 35px;
  }
  .eqp-section .container .content .eqp-boxes {
    gap: 40px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper {
    gap: 30px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    gap: 30px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-text p {
    font-size: 20px;
    line-height: 30px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-name h2 {
    font-size: 40px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img,
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info {
    width: 50%;
    min-width: initial;
  }
  .eqp-section {
    padding-top: 40px;
    height: auto;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info {
    gap: 16px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises {
    gap: 16px;
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a {
    padding: 8px 16px;
    font-size: 18px;
    border-radius: 50px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a {
    gap: 10px;
    font-size: 20px;
    line-height: 38px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe {
    padding: 20px 16px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-icc svg {
    width: 35px;
    height: 35px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf a {
    font-size: 22px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  footer.footer .bottom,
  footer.footer .top {
    padding: 40px 25px;
  }
  footer.footer .top {
    border-bottom: 1px solid rgba(110, 120, 153, 0.1882352941);
  }
  .ctc-section .container {
    width: 100%;
    padding: 0 20px;
  }
  .hero-section,
  .hero-section .splide {
    min-height: 100vh;
  }
  .hero-section .splide__slide,
  .hero-section .splide {
    height: 100vh;
  }
  .main-header .container {
    padding-left: 0;
    padding-right: 0;
  }
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes,
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes {
    grid-template-columns: repeat(2, 1FR);
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
    font-size: 24px;
  }
  .hero-section .chiffres-boxe-wrapper {
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: initial;
    transform: initial;
    padding: 40px 40px;
    width: 100%;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span,
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
    font-size: 60px;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe {
    gap: 14px;
  }
  .about-section {
    padding-top: 30px;
  }
  .about-section .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section .container .content .left,
  .about-section .container .content .right {
    width: 100%;
  }
  .about-section .container .content .left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about-section .container .content .left {
    gap: 30px;
  }
  .about-section .container .content {
    gap: 50px;
  }
  .about-section .container .content .left .about-cta {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .about-section .container {
    padding: 40px 0;
  }
  .about-section .about-images .about-image-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section .about-images .about-image-boxe.onee:hover .about-image-boxe-info,
  .about-section .about-images .about-image-boxe.twoo:hover .about-image-boxe-info,
  .about-section .about-images .about-image-boxe.onee .about-image-boxe-info,
  .about-section .about-images .about-image-boxe.twoo .about-image-boxe-info,
  .about-section .about-images .about-image-boxe .about-image-boxe-info {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    -webkit-transform: initial;
            transform: initial;
    border-radius: 0;
    padding: 15px 20px;
  }
  .about-section .about-images .about-image-boxe .about-image-boxe-info::before {
    border-radius: 0;
  }
  .about-section .about-images {
    background: #050F33;
    gap: 1px;
  }
  .actu-section .container .content,
  .expertise-section .container .content .expertise-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe {
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    border: 1px solid #227B94;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-cta {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .actu-section .container .content .left .top h5 span {
    display: inline-block;
  }
  .actu-section .container .content .left,
  .actu-section .container .content .right {
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .actu-section .container .content .left {
    gap: 30px;
    padding: 50px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-title h6 {
    font-size: 36px;
    line-height: 46px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-descr p {
    font-size: 20px;
    line-height: 30px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-cta {
    margin-top: 30px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-categ span {
    font-size: 16px;
    letter-spacing: 1.3px;
  }
  .nwlr-wrapper {
    padding: 36px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .nwlr-wrapper .nwlr-title,
  .nwlr-wrapper .nwlr-form {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    width: 100%;
  }
  .nwlr-wrapper .nwlr-form form {
    width: 100%;
  }
  .nwlr-wrapper .nwlr-title span {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 1.3px;
  }
  .nwlr-wrapper .nwlr-form form .form-group button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ctc-section .container .content .bottom {
    padding: 36px 24px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text span {
    font-size: 36px;
    line-height: 46px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group,
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ctc-section .container .content .bottom .ctc-wrapper {
    gap: 60px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field label {
    font-size: 20px;
  }
  .hero-section .slide-content h1 {
    font-size: 70px;
    line-height: 80px;
  }
  .apprch-section .container .content .intro h2,
  .actu-section .container .content .left .top h5,
  .actu-section .container .content .left .top h5 span,
  .expertise-section .container .content .expertise-section-title h3,
  .about-section .container .content .left .about-title h2,
  .equipe-hero-section .container .content .equipe-hero-title h1,
  .apprch-section .container .content .bottom .btm-title h3,
  .actus-hero-section .container .content .top .left h1,
  .article-content-section .container .content .art-ct-title h1,
  .featured-posts-section .container .content .top h3,
  .singExp-hero-section .container .content .top .left h1,
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title,
  .expertise-hero-section .container .content .top .left h1 {
    font-size: 40px;
    line-height: 43px;
  }
  .featured-posts-section .container .content .top a span {
    font-size: 18px;
    line-height: 28px;
  }
  .about-section .container .content .right p {
    font-size: 20px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-title h4 {
    font-size: 36px;
    line-height: 40px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-descr p {
    font-size: 20px;
    line-height: 30px;
  }
  .logo-section img {
    width: 350px;
    max-width: 350px;
  }
  .logo-section {
    padding: 50px 0;
  }
  .about-section .container,
  .expertise-section .container {
    width: calc(100% - 80px);
  }
  footer.footer .top .social-links li a {
    font-size: 35px;
    line-height: 45px;
  }
  footer.footer .top .social-links li a img {
    width: 40px;
    height: 40px;
  }
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
    font-size: 24px;
    line-height: 1;
  }
  .abt-hero-section .container .content {
    gap: 20px;
    padding: 180px 0 200px;
  }
  .abt-hero-section .abt-shape-ekl {
    bottom: initial;
    width: 100%;
    max-width: 320px;
    bottom: 35%;
  }
  .apprch-section {
    padding: 50px 0;
  }
  .apprch-section .container .content .intro p {
    font-size: 16px;
    line-height: 26px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic {
    height: 80px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic img {
    max-width: 80px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item {
    padding: 20px 30px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-icon img {
    width: 60px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-title span {
    font-size: 36px;
    line-height: 46px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxe-cta {
    height: 60px;
    width: 60px;
  }
  .expertise-list-section {
    height: auto;
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .actus-hero-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .actus-hero-section .container .content .bottom {
    padding: 25px 0;
  }
  .actus-content-section .container .content .actus-boxes {
    grid-template-columns: repeat(2, 1FR);
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 16px;
  }
  .actus-content-section .container .content .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span {
    font-size: 14px;
    line-height: 1;
  }
  .equipe-hero-section {
    padding-top: 200px;
    padding-bottom: 60px;
    overflow: visible;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact {
    padding: 25px 0;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-text p {
    font-size: 18px;
    line-height: 28px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a {
    font-size: 16px;
    line-height: 26px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-name h2 {
    font-size: 36px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .right ul {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-bottom p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  .eqp-section .modal-overlay .modal .modal-content {
    padding: 32px;
    gap: 30px;
  }
  .apprch-section .container .content .top {
    padding: 36px 24px;
  }
  .apprch-section .container .content .bottom .btm-boxes {
    grid-template-columns: repeat(2, 1FR);
  }
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
    font-size: 64px;
    line-height: 68px;
  }
  .actus-hero-section .container .content .top .right,
  .actus-hero-section .container .content .top .left {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .actus-hero-section .container .content .top .left h1 {
    width: 100%;
  }
  .article-content-section {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .article-content-section .container .content {
    max-width: 95%;
    gap: 24px;
  }
  .featured-posts-section .container .content .bottom .actus-boxes .actu-boxe {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 16px;
    gap: 12px;
  }
  .featured-posts-section .container .content .bottom .actus-boxes {
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 10px;
  }
  .article-content-section .container .content .art-ct-infos .art-ct-info span:first-of-type {
    font-size: 16px;
  }
  .article-content-section .container .content .art-ct-infos .art-ct-info span:last-of-type,
  .article-content-section .container .content .art-ct-content p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .article-content-section .container .content .art-ct-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .singExp-content-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .singExp-content-section .container .content .sg-outro,
  .singExp-content-section .container .content .sg-intro {
    padding: 36px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
    gap: 24px;
  }
  .singExp-content-section .container .content {
    gap: 30px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-bt p {
    font-size: 20px;
    line-height: 30px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right .exp-boxe-cta svg {
    width: 20px;
    height: 20px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
    grid-template-columns: initial;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-icon img {
    width: 60px;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe form .btn-form,
  .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field label,
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf a {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 10px;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe {
    width: 100%;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe form .btn-form {
    padding: 16px 30px;
  }
	
	
  .modal-overlay .modal .modal-content .modal-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal-overlay .modal .modal-content .modal-content-top .right ul {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .modal-overlay .modal .modal-content .modal-content-bottom p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  .modal-overlay .modal .modal-content {
    padding: 32px;
    gap: 30px;
  }
}
@media (max-width: 992px) {
  
  .modal-overlay .modal .modal-content .modal-content-top .right ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
	
	.article-content-section .container .content .art-ct-title {
		gap: 12px;
		flex-direction: column;
	}
	.article-content-section .container .content .art-ct-title .sg-intro-right {
		flex-direction: row;
	}
}
@media (max-width: 820px) {
  .hero-section .social-media-boxe {
    display: none;
  }
  .hero-section .slide-content h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .about-section .about-images .about-image-boxe .about-image-boxe-info::after {
    display: none;
  }
  footer.footer .bottom .left .footer-logo a img {
    width: 180px;
  }
  footer.footer .top .social-links li a {
    font-size: 26px;
    line-height: 45px;
  }
  footer.footer .top .social-links li a img {
    width: 30px;
    height: 30px;
  }
  footer.footer .bottom .left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 30px;
  }
  footer.footer .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
  footer.footer .bottom .right .footer-menu .footer-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: wrap-reverse;
            flex-flow: wrap-reverse;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-img, .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info {
    width: 100%;
    min-width: 100%;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul,
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper,
  .eqp-section .container .content .eqp-boxes .eqp-boxe:nth-child(even) .eqp-boxe-infowrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul {
    padding-left: 30px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li {
    width: 100%;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a,
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a {
    font-size: 16px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-name h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .right ul li a {
    gap: 12px;
    font-size: 17px;
    line-height: 27px;
  }
  .eqp-section .modal-overlay .modal .modal-content {
    padding: 40px 20px;
    gap: 20px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-right {
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero-section .slide-content .cta-button,
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .btn-form,
  a.cta-link-wht,
  .btn-blue,
  a.cta-link-sld,
  a.cta-link,
  .cta-link-green,
  .featured-posts-section .container .content .top a {
    padding: 12px 24px;
    font-size: 16px;
  }
  .notf-section .container .content .notf-title {
    font-size: 34px;
  }
  .notf-section {
    height: initial;
    min-height: 100vh;
  }
  .notf-section .container .content .notf-subtitle {
    width: 100%;
  }
  .notf-section .container .content .numb-boxe {
    width: 430px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left {
    gap: 14px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-title span {
    font-size: 28px;
    line-height: 38px;
  }
  .expertise-list-section .container .content .expertise-list .exp-boxe-item .exp-boxee-left .exp-boxe-icon img {
    width: 45px;
  }
  .featured-posts-section .container .content .bottom .actus-boxes {
    grid-template-columns: repeat(1, 1FR);
    row-gap: 24px;
  }
  .apprch-section .container .content .intro h2, .actu-section .container .content .left .top h5, .actu-section .container .content .left .top h5 span, .expertise-section .container .content .expertise-section-title h3, .about-section .container .content .left .about-title h2, .equipe-hero-section .container .content .equipe-hero-title h1, .apprch-section .container .content .bottom .btm-title h3, .actus-hero-section .container .content .top .left h1, .article-content-section .container .content .art-ct-title h1, .featured-posts-section .container .content .top h3, .singExp-hero-section .container .content .top .left h1, .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title, .expertise-hero-section .container .content .top .left h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .article-content-section .container .content .art-ct-content h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .article-content-section .container .content .art-ct-infos .art-ct-info span:last-of-type, .article-content-section .container .content .art-ct-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .article-content-section .container .content {
    max-width: 100%;
    gap: 20px;
  }
  .article-content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .featured-posts-section .container .content .bottom .actus-boxes .actu-boxe .actu-boxe-text .actu-boxe-info span:last-of-type {
    background: #050f33;
    padding: 12px;
    color: #fff;
  }
  .featured-posts-section {
    padding-bottom: 60px;
  }
  .actu-section .container .content .left .bottom .actu-pagination {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .actu-section .container .content .left .top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .actu-section .container .content .left .bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-title h6 {
    font-size: 28px;
    line-height: 38px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info .single-actu-descr p {
    font-size: 18px;
    line-height: 28px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-descr p {
    font-size: 18px;
    line-height: 28px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe:hover .expertise-boxe-ic img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    left: 0;
  }
  .actu-section .container .content .left {
    gap: 30px;
    padding: 50px 24px;
  }
  .hero-section .splide__arrow svg {
    width: 14px;
    height: 14px;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span,
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-text span {
    font-size: 22px;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul {
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li {
    gap: 16px;
    padding: 8px;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li .filtre-categ-name::after {
    bottom: -6px;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li span {
    font-size: 17px;
  }
  .actus-content-section .container .content .actus-boxes .actu-boxe {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 21px;
  }
  .actus-content-section {
    padding: 40px 0 80px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text span:first-of-type {
    font-size: 20px;
  }
  .contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-text span:last-of-type {
    font-size: 18px;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe form .btn-form, .contact-form-section .container .content .middle .ctc-form-boxe form .form-group .field label, .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf a {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe .contact-inf {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-form-section .container .content .bottom .ctc-map-title,
  .contact-form-section .container .content .middle .ctc-form-title {
    font-size: 36px;
    line-height: 1;
  }
  .contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link .ctc-map-ic img {
    width: 50px;
    height: 50px;
  }
  .contact-form-section .container .content .bottom .ctc-map-wrapper {
    width: 100%;
    gap: 50px;
  }
  .contact-form-section .container .content .top .contact-boxes {
    gap: 12px;
  }
  .btn-green {
    padding: 16px 32px;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe {
    padding: 40px 14px;
  }
  .contact-form-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
	
	.modal-overlay .modal .modal-content .modal-content-top .right ul li a,
	.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a {
		font-size: 16px;
		line-height: 26px;
	}
	.modal-overlay .modal .modal-content {
		padding: 24px;
		gap: 20px;
	}
	.modal-overlay .modal .modal-content .modal-content-top .duo-boxe {
		flex-direction: column;
		gap: 16px;
	}
	.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle {
		gap: 16px;
	}
	.modal-overlay .modal .modal-content .modal-content-top {
		gap: 24px;
	}
	.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left {
		width: max-content;
	}
	.modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises {
		flex-wrap:wrap;
	}
	.modal-overlay .modal .modal-content .modal-content-bottom p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 8px;
	}
}
@media (max-width: 650px) {
  .hero-section .slide-content h1 {
    font-size: 46px;
    line-height: 50px;
  }
  .hero-section .splide__arrow {
    width: 30px;
    height: 30px;
  }
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span,
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
    font-size: 80px;
  }
  .about-section .container .content .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section .container .content .left .about-cta {
    display: none;
  }
  .about-section .container .content .right {
    gap: 30px;
  }
  .about-section .about-images {
    grid-template-columns: repeat(1, 1fr);
  }
  .expertise-section {
    padding: 50px 0;
  }
  footer.footer .bottom .right .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  footer.footer .bottom .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer.footer .bottom .right .footer-menu .footer-menu-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer.footer .top .social-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .logo-section img {
    width: 220px;
    max-width: 210px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-intro .ctc-intro-text span {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }
  .nwlr-wrapper .nwlr-title span {
    font-size: 26px;
    line-height: 36px;
  }
  .about-section .container, .expertise-section .container {
    width: calc(100% - 40px);
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe {
    padding: 16px 24px;
  }
  .ctc-section .container .content {
    gap: 40px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu {
    padding-right: 28px;
    padding: 50px 24px;
  }
  .actu-section .container .content .right .single-actu-wrapper .single-actu .single-actu-info {
    gap: 26px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-title h4 {
    font-size: 32px;
    line-height: 32px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-descr p {
    font-size: 16px;
    line-height: 26px;
  }
  footer.footer .bottom .left .footer-logo a img {
    width: 140px;
  }
  .about-section .about-images .about-image-boxe.onee:hover .about-image-boxe-info, .about-section .about-images .about-image-boxe.twoo:hover .about-image-boxe-info, .about-section .about-images .about-image-boxe.onee .about-image-boxe-info, .about-section .about-images .about-image-boxe.twoo .about-image-boxe-info, .about-section .about-images .about-image-boxe .about-image-boxe-info {
    padding: 20px 10px;
  }
  .about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-name {
    font-size: 22px;
    line-height: 36px;
  }
  .about-section .about-images .about-image-boxe .about-image-boxe-info .masked-wrapper .about-image-boxe-role {
    font-size: 16px;
    line-height: 26px;
  }
  .nwlr-wrapper .nwlr-form form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nwlr-wrapper .nwlr-form form .form-group:last-of-type,
  .nwlr-wrapper .nwlr-form form .form-group:first-of-type {
    width: 100%;
  }
  .actus-content-section .container .content .actus-boxes {
    grid-template-columns: repeat(1, 1FR);
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li span {
    font-size: 15px;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li {
    gap: 8px;
    padding: 4px;
  }
  .actus-hero-section .container .content .top .right p {
    font-size: 16px;
    line-height: 26px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title {
    font-size: 26px;
    line-height: 36px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-icon img {
    width: 50px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul {
    padding-left: 0px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
    padding-left: 20px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li ul li {
    padding-left: 0;
  }
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p,
  .singExp-content-section .container .content .sg-intro .sg-intro-bt p {
    font-size: 16px;
    line-height: 26px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-title h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .singExp-content-section .container .content .sg-outro {
    padding: 26px 0px;
  }
  .singExp-content-section .container .content .sg-intro {
    padding: 26px 16px;
  }
  .singExp-content-section .container .content {
    gap: 16px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
    width: 24px;
    height: 24px;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items {
    gap: 36px;
  }
  .singExp-content-section {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .ctc-section {
    padding: 30px 0;
  }
  .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-ic img {
    width: 46px;
  }
  .abt-hero-section .container .content {
    padding: 165px 0 130px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .abt-hero-section .abt-shape-ekl {
    max-width: 280px;
    bottom: 720px;
  }
  .contact-hero-section .container .content .top .left h1 {
    width: 100%;
  }
  .contact-hero-section .container .content .top .left h1,
  .abt-hero-section .container .content .left h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .contact-form-section .container .content .middle .ctc-form-title {
    font-size: 32px;
    line-height: 42px;
  }
  .apprch-section .container .content .top .right p,
  .abt-hero-section .container .content .right p {
    font-size: 16px;
    line-height: 26px;
  }
  .apprch-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 16px;
  }
  .apprch-section .container .content .top .left,
  .apprch-section .container .content .top .right {
    width: 100%;
  }
  .apprch-section .container .content .top .left .apprch-icon img {
    width: 90px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  .apprch-section .container .content .top .left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .apprch-section .container .content .top .left .apprch-title {
    font-size: 32px;
    line-height: 42px;
  }
  .apprch-section .container .content {
    gap: 50px;
  }
  .contact-hero-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form-section .container .content .top .contact-boxes {
    grid-template-columns: initial;
  }
  .contact-form-section .container .content .top .contact-boxes .contact-boxe {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe form,
  .contact-form-section .container .content .middle .ctc-form-boxe form .form-group {
    gap: 30px;
  }
  .contact-form-section .container .content .middle .ctc-form-boxe form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-hero-section .container .content {
    padding: 160px 0 80px;
  }
  .contact-form-section .container .content .bottom .ctc-map-wrapper .ctc-map-link {
    padding: 0;
  }
  .equipe-hero-section {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .equipe-hero-section .container .content {
    height: 160px;
  }
  .equipe-hero-section .container .content .equipe-img-boxes {
    display: none;
  }
  .eqp-section {
    padding-top: 0;
  }
}
@media (max-width: 520px) {
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-icon img {
    width: 36px;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .singExp-content-section .container .content .sg-intro .sg-intro-tp {
    gap: 18px;
  }
  .singExp-content-section .container .content .sg-intro {
    gap: 20px;
  }
  .actus-hero-section .container .content {
    padding: 130px 0 30px;
    gap: 20px;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .actus-hero-section .container .content .bottom .filtre-categ ul li {
    width: 46%;
  }
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes, .hero-section .chiffres-boxe-wrapper .chiffres-boxes {
    grid-template-columns: repeat(1, 1FR);
  }
  .main-header.forMob .container .content .header-nav .left ul li a, .main-header.forMob .container .content .header-nav .right ul li a {
    padding: 10px 16px;
    font-size: 18px;
  }
  .main-header.forMob .container .content .header-nav .middle a svg {
    width: 130px;
  }
  .main-header.forMob .container .content .header-nav .left ul li::after, .main-header.forMob .container .content .header-nav .right ul li::after {
    -webkit-transform: translateY(-50%) scale(1.26);
    transform: translateY(-50%) scale(0.91);
    width: 25px;
    height: 16px;
  }
  .main-header {
    padding: 15px 12px;
  }
  .main-header.forMob .container .content .header-nav .left ul li:hover::after, .main-header.forMob .container .content .header-nav .right ul li:hover::after {
    height: 23px;
    -webkit-transform: translateY(-50%) scale(1.03);
    transform: translateY(-50%) scale(1.03);
  }
  .actu-section .container .content .left .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .actu-section .container .content .left .bottom .actu-pagination {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .actu-section .container .content .left .bottom .actu-cta {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-name h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper {
    gap: 20px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-expertises a, .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe .middle .eqp-boxe-expertises a {
    font-size: 14px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-text p {
    font-size: 13px;
    line-height: 23px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact {
    padding: 16px 0;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul {
    gap: 20px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top {
    gap: 20px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .duo-boxe .left {
    width: 80%;
  }
  footer.footer .bottom .left .copyright-text span {
    text-align: center;
  }
  .marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
    padding-left: 38px;
  }
  .marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after,
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after,
  .droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
    width: 24px;
    height: 24px;
    margin-left: 0px;
  }
  .droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content {
    gap: 24px;
  }
  .singExp-hero-section .container .content {
    padding: 160px 0 90px;
    gap: 70px;
  }
  .singExp-hero-section .container .content .top .left h1::after {
    bottom: -6px;
    width: 35%;
    height: 2px;
  }
  .singExp-hero-section::after {
    height: 20px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field label {
    font-size: 14px;
    line-height: 24px;
  }
  .apprch-section .container .content .bottom .btm-boxes {
    grid-template-columns: repeat(1, 1FR);
  }
  .apprch-section .container .content .bottom .btm-boxes .btm-boxe {
    background: rgba(58, 143, 167, 0.1098039216);
    padding: 20px 16px;
    gap: 12px;
  }
  .notf-section .container .content .notf-title h1 {
    font-size: 34px;
    text-align: center;
  }
  .notf-section .container .content .notf-subtitle P {
    font-size: 18px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .notf-section .container .content .numb-boxe {
    width: 90%;
  }
}
@media (max-width: 450px) {
  .hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span,
  .abt-hero-section .chiffres-boxe-wrapper .chiffres-boxes .chiffres-boxe .chiffres-boxe-numb span {
    font-size: 52px;
  }
  .main-header.forMob {
    height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .hero-section {
    padding-top: 100px;
  }
  .apprch-section .container .content .intro h2, .actu-section .container .content .left .top h5, .actu-section .container .content .left .top h5 span, .expertise-section .container .content .expertise-section-title h3, .about-section .container .content .left .about-title h2, .equipe-hero-section .container .content .equipe-hero-title h1, .apprch-section .container .content .bottom .btm-title h3, .actus-hero-section .container .content .top .left h1, .article-content-section .container .content .art-ct-title h1, .featured-posts-section .container .content .top h3, .singExp-hero-section .container .content .top .left h1, .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title, .expertise-hero-section .container .content .top .left h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .hero-section .slide-content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-section .slide-content .cta-button, .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .btn-form, a.cta-link-wht, .btn-blue, a.cta-link-sld, a.cta-link, .cta-link-green, .featured-posts-section .container .content .top a {
    padding: 12px 20px;
    font-size: 16px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe {
    padding: 20px 12px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic img {
    max-width: 46px;
  }
  .expertise-section .container .content .expertise-boxes .expertise-boxe .expertise-boxe-ic {
    height: 46px;
  }
  .about-section .container,
  .expertise-section .container {
    width: calc(100% - 30px);
  }
  .abt-hero-section .abt-shape-ekl {
    max-width: 230px;
    bottom: 720px;
  }
  .apprch-section .container .content .top .left .apprch-title {
    font-size: 28px;
    line-height: 38px;
  }
  .apprch-section .container .content .top .left .apprch-icon img {
    width: 45px;
  }
  .ctc-section .container .content .bottom {
    padding: 36px 12px;
  }
  .ctc-section .container .content .bottom .ctc-wrapper .ctc-form-boxe form .form-group .field input {
    font-size: 16px;
    line-height: 1;
  }
  .apprch-section .container .content .intro h2 {
    margin-bottom: 20px;
  }
  .apprch-section .container .content .bottom .btm-cta {
    margin-top: 0;
  }
  .apprch-section {
    padding: 30px 0;
  }
}
@media (max-width: 375px) {
  .contact-form-section .container .content .middle .ctc-form-title {
    font-size: 28px;
    line-height: 38px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-infowrapper .eqp-boxe-info .eqp-boxe-name h2 {
    font-size: 28px;
    line-height: 1;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul {
    padding-left: 16px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a {
    font-size: 15px;
    line-height: 25px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact ul li a img {
    width: 30px;
  }
  .eqp-section .container .content .eqp-boxes .eqp-boxe .eqp-boxe-contact::after {
    width: 4px;
  }
  .main-header.forMob .container .content .header-nav .middle .mobile-burg #burger-menu {
    height: 30px;
  }
  .eqp-section .modal-overlay .modal .modal-content .modal-content-top .right ul li a {
    gap: 8px;
    font-size: 16px;
    line-height: 26px;
  }
  .marches-publics .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li, .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li, .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content p, .singExp-content-section .container .content .sg-intro .sg-intro-bt p {
    font-size: 14px;
    line-height: 24px;
  }
  .apprch-section .container .content .intro h2, .actu-section .container .content .left .top h5, .actu-section .container .content .left .top h5 span, .expertise-section .container .content .expertise-section-title h3, .about-section .container .content .left .about-title h2, .equipe-hero-section .container .content .equipe-hero-title h1, .apprch-section .container .content .bottom .btm-title h3, .actus-hero-section .container .content .top .left h1, .article-content-section .container .content .art-ct-title h1, .featured-posts-section .container .content .top h3, .singExp-hero-section .container .content .top .left h1, .singExp-content-section .container .content .sg-intro .sg-intro-tp .sg-intro-left .sg-intro-title, .expertise-hero-section .container .content .top .left h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after,
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after, .droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li::after {
    width: 20px;
    height: 20px;
    top: 6px;
  }
  .prop-intellect .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li,
  .droit-informatique .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li, .droit-distrib .singExp-content-section .container .content .sg-outro .sg-outro-items .sg-outro-item .sg-outro-item-content ul li {
    padding-left: 34px;
  }
}


.wpml-ls-statics-footer, .otgs-development-site-front-end {
	display:none !important;
	height:0 !important; 
	width:0 !important;
}

/* Plaquette Link  */
.plaquette-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.36s cubic-bezier(0.63, 0.77, 1, 1);
}
.plaquette-popup .plaquette-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(77deg, rgba(62, 148, 172, 0.26) 0%, rgba(34, 123, 148, 0.22) 100%);
  backdrop-filter: blur(2px);
}
.plaquette-popup .plaquette-popup-content {
  background: #E8EAF2;
  border-radius: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  padding: 60px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
  transition: all 0.46s cubic-bezier(0.63, 0.77, 1, 1);
  z-index: 1;
}
.plaquette-popup .plaquette-popup-content .plaquette-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #b5cdd9;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  font-weight: bold;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.plaquette-popup .plaquette-popup-content .plaquette-popup-close:hover {
  background: #050F33;
  color: #b5cdd9;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper h3 {
  color: #050F33;
  font-family: "Playfair", serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper p {
  color: #2B334E;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  margin-bottom: 30px;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .form-group {
  margin-bottom: 2px;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .form-group label {
  display: block;
  color: #050F33;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .form-group .plaquette-email {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #b5cdd9;
  border-radius: 12px;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 16px;
  color: #2B334E;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .form-group .plaquette-email:focus {
  outline: none;
  border-color: #050F33;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 123, 148, 0.1);
          box-shadow: 0 0 0 3px rgba(34, 123, 148, 0.1);
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .form-group .error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  min-height: 20px;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .plaquette-btn {
  width: 100%;
  padding: 14px 28px;
  background: #050F33;
  color: #CDCFD6;
  font-family: "Inter", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .plaquette-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: #227B94;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .plaquette-btn:hover:not(:disabled)::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.plaquette-popup .plaquette-popup-content .plaquette-form-wrapper .plaquette-form .plaquette-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.plaquette-popup.active {
  opacity: 1;
  visibility: visible;
}
.plaquette-popup.active .plaquette-popup-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 12px !important;
    border: 2px solid #00a0d2;
	display:none !important;
	opacity:0 !important;
	visibility:hidden !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232 !important;
    font-size: 14px !important;
    font-weight: normal;
    display: block;
    margin-top: 10px !important;
}
@media (max-width: 768px) {
  .plaquette-popup-content {
    padding: 40px 30px !important;
    width: 95% !important;
  }
}