.ul{display:flex;flex-direction:column;align-items:flex-start;list-style-image:url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/red-triangle-forward.svg');margin:0}ul li{padding:0rem 1.125rem;color:var(--Iron,#5E616D);font-variant-numeric:oldstyle-nums proportional-nums;font-feature-settings:'cpsp' on;font-family:Roboto;font-size:1.25rem;font-style:normal;font-weight:600;line-height:1rem;font-variant:all-small-caps;letter-spacing:0.05rem}

.cta-icon-fire::after {
  content: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/Pointers/fire_arrow.svg'); /* Replace with the path to your icon */
  margin-left: 10px;
  width: 16px; /* Adjust the size as needed */
  height: 16px; /* Adjust the size as needed */
  filter: invert(0%); /* Default color */
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
}

.cta-icon-fire:hover:after {  
  transform: translateX(10px); /* Move 10px to the right on hover */}


.cta-icon-markets {
  display: inline-flex;
  align-items: right;
  padding: 10px 0px;
  cursor: pointer;
  position: relative;}

.cta-icon-markets::after {
  content: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/Pointers/markets_arrow.svg'); /* Replace with the path to your icon */
  margin-left: 10px;
  width: 16px; /* Adjust the size as needed */
  height: 16px; /* Adjust the size as needed */
  filter: invert(0%); /* Default color */
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-bottom: 5px;

}

.cta-icon-markets:hover:after {  
  filter: invert(100%) brightness(1000%) contrast(100%); /* Change to white on hover */
  transform: translateX(10px); /* Move 10px to the right on hover */
}

.cta-icon-services {
  display: inline-flex;
  align-items: right;
  padding: 10px 0px;
  cursor: pointer;
  position: relative;}

.cta-icon-services::after {
  content: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/Pointers/services_arrow.svg'); /* Replace with the path to your icon */
  margin-left: 10px;
  width: 16px; /* Adjust the size as needed */
  height: 16px; /* Adjust the size as needed */
  filter: invert(0%); /* Default color */
  transition: transform 0.3s ease, filter 0.3s ease;

}

.cta-icon-services:hover:after {  
  filter: invert(100%) brightness(1000%) contrast(100%); /* Change to white on hover */
  transform: translateX(10px); /* Move 10px to the right on hover */
}

.cta-icon-primary::after {
  content: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/Pointers/primary_arrow.svg'); /* Replace with the path to your icon */
  margin-left: 10px;
  width: 16px; /* Adjust the size as needed */
  height: 16px; /* Adjust the size as needed */
  filter: invert(0%); /* Default color */
  transition: transform 0.3s ease, filter 0.3s ease;}

.cta-icon-primary:hover:after {  
  transform: translateX(10px); /* Move 10px to the right on hover */}

/* CTA Icon END */

/* Iconography */

.icon-markets {
  width: 128px; /* Default width */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure the image doesn't exceed its container's width */
  fill: #0F7D95; /* Change color to the specific hex color */
  filter: invert(36%) sepia(100%) saturate(500%) hue-rotate(150deg) brightness(90%) contrast(90%);
  /* Adjust the filter values to approximate the desired hex color #545394 */
}

.icon-services {
  width: 128px; /* Default width */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure the image doesn't exceed its container's width */
  fill: #545394; /* Change color to the specific hex color */
  filter: invert(24%) sepia(20%) saturate(5000%) hue-rotate(230deg) brightness(90%) contrast(85%);
  /* Adjust the filter values to approximate the desired hex color #545394 */
}

.h2_heading {
  color: var(--White, #FFF);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-family: Roboto;
  font-size: 2vw;
  font-style: normal;
  font-weight: 800;
  line-height: 1rem !mportant;
  text-transform: uppercase;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.50);
}

.heading_flex {
  color: var(--White, #FFF);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-variant: small-caps;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.50);
}

/* Media query for screens 360px and above */
@media (min-width: 360px) {
  .heading_flex {
    font-size: 9vw;
    padding: 0 2vw 0 2vw;
  }
}

/* Media query for screens 480px and above */
@media (min-width: 480px) {
  .heading_flex {
    font-size: 8vw;
    padding: 0 2vw 0 2vw;
  }
}

/* Media query for screens 768px and above */
@media (min-width: 992px) {
  .heading_flex {
    font-size: 4vw;
  }
}

/* Media query for screens 1440px and above */
@media (min-width: 1440px) {
  .heading_flex {
    font-size: 2.5vw;
    line-height: 100%;

  }
}

/* END Resposive Text */

/* styles.css */

/* Base styles for nav_header */
.nav_header {
  font-size: 1rem;
  font-variant: none;
  font-weight: 400;
  letter-spacing: -0.24px;
  display: flex; /* Align elements in one line */
  align-items: center; /* Vertically center the elements */
  color: rgba(255, 255, 255, 0.8); /* Slightly brighter white on hover */
  transition: color 0.3s ease; /* Smooth transition on hover */


}

/* Hover State */
.nav_header:hover {
  color: rgba(255, 255, 255, 1); /* Slightly brighter white on hover */
}

/* Active (Clicked) State */
.nav_header .active {
  color: #fff; /* Full white on active */
}

/* Softer white for next and previous links when an active link is present */
.nav_header .active + a,
.nav_header .active ~ a {
  color: rgba(255, 255, 255, 0.8) !important; /* Softer white for adjacent links */
  text-decoration: none; /* Ensure no underline */
}





.h3_heading {
  display: flex !important; /* Enable flexbox layout */
  align-items: flex-start; /* Align items to the top */
  justify-content: flex-start !important; /* Align items to the left */
  width: 100% !important; /* Ensure the heading takes full width */
  color: var(--Metal, #252630);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-family: Roboto, sans-serif; /* Add a fallback font */
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  font-variant: small-caps;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.12);
  line-height: 1 !important; /* Use a relative line-height */
  padding-bottom: 1rem;
  /*   white-space: nowrap; /* Prevent text from wrapping */ */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
}


.plead {
  color: var(--Typography-Body, #3B3E4B);
  font-variant-numeric: oldstyle-nums proportional-nums;

  /* Lead */
  font-family: Roboto;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 28px; /* 140% */
}

.ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style-image: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Website%20Pages/Iconography/red-triangle-forward.svg');
  display:inline;
  margin: 0;
}
ul li{
  padding: 0rem 1.125rem;
  color: var(--Iron, #5E616D);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: 'cpsp' on;
  font-family: Roboto;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  font-variant: all-small-caps;
  letter-spacing: 0.05rem;
}



.h4_heading {
  color: var(--Typography-Heading, #252630);
  font-variant-numeric: oldstyle-nums proportional-nums;

  /* H4 */
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 1.35rem */
  font-variant: small-caps;
}



/* MODULE */

.sr-tabs-split-screen-01-image__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sr-tabs-split-screen-01-image__overlay.active::after {
  display: block;
}
/* @media screen and (min-width: 1150px) {
  .sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image .bg {
    height: auto !important;
  }
} */
@media screen and (min-width: 992px) {
  .sr-tabs-split-screen-01 .mobile-content {
    display: none;
  } 


  .sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-basis: 50%;
  }

  .sr-tabs-split-screen-01 .bg {
    height: 100% !important;
    object-fit: cover;
  }

  .sr-tabs-split-screen-01 .image-info {
    position: relative;
    width: 100%;
    z-index: 10;
  }

  .sr-tabs-split-screen-01 [data-image] {
    position: absolute;
    height: 100%;
    opacity: 0;
    transition: opacity 250ms ease;
  }

  .sr-tabs-split-screen-01 [data-image].active {
    opacity: 1;
  }
  .sr-tabs-split-screen-01 .content-scroll {
    display: flex;
    flex-basis: 50%;
    max-width: 50%;
    justify-content: center;
    align-items: center;
  }

  .sr-tabs-split-screen-01 [data-section] {
    height: 70vh;
    min-height: 650px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: clamp(6rem, 10vw, 12rem) clamp(6rem, 10vw, 12rem);
  }

  .sr-tabs-split-screen-01 .menu {
    display: block;
    position: absolute;
    bottom: 6.25rem;
    right: 0;
    z-index: 10;
    padding: 0 0 0 15px;
    margin: 0;
  }


  .sr-tabs-split-screen-01 .menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    line-height: 3;
    list-style-type: none;
    cursor: pointer;
  }

  .sr-tabs-split-screen-01 .menu li::after {
    background-color: rgba(249, 251, 254, 0.40) !important;
    content: '';
    width: 6.25rem;
    height: 2px;
  }
  .sr-tabs-split-screen-01 .menu li.active::after {
    background-color: currentColor !important;
  }

  .sr-tabs-split-screen-01 .sr-tabs-split-screen__title {
    position: absolute;
    padding: clamp(6rem, 10vw, 12rem);
  }

  .sr-tabs-split-screen-01 .sr-tabs-split-screen__title.active {
    display: block;
  }
}
@media (max-width: 992px) {
  .content-scroll__info{
    padding:0px  23px;
  }

  .h3_heading {
    margin-left: 23px;
  }
  .sr-tabs-split-screen-01 [data-section] {
    padding: clamp(0rem, 3vw, 3rem); 
  }
}
@media screen and (max-width: 992px) {

  .sr-tabs-split-screen-01 .menu,
  .sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image {
    display: none;
  }

  .sr-tabs-split-screen-01 .mobile-content {
    position: relative;
  }

  .sr-tabs-split-screen-01 .content-scroll__info { 
    /*     padding: 5rem 3rem; */
  }


  .sr-tabs-split-screen-01 .sr-tabs-split-screen__title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 2rem;
  }

  .sr-tabs-split-screen-01 .sr-tabs-split-screen__title>* {
    margin-bottom: 0;
  }
}


.sr-tabs-split-screen-01.sr_module [data-section] {}

.sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image__overlay[data-overlay]::after {
}
@media screen and (max-width: 992px) {
  .sr-tabs-split-screen-01.sr_module [data-section] .mobile-content:before {
    position: absolute;
    content: '';
    /* 			background: rgba(12, 99, 255, 0.75); */
    width: 100%;
    height: 100%;
  }
}

.sr-tabs-split-screen-01.sr_module [data-section] {}

.sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image__overlay[data-overlay="2"]::after {

}
@media screen and (max-width: 992px) {
  .sr-tabs-split-screen-01.sr_module [data-section] .mobile-content:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
  }
}


.sr-tabs-split-screen-01.sr_module [data-section] {}

.sr-tabs-split-screen-01 .sr-tabs-split-screen-01-image__overlay[data-overlay]::after {

}
@media screen and (max-width: 992px) {
  .sr-tabs-split-screen-01.sr_module [data-section] .mobile-content:before {
    position: absolute;
    content: '';
    /* 			background: rgba(12, 99, 255, 0.75); */
    width: 100%;
    height: 100%;
  }
}


@media screen and (min-width: 992px) {
  .sr-tabs-split-screen-01.sr_module .sr-tabs-split-screen-01-image {

  }
  .sr-tabs-split-screen-01.sr_module .menu {

  }
}
