@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: "Rebeqa";
  src: url("./font/Rebeqa-Regular.ttf");
}

:root {
  --blue: #135787;
  --dark_blue: #0C3654;
  --light_blue: #C1E2F5;
  --gray: #8AA4BA;
  --ligth_gray: #F3F3F3;
  --bg: #FFFFFF;
  --border: 1px solid #135787;
  --border_light: 1px solid #F3F3F3;
  --border_light_05: .5px solid #F3F3F3;
  --hover: #F5F5F5;
}

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  scrollbar-width: none;
}
html:focus-within { scroll-behavior: smooth; }

body {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  height: auto;
  width: 100vw;
  background-color: var(--bg);
  z-index: 1;
  font-family: "Fira Sans", sans-serif;
  scrollbar-width: none;
  overflow-y: auto;
}
body:has(> .aside_menu.active) {
  overflow-y: hidden;
}

*::selection {
  color: #FFFFFF;
  background-color: var(--blue);
}

nav.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.6s ease-in-out;
}

a {
  text-decoration: none;
  font-weight: 300;
  cursor: pointer;
}

p {
  font-weight: 200;
  color: var(--blue);
}


/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: var(--border);
  background-color: var(--bg);
  z-index: 99999;
  transition: top .5s ease-in-out;
  animation: fromTop ease-in-out .8s;
}
.header.hide {
  top: -61px;
}

.header_navigation {
  height: 60px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_navigation_link {
  width: 150px;
  color: var(--blue);
  font-size: 40px;
  text-transform: uppercase;
  transition: color .4s ease-in-out;
}
.header_navigation_link:hover {
  color: var(--hover);
}
#logo {
  margin: 7px 0 0 0;
  width: fit-content;
  font-family: "Rebeqa", sans-serif;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: color .5s ease-in-out;
}
#logo:hover {
  color: var(--light_blue);
}
.logo_helicopter,
.logo_boat {
  width: fit-content;
}
.logo_helicopter g,
.logo_boat g {
  transition: fill .5s ease-in-out;
}
.logo_helicopter {
  align-self: flex-start;
}
.logo_boat {
  align-self: flex-end;
  padding: 0 0 5px 0;
}
#logo:hover .logo_helicopter g,
#logo:hover .logo_boat g {
  fill: var(--light_blue);
}

/* DESKTOP : ANCHORS */
.header_anchors {
  display: none;
  height: 100%;
}
.header_anchors_link {
  position: relative;
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-left: var(--border);
  color: var(--blue);
  transition: color 0.4s ease-in-out;
}
.header_anchors_link:last-child {
  width: 220px;
}
.header_anchors_link:last-child {
  border-right: var(--border);
}
.header_anchors_link::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0;
  height: 100%;
  background-color: var(--blue);
  z-index: -1;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.header_anchors_link:hover::before {
  height: 100%;
  width: 100%;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.header_anchors_link:hover {
  color: var(--hover);
}

/* MOBILE/TAB : BURGER MENU */
.header_navigation_burger {
  position: relative;
  width: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;

  border-left: var(--border);
  border-right: var(--border);
}
.header_navigation_burger input {
  width: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
.header_navigation_burger span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: var(--blue);
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.header_navigation_burger span:first-child {
  transform-origin: bottom right;
}

.header_navigation_burger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.header_navigation_burger input:checked ~ span:nth-last-child(1) {
  opacity: 1;
  transform: rotate(-45deg) translate(-2px, -1px);
}
.header_navigation_burger input:checked ~ span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.header_navigation_burger input:checked ~ span:nth-last-child(3) {
  transform: rotate(45deg) translate(0, -1px);
}

.header_navigation_burger input:checked ~ .aside_menu {
  left: 0%;
  transition: left 1s ease-in-out;
}

/* MOBILE/TAB : ASIDE MENU */
.aside_menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100%;
  background-color: var(--bg);
  z-index: 401;
  display: flex;
  flex-flow: column;
  transition: left 1s ease-in-out;
}
.aside_menu.active {
  left: 0%;
  transition: left 1s ease-in-out;
}
.aside_menu_nav {
  width: 90%;
  margin: 60px 5% 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: var(--border);
  border-right: var(--border);
}
.aside_menu_link {
  width: 100%;
  position: relative;
  padding: 30px 5%;
  color: var(--blue);
  text-transform: uppercase;
  font-size: clamp(24px, 10vw, 30px);
  z-index: 1;
  border-top: var(--border);
}
.aside_menu_link:last-child {
  border-bottom: var(--border);
}
.aside_menu_link::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0;
  height: 100%;
  background-color: var(--blue);
  z-index: -1;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.aside_menu_link:hover::before {
  height: 100%;
  width: 100%;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.aside_menu_link:hover {
  color: var(--hover);
}
.aside_menu_tel,
.aside_menu_mail {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex: 1 1 auto; */
  padding: 30px 0;

  font-family: "Barlow", sans-serif;
  font-size: clamp(20px, 7vw, 40px);
}
.aside_menu_tel {
  background-color: var(--blue);
}
.aside_menu_tel a {
  color: var(--bg);
}
.aside_menu_mail {
  border-left: var(--border);
  border-right: var(--border);
  border-bottom: var(--border);
}
.aside_menu_mail a {
  color: var(--blue);
}

/* SWITCH LANGUAGES */
#switch_language {
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: var(--border);
}
#switch_language span {
  font-size: 19px;
}
#switch_language .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 15px;
  margin: 0 5px;
  cursor: pointer;
}
#switch_language .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#switch_language .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--blue);
  border-radius: 15px;
  -webkit-transition: .4s;
  transition: .4s;
}
#switch_language .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 3px;
  bottom: 2.5px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--light_blue);
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

.aside_menu_nav #switch_language {
  border-left: transparent;
}

@media screen and (min-width: 1024px) {
  .header_anchors {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_navigation_burger {
    display: none;
  }
  .aside_menu.active {
    left: -100%;
    transition: left 1s ease-in-out;
  }
}


/* PAGE BANNER - HEIGHT FULL */
.main_section {
  position: relative;
  height: 100vh;
  padding: 130px 5% 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: padding 1s ease;
}
.main_section_title {
  max-width: 1100px;
  font-family: "Rebeqa", sans-serif;
  color: var(--blue);
  font-weight: 600;
  font-size: clamp(80px, 24vw, 170px);
  z-index: 2;
}
.main_section_fig {
  width: 80%;
  max-width: 800px;
  height: auto;
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 1;
  transition: opacity .6s ease-in-out;
}
.main_section_fig img {
  width: 100%;
}
@media screen and (min-width: 768px){
  .main_section {
    padding: 0 5%;
    justify-content: center;
  }
  /* .main_section_fig {
    width: 60%;
  } */
}


/* SCEV SECTION */
.scev_section {
  position: relative;
  width: 100%;
  padding: 150px 5% 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: var(--border);
}
.scev_section_title {
  border-top: var(--border);
  padding: 30px 0 0 0;
  font-weight: 300;
  text-align: right;
  font-size: clamp(14.5px, 7vw, 16px);
  color: var(--gray);
  transition: padding .5s ease-in-out;
}
.scev_section_content {
  display: flex;
  flex-direction: column;
}
.scev_section_content_text {
  max-width: 650px;
  margin: 40px auto 80px auto;
  font-weight: 400;
  font-size: clamp(24.5px, 7vw, 36px);
  transition: margin .5s ease-in-out;
}
.scev_section_content_link {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  padding: 10px 15px;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue);
  z-index: 1;
  cursor: pointer;
}
.scev_section_content_link::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 7px;
    right: 7px;
    background-color: #C1E2F5;
    z-index: -1;
    transition: transform 0.75s ease-in-out;
}
.scev_section_content_link::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: var(--border);
}
.scev_section_content_link:hover::before{
  transform:translate(8px,-6px)
}

.scev_section_quote {
  width: 85%;
  margin: 100px 0 50px 15%;
  padding: 15px 0 15px 5%;
  border-top: var(--border);
  transition: padding .5s ease-in-out;
}
.scev_section_quote_flex {
  height: fit-content; 
  margin: 15px auto 45px auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.scev_section_quote_flex figure {
  width: 65px;
  height: 65px;
  margin: 0 10px 0 0;
}
.scev_section_quote_flex figure img {
  width: 100%;
  border: .5px solid var(--blue);
  border-radius: 50%;
}
.scev_section_quote_flex_infos_name {
  font-weight: 400;
}
.scev_section_quote_flex_infos_role {
  color: var(--gray);
}
.scev_section_quote_text {
  font-size: 20px;
  font-weight: 200;
  text-align: end;
  color: var(--gray);
}
.scev_section_quote_text strong {
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .scev_section {
    width: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 150px 5% 0 10%;
  }
  .scev_section_content {
    width: 100%;
    border-right: var(--border);
    padding: 0 0 75px 0;
  }
  .scev_section_title {
    padding: 30px 5% 0 0;
    width: 65%;
    margin: 0 0 0 35%;
  }
  .scev_section_content_text {
    margin: 50px 5% 150px auto;
  }
  .scev_section_quote {
    width: 100%;
    margin: 0;
    padding: 70px 0 0 5%;
    border-top: var(--border);
  }
  .scev_section_quote_flex {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .scev_section_quote_flex figure {
    margin: 0 0 10px 0;
  }
}
@media screen and (min-width: 1024px) {
  .scev_section_quote {
    padding: 70px 0 0 15%;
  }
}


/* NUMBERS SECTION */
.why_us_section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-color: var(--bg);
  transition: background-color .7s ease-in-out;
}
.why_us_section.active {
  background-color: var(--blue);
}
 .why_us_section_title {
  padding: 0 5%;
  font-weight: 300;
  font-size: clamp(14.5px, 7vw, 16px);
  color: var(--ligth_gray);
  transition: padding .5s ease-in-out;
}
.why_us_section_subtitle {
  color: var(--ligth_gray);
  margin: 40px 0 40px 0;
  padding: 0 5%;
  font-weight: 400;
  font-size: clamp(24.5px, 7vw, 36px);
  transition: margin .5s ease-in-out;
}
.why_us_section_text {
  color: var(--ligth_gray);
  margin: 30px 0;
  padding: 0 5%;
  max-width: 1200px;
  font-size: clamp(16px, 5vw, 19px);
}
.why_us_section_text strong {
  font-weight: 400;
}
.numbers_section {
  margin: 0 auto 100px auto;
  background-color: var(--blue);
}

.numbers_section_items {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 30px 5%;
  transition: padding 1s ease;
  border-top: var(--border_light_05);
}
.numbers_section_items:first-child {
  border-right: var(--border_light_05);
}
.numbers_section_items:last-child {
  border-bottom: var(--border_light_05);
  border-left: var(--border_light_05);
}
.numbers_section_items_title {
  position: relative;
  height: fit-content;
  width: fit-content;
  margin-right: 40px;
  font-family: 'Barlow', sans-serif;
  color: var(--light_blue);
  font-weight: 800;
  font-size: clamp(60px, 15vw, 83px);
  z-index: 10;
}
.numbers_section_items_subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--ligth_gray);
  font-weight: 200;
  font-size: clamp(14px, 3.5vw, 24px);
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .why_us_section_title {
    text-align: right;
  }
  .why_us_section_subtitle {
    text-align: right;
    max-width: 800px;
    margin-left: calc(100% - 700px);
  }
}
@media screen and (min-width: 1024px) {
  .numbers_section {
    width: 90%;
    margin: 0 auto 150px auto;
    display: flex;
  }
  .numbers_section_items {
    padding: 50px 2.5%;
    border: none;
  }
  .numbers_section_items:first-child {
    border-top: var(--border_light_05);
    border-right: var(--border_light_05);
  }
  .numbers_section_items:last-child {
    border-bottom: var(--border_light_05);
    border-left: none;
  }
}

/* SERVICES SECTION */
.services_section {
  width: 100%;
}
.services_section_wrapper {
  padding: 100px 5% 0 5%;
}
.services_section_title {
  font-weight: 300;
  text-align: right;
  font-size: clamp(14.5px, 7vw, 16px);
  color: var(--gray);
}
.services_section_subtitle {
  padding: 30px 0 0 0;
  margin: 40px auto 0 auto;
  font-weight: 400;
  font-size: clamp(24.5px, 7vw, 36px);
  transition: margin .5s ease-in-out;
}
.services_section_steps {
  padding: 20px 0 50px 0;
  color: var(--blue);
  font-size: clamp(16.5px, 5vw, 22px);
  font-weight: 300;
  list-style: none;
}
.services_section_steps li {
  padding: 20px 0;
  border-bottom: var(--border);
}
.services_section_text {
  width: 100%;
  max-width: 750px;
  padding: 30px 5% 0 5%;
  font-size: clamp(16px, 5vw, 19px);
}
@media screen and (min-width: 768px) {
  .services_section_title {
    text-align: left;
  }
  .services_section_subtitle {
    max-width: 650px;
    margin: 40px 0 0 0;
    padding: 0;
  }
  .services_section_steps {
    padding: 50px 0;
    color: var(--blue);
    font-size: clamp(16.5px, 7vw, 22px);
    font-weight: 300;
  }
}
@media screen and (min-width: 1024px) {
  .services_section {
    display: grid;
    grid-template-columns: 40% 60%; 
    align-items: center;
  }
  .services_section_title {
    text-align: right;
    padding: 0 5%;
  }
  .services_section_subtitle {
    text-align: right;
    padding: 30px 5% 0 10%;
  }
  .services_section_wrapper {
    padding: 100px 0 0 0;
    border-right: var(--border);
  }
  .services_section_steps {
    padding: 50px 0 0 0;
  }
  .services_section_steps li {
    width: 70%;
    margin: 0 0 0 30%;
  }
  .services_section_text_wrapper {
    padding: 100px 0 0 5%;
  }
}


/* CONTACT SECTION */
.contact_section {
  margin: 150px 0 0 0;
  padding: 100px 5%;
  background-color: var(--light_blue);
}
.contact_section_title {
  color: var(--blue);
  font-size: clamp(24.5px, 7vw, 36px);
  max-width: 700px;
}
.contact_section_text {
  margin: 40px 0 0 0;
  font-size: clamp(16px, 10vw, 19px);
}
.contact_section_content {
  width: 100%;
  height: 230px;
  margin: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact_section_link {
  position: relative;
  border: var(--border);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-transform: uppercase;
  font-size: clamp(16px, 8vw, 26px);
  z-index: 1;
  cursor: pointer;
  transition: color .5s ease;
}
.contact_section_link::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0;
  height: 100%;
  background-color: var(--blue);
  z-index: -1;
  transition: width .4s ease-in-out, height .4s ease-in-out;
}
.contact_section_link:hover::before  {
  height: 100%;
  width: 100%;
  transition: width .4s ease-in-out, height .4s ease-in-out;
}
.contact_section_link:hover {
  color: var(--ligth_gray);
}
@media screen and (min-width: 768px) {
  .contact_section_content {
    height: 100px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contact_section_link {
    width: 50%;
  }
}


/* REFERENCES SECTION */
.partners_section {
  width: 100%;
  position: relative;
  padding: 100px 0;
}
.partners_section_title {
  padding: 0 5%;
  font-weight: 300;
  font-size: clamp(14.5px, 7vw, 16px);
  color: var(--gray);
}
.partners_section_subtitle {
  width: 90%;
  margin: 0 auto;
  color: var(--blue);
  padding: 50px 0 60px 0;
  font-weight: 300;
  font-size: clamp(16px, 5vw, 19px);
  border-bottom: var(--border);
}
.partners_section_logos {
  overflow: hidden;
  padding: 60px 0 0 0;
}
.partners_section_logos_slider {
  display: flex;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}
.partners_section_logos_slider img {
  width: auto;
  height: 65px;
  margin: 0 50px;
}
@media screen and (min-width: 1024px) {
  .partners_section {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 150px 0 0 0;
  }
  .partners_section_wrapper {
    padding: 0 0 150px 0;
    border-right: var(--border);
  }
  .partners_section_title {
    width: 50%;
    margin: 0 0 0 50%;
    padding: 30px 5% 0 5%;
    text-align: right;
    border-top: var(--border);
  }
  .partners_section_subtitle {
    width: 75%;
    margin: 0 7.5% 0 17.5%;
    border-bottom: none;
    padding: 50px 0 0 0;
    text-align: right;
  }
  .partners_section_logos {
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    border-top: var(--border);
  }
}


/* ANIMATIONS */
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-2030px)}
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fromTop {
  0% { transform: translate(0, -20vh); }
  100% { transform: translate(0, 0); }
}
@keyframes fromBottom {
  0% { transform: translate(0, 20vh); }
  100% { transform: translate(0, 0); }
}


/* FOOTER */
footer {
  width: 100%;
  padding: 60px 0;
  background-color: var(--blue);
  position: relative;
}
.footer_title {
  padding: 0px 5% 10px 5%;
  color: var(--ligth_gray);
  font-weight: 400;
}
.footer_subtitle {
  padding: 0px 5% 60px 5%;
  color: var(--ligth_gray);
}
.footer_section {
  width: 90%;
  height: auto;
  margin: 0 5% 40px 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  justify-content: space-evenly;
  transition: margin 1s ease, width 1s ease;
}
.footer_section_link {
  padding: 0 10px;
  height: 60px;
  min-width: 100px;
  width: 33%;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ligth_gray);
  border: var(--border_light);
  text-transform: uppercase;
  z-index: 1;
  transition: color .5s ease, width .5s ease-in-out;
}
.footer_section_link:last-child {
  width: 100%;
}
.footer_section_link::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0;
  height: 100%;
  background-color: var(--ligth_gray);
  z-index: -1;
  transition: width .4s ease-in-out, height .4s ease-in-out;
}
.footer_section_link:hover::before  {
  height: 100%;
  width: 100%;
  transition: width .4s ease-in-out, height .4s ease-in-out;
}
.footer_section_link:hover {
  color: var(--blue);
}
.footer_plus {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.footer_plus button {
  background-color: transparent;
  outline: transparent;
  border: transparent;
  color: var(--ligth_gray);
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
}
.footer_plus p {
  color: var(--ligth_gray);
  margin: 10px 0 0 0;
}
.footer_plus a {
  color: var(--ligth_gray);
  font-weight: 400;
}

#footer__mentions__legales {
  display: none;
  width: 90%;
  margin: 50px auto 0 auto;
  padding: 5%;
  border: var(--border_light);
}
#footer__mentions__legales p {
  color: var(--ligth_gray);
}

@media screen and (min-width: 500px) {
  .footer_plus {
    margin: 70px auto 0 auto;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer_plus p {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer_section {
    gap: 0;
  }
  .footer_section_link {
    width: 150px;
  }
  .footer_section_link:last-child {
    width: calc(100% - 450px);
  }
}
@media screen and (min-width: 1024px) {
  .footer_section_link {
    width: 25%;
  }
  .footer_section_link:last-child {
    width: 25%;
  }
}


/* PAGE - SCEV */
.jcv_content {
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
}
.jcv_title {
  padding: 170px 5% 40px 5%;
  font-family: "Rebeqa", sans-serif;
  color: var(--blue);
  font-weight: 600;
  font-size: clamp(80px, 24vw, 180px);
  z-index: 2;
}
.jcv_figure_wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.jcv_figure {
  width: 80%;
  max-width: 450px;
  max-height: 450px;
  align-self: flex-end;
  height: auto;
  display: flex;
  align-items: center;
  border: var(--border);
}
.jcv_figure img {
  width: 100%;
  height: auto;
}
.jcv_content_wrapper {
  width: 100%;
  margin: 0;
  padding: 0 5%;
}
.jcv_subtitle {
  width: 100%;
  margin: 0;
  padding: 80px 5% 100px 0;
  border-right: var(--border);
  border-bottom: var(--border);
  color: var(--blue);
  font-weight: 400;
  font-size: clamp(24.5px, 7vw, 36px);
}
.jcv_text_wrapper {
  padding: 0 0 100px 0;
  border-left: var(--border);

  background: linear-gradient(45deg, #b1d3eb 1%, #FFFFFF 1%, #FFFFFF 49%, #b1d3eb 49%, #b1d3eb 51%, #FFFFFF 51%, #FFFFFF 99%, #b1d3eb 99%);
  background-size: 6px 6px;
  background-position: 50px 50px;
}
.jcv_text {
  width: 90%;
  border-top: var(--border);
  color: var(--blue);
  padding: 40px 0 40px 2.5%;
  font-weight: 300;
  font-size: clamp(17px, 5vw, 22px);
}
.jcv_text:first-child {
  border-top: none;
}
.jcv_text span {
  font-weight: 400;
}
.cta_section {
  width: 100%;
  padding: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .jcv_content {
    position: relative;
    padding: 170px 5% 0 5%;
    display: grid;
    grid-template-columns: 60% 40%;
  }
  .jcv_title {
    padding: 0;
  }
  .jcv_figure {
    margin: 50px 0 0 20%;
  }
  .jcv_subtitle {
    width: 80%;
    margin: 0 0 0 20%;
    padding: 80px 5% 140px 0;
    border-right: var(--border);
    border-bottom: var(--border);
    color: var(--blue);
    text-align: right;
    font-weight: 400;
    font-size: clamp(24.5px, 7vw, 36px);
  }
  .jcv_text_wrapper {
    width: 80%;
    margin: 0 0 0 20%;
  }
}
@media screen and (min-width: 1024px) {
  .jcv_text:first-child {
    width: 70%;
  }
  .jcv_text:nth-child(2) {
    width: 85%;
  }
  .jcv_text:nth-child(3) {
    width: 95%;
  }
  .jcv_text:last-child {
    width: 75%;
  }
}

/* PAGE - TRANSITIONS */
.gsap_transition {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: flex-end;
  background-color: var(--bg);
  z-index: 999998;
}
.gsap_transition_one {
  height: 0vh;
  width: 100vw;
  background-color: var(--blue);
  z-index: 999999;
}