:root {
    --primary-color: #d72f3a;
      --primary-color-rgb: 215, 47, 58;
    --secondary-color: #111;
    --text-color: #fff;
    --geen-bg-color: #80bc00;
    --blue-bg-color: #00a7e1;
    --alt-primary-color: #d72f3a;
    --font-family: 'proxima_nova_rgregular', sans-serif;
    --font-family-bold: 'proxima_nova_rgbold', sans-serif;
    --ribbon-color: var(--primary-color);
    --ribbon-tail-color: #92220c; 
    --ribbon-thickness: 15px;
    --ribbon-padding: 0rem;
    --carousel-radius: 300px;
    --carousel-persp: 2000px;
  }
@font-face {
font-family: 'proxima_nova_rgregular';
src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot');
src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot?#iefix')
    format('embedded-opentype'),
  url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.woff')
    format('woff'),
  url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.ttf')
    format('truetype'),
  url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.svg#proxima_nova_rgregular')
    format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'proxima_nova_rgbold';
src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot');
src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot?#iefix')
    format('embedded-opentype'),
  url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.woff')
    format('woff'),
  url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.ttf')
    format('truetype'),
  url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.svg#proxima_nova_rgbold')
    format('svg');
font-weight: normal;
font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
  }
a{
  color: var(--text-color);
}
.newspaper2 {
  columns: 100px 2;
}
#start-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  hr {
    border: 1px solid rgba(var(--primary-color-rgb), 0.4);
    margin-bottom: 40px;
  }
#start-screen button {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 500px;
  }
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100vw;
}
body {
    background: #2d2929;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 1.25rem;
    font-family: "proxima_nova_rgregular", sans-serif;
  }
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('../img/bg-redSwoosh.svg') right center / auto 100vh no-repeat;
  opacity: 1;
  pointer-events: none;
}
h2 {
    display: inline-block;
    font-size: 2rem;
    padding-bottom: 1px;
    margin: 15px 0;
    border-bottom: 4px solid var(--primary-color);
  }
.box-cen h2 {
    display: inline-block;
    font-size: 2rem;
    padding-bottom: 1px;
    margin: 15px 0;
    border-bottom: 4px solid var(--text-color);
  }
h3:not(.ribbon) {
    font-size: 1.5rem;
    padding: 2px 15px;
    background-color: var(--primary-color);
    margin: 20px 0;
    border-radius: 50px 0 0 50px;
  }
.text-red{
  color: var(--alt-primary-color);
  
}
.section-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 2em;
}

.section-with-icon .icon {
  flex-shrink: 0;
  font-size: 2.1em;
  color: var(--primary-color);
  margin-top: 0.25em;
  width: 1.75em;
  height: 1.75em;
  text-align: center;
  background-color: var(--text-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  margin-right: 2.75rem;
  margin-left: 1.75rem;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  color: var(--primary-color);

}
.section-with-icon p {
  margin: 0;
  font-size: 1.07em;
  color: var(--text-color);
  line-height: 1.6;
}
.section-with-icon.full-width-block {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 600px) {
  .section-with-icon {
    flex-direction: column;
    align-items: flex-start; /* You can use center if you want everything centered */
  }
  .section-with-icon .icon {
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    width: 1.75em;
    height: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.text-red p {
  font-family: 'proxima_nova_rgbold', sans-serif;
  font-weight: 700;
}
.white-bg{
  background-color: var(--text-color);
  padding: 50px 5px 20px 40px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.full-width-block {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
}
.img-sm{
    width: 100% !important;
  }
.text-section .video-section {
margin-top: 0;
padding: 0;
}
.text-section .video-section .full-bleed {
max-width: none;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
padding: 0;
overflow: hidden;
}
.text-section .video-section video {
display: block;
width: 100%;
height: auto;
}
.chart-nav {
background-image: url('img/table/chart/1-nav.svg');
}
.chart-path {
background-image: url('img/table/chart/2-path.svg');
}
.chart-group {
background-image: url('img/table/chart/3-group.svg');
}
.chart-clipboard {
background-image: url('img/table/chart/4-clipboard.svg');
}
.chart-speech {
background-image: url('img/table/chart/5-speach.svg');
}
.chart-pathnav {
background-image: url('img/table/chart/6-pathNav.svg');
}
.chart-phone {
background-image: url('img/table/chart/7-phone.svg');
}
.chart-img{
    width: 75px !important;;
    height: auto !important;;
    fill: #ffffff !important;;
  }
.con-img{
width: 100px !important;;
height: auto !important;;
}
ul, ol{
  padding-left: 50px;
}
p {
  padding-bottom: 20px;
}
/* Pull Quotes START */
.pull-quote {
  position: relative;
  background: var(--primary-color);
  color: var(--text-color);
  font-size: 1.18em;
  font-weight: 600;
  line-height: 1.6;
  margin: 1.7em 0;
  padding: 1.6em 2em 1.6em 2.8em;  /* Large left padding to make room for the bar */
  border-radius: 0 20px 0 20px;                /* Square corners */
  box-shadow: none;
  overflow: hidden;
}

.pull-quote::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20px;
  width: 6px;                     /* Adjust width as needed for your look */
  height: 80%;
  background: var(--text-color);
  border-radius: 0;
  z-index: 1;
}

.pull-quote span {
  position: relative;
  z-index: 2; /* Ensures text sits above the bar */
}

@media (max-width: 600px) {
  .pull-quote {
    font-size: 1em;
    padding: 1.1em 1em 1.1em 1.7em;
  }
  .pull-quote::before {
    width: 10px;
  }
}


/* Pull Quotes END */
.bg-white{
  background-color: var(--text-color);
  padding: 20px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  color: var(--geen-bg-color);
  font-weight: 700;
}
.box-green{
  background-color: var(--geen-bg-color);
  padding: 20px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.box-red{
  background-color: rgba(var(--primary-color-rgb), 0.4);
  padding: 20px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.box-blue {
  display: block; 
  border-left: 10px solid var(--blue-bg-color);
  padding: 1.1em 1em 1.1em 2em; 
  margin: 1.5em 0;
  background: none; 
  
}
.box-cen, span.box-cen{
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: larger;
  font-style: italic;
  text-align: center;
}

.box, span.box{
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: larger;
  font-style: italic;
}
.box-img, span.box-img{
  background-color: var(--text-color);
  padding: 20px;
  border-radius: 50px;
  display: block;
  width: 250px !important;
  margin-bottom: 10px;
}
#section {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
#section .bg-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
z-index: 1;
}
#section {
    position: relative;
  }
#section .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 1rem;
    z-index: 2;
    opacity: 0;
  }
.title {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    z-index: 2;
    padding: 1rem;
    background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 8px );
-webkit-backdrop-filter: blur( 8px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
  }
.title-logos {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
.title-logos .logo {
    max-width: 40vw;
    max-height: 20vh;
    width: auto;
    height: auto;
  }
#section .title {
position: relative;
z-index: 2;
}
.title {
    position: relative;
    left: 200px;
    z-index: 2;
    opacity: 0;
    color: var(--text-color);
  }
.title h1 {
    font-size: 100px;
    margin-bottom: 20px;
  }
.title p {
    font-size: 50px;
  }
.title span {
    color: var(--primary-color);
  }
.case-study {
width: 100%;
max-width: 900px;
margin: 0 auto;
padding: 0 1rem;
}
.case-study li {
color: var(--primary-color);
}
.case-study li > p:first-child {
color: var(--primary-color);
font-weight: bold; 
}
.case-study p{
color: var(--text-color);
}
.text-section .content > div .case-study {
grid-column: 1 / -1;
}
.text-section .content > .case-study {
display: block !important;
grid-column: 1 / -1 !important;
width: 100%;
}
.text-section{
  color: var(--text-color);
}
.executive-summary p {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.text-section .content > .executive-summary {
display: block !important;
}
.parallax-section {
  position: relative;
  height: 120vh;
  overflow: hidden;
  perspective: 1000px;
}
.parallax-section img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform-style: preserve-3d;
    will-change: transform;
transition: none !important;

}
.text-section {
    position: relative;
    margin-top: -30vh;
    z-index: 2;
    padding: 50px 0;
    background: transparent;
  }
.text-section {
margin-top: 0;
}
.parallax-section + .text-section {
margin-top: -30vh;
}
.parallax-section {
position: relative;
}
.parallax-section .content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
background: rgba(17,17,17,0.6);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
padding: 2rem;
border-radius: 12px;
max-width: 1000px;
}
div .photo{
width: 75%;
height: auto;
border-radius: 8px;
display: block;
}
.name{
font-weight:var(--font-family-bold);
font-size: 2rem;
color: var(--primary-color);
}
.col {
display: grid;
grid-template-columns: 1fr 2fr !important;
gap: .5rem;
}
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .text-section .content {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(17,17,17,0.85) !important;
  }
}
.text-section .content {
background: rgba(17,17,17,0.6);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
padding: 2rem;
border-radius: 12px;
max-width: 1000px;
margin: 0 auto;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
position: relative !important;
}
/* H! Start */
.text-section .content > h1 {
  position: relative;
  z-index: 1;
  font-family: "proxima_nova_rgbold", sans-serif;
  font-size: 3.5rem;
  font-weight: bolder;
  margin-bottom: 40px;
  color: var(--text-color);
  line-height: 1.08;
  padding-left: 0.15em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  overflow: visible; 
  text-align: center; 
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}



.text-section .content > h1::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0;
  bottom: 0.10em;
  height: 32px;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 600 32" width="600" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5,28 Q300,2 595,28" stroke="%23d72f3a" stroke-width="7" fill="none" stroke-linecap="round"/></svg>');
}

.text-section .content > h1:has(span) {
  padding-top: 0.67em;
}



/* H1 TEST START */
.headline-ribbon-outer {
  position: relative;
 
  height: 0; 
}

.headline-ribbon {
  --f: .7em;     
  --r: 1.2em;    
  position: absolute;
  top: 5px; 
  left: -12px; 
  min-width: 120px;
  padding: 0.2em 1.2em 0.2em 1.1em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: var(--primary-color, #987F69);
  border-bottom: var(--f) solid #0005;
  border-right: var(--r) solid #0000;
  clip-path: 
    polygon(
      0 0,
      0 calc(100% - var(--f)),
      var(--f) 100%,
      var(--f) calc(100% - var(--f)),
      100% calc(100% - var(--f)),
      calc(100% - var(--r)) calc(50% - var(--f)/2),
      100% 0
    );
  z-index: 30;
  box-shadow: 0 3px 18px 0 rgba(0,0,0,0.15);
  /* Optional for more shadow/fold realism: */
  filter: drop-shadow(-6px 3px 6px rgba(0,0,0,0.11));
}

/* (Optional) Tweak headline margin to not clash with ribbon */
.headline-title {
  margin-top: 0.5em;
  margin-left: 0;  
}

/* H1 TEST END */

.timeline-section::before {
content: "";
position: absolute;
inset: 0;
/* background: url("img/ship-6794508_1280.jpg") center/cover no-repeat; */
z-index: 1;
}
.timeline-section > h1 {
position: relative;
z-index: 2;
font-family: "proxima_nova_rgbold", sans-serif;
font-size: 3.5rem;
font-weight: bolder;
padding-left: 20px;
margin-bottom: .5rem;
color: var(--primary-color);
text-shadow: #000 0px 0px 20px;
}
.timeline__cover .content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.19,1,0.22,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.timeline__cover .content.visible {
  opacity: 1;
  transform: none;
}
.parallax-section img {
  will-change: transform;
  transition: transform 0.05s linear;
}
.text-section .content > .box {
display: block !important;
grid-column: 1 / -1    !important;
}
.text-section .content:not(.grid-wrap) > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
@media (max-width: 700px) {
    .text-section .content:not(.grid-wrap) > div {
      grid-template-columns: 1fr;
    }
  }
.text-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
.text-section .content.grid-wrap {
    max-width: none !important;
    width: 100% !important;
    padding: 1rem;
    margin: 0 auto;
  }
.text-section .content.grid-wrap .grid-table {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    gap: 0.1rem;
    width: 50%;
    margin: 2rem auto;
    max-width: none !important;
  }
.text-section .content.grid-wrap .grid-table > div {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    text-align: center;
    width: 150px;
  }
.text-section .content.grid-wrap .grid-table > div img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
section{
padding-bottom: 20px;
}
.logo-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: .1rem;
align-items: center;
justify-items: center;
padding: 1rem 0;
}
.logo-container .logos {
width: 100%;
max-width: 190px;
height: auto;
object-fit: contain;
background: #fff;
padding: 1rem;
border-radius: 4px;
}
.logo-slider {
display: flex;
justify-content: center;
overflow: hidden;
}
.logo-track {
display: flex;
align-items: center;
}
.logo-item {
flex: 0 0 150px;
display: flex;
justify-content: center;
margin: 0 10px;
}
.logo-item .logos {
width: 100%;
height: 100px;
object-fit: contain;
background-color: var(--text-color);
padding: 10px;
}
.full-bleed {
max-width: none;
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
padding: 0;
overflow: hidden;
}
.full-bleed iframe {
display: block;
width: 100%;
height: 80vh;
border: none;
}
.no-pad {
padding: 0;
max-width: none;
}
.no-pad video {
display: block;
width: 100%;
height: auto;
}
.carousel-container {
width: 600px;
height: 300px;
margin: 4rem auto;
perspective: var(--carousel-persp);
overflow: visible;
}
.carousel-section {
display: flex;
justify-content: center;
}
.at-unb {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
}
.at-unb img {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.at-unb img:nth-child(1) { transform: rotateY(   0deg) translateZ(var(--carousel-radius)); }
.at-unb img:nth-child(2) { transform: rotateY(  90deg) translateZ(var(--carousel-radius)); }
.at-unb img:nth-child(3) { transform: rotateY( 180deg) translateZ(var(--carousel-radius)); }
.at-unb img:nth-child(4) { transform: rotateY( 270deg) translateZ(var(--carousel-radius)); }
.timeline-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.timeline-section > * {
  position: relative;
  z-index: 2;
}
.timeline__cover {
  /* background: url("../img/bg-container-ship-7383545.jpg") center center / cover no-repeat fixed; */
  padding: 80px 0;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}
body.safari .timeline__cover {
  background: url("../img/bg-container-ship-7383545.jpg") center center / cover no-repeat scroll !important;
}
.timeline__cover .timeline__title,
.timeline__cover .timeline {
  position: relative;
  z-index: 3;
}
.slide-container {
display: grid;
grid-template-columns: 80px 1fr !important;
column-gap: 0.5rem;
}
.slide-nav {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.slide-num {
width: 75px;
height: 75px;
margin: 0.5rem 0;
border-radius: 50%;
background: rgba(255,255,255,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.75rem;
font-weight: 700;
color: var(--text-color);
cursor: pointer;
transition: background 0.3s, color 0.3s;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide-num:hover {
    transform: scale(1.1);
    animation: pulseGlow 1.8s ease-in-out infinite;
  }
@keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
    }
    50% {
      box-shadow: 0 0 18px rgba(255, 0, 0, 1);
    }
  }
.slide-num.active {
background: var(--primary-color);
color: #111;
}
.slide-show {
overflow: hidden;
}
.slides {
display: flex;
transition: transform 0.6s ease;
}
.slide {
flex: 0 0 100%;
padding: 1rem;
}
/* .slide-container {
display: grid;
grid-template-columns: 80px 1fr;
} */
.slide-container--top-nav {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
width: 100%;
column-gap: 0;
}
.slide-container--top-nav .slide-nav {
grid-row:      1;
grid-column:   1 / -1;
display:       flex;
justify-content: space-between;
width:         100%;
}
.slide-container--top-nav .slide-show {
grid-row:    2;
grid-column: 1 / -1;
}
.slide-container--top-nav .slide-nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 0;
margin-bottom: 1rem;
}
.slide-container--top-nav .slide-num {
margin: 0;
}
.slide-img-container {
position: relative;
width: 100%;
max-width: 925px;
margin: 0 auto;
overflow: hidden;
}
.slide-img-wrapper {
display: flex;
transition: transform 0.6s ease;
}
.slide-img-wrapper img {
flex: 0 0 100%;
width: 100%;
height: auto;
object-fit: cover;
}
.contact-box {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
.single-cta {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
a{
color: white;
}
.single-cta i {
    color: var(--text-color);
    font-size: 2rem;
    margin-right: 0.75rem;
    transition: transform 0.3s;
    background-color: black;
    padding: 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}
.cta-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}
.cta-text .contact-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
border-bottom: #000 4px solid;
}
.cta-text .email {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}
.cta-text span {
    display: block;
    font-size: .9rem;
    color: var(--text-color);
    font-weight: 600;
}
.single-cta:hover {
    transform: translateY(-2px);
}
.single-cta:hover i {
    transform: translateX(4px) rotate(-10deg);
}
.bodyTxt {
          color: var(--text-color);
          margin-bottom: 1.25rem;
          text-align: center
      }
.wrapper {
          display: flex;
          flex-direction: column;
          align-items: center;
      }
.card-container {
          display: flex;
          perspective: 1200px;
          position: relative;
          z-index: 2;
          overflow: visible;
      }
#sparkle-layer {
          position: absolute;
          inset: 0;
          pointer-events: none;
          transform-style: preserve-3d
      }
.es-num {
  max-width: 50px; 
  width: 100%;      
  height: auto;      
  display: block;
  margin-left: auto;
  padding-right: 10px;
}
.card {
  width: 260px;
  height: 210px;
  margin: 0 8px;
  perspective: 1200px;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease-out;
}
.card:hover {
  transform: scale(1.05);
  z-index: 999;
}
.card-inner {
          width: 100%;
          height: 100%;
          position: relative;
          transform-style: preserve-3d
      }
.card-inner.flipped {
        position: relative;
        z-index: 100 !important;
        transform-style: preserve-3d;
      }
.card-face {
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 8px;
          overflow: hidden;
          backface-visibility: hidden;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 14px;
          color: #fff
      }
.card-front {
          background: #ecf0f1
      }
.card-front img {
          width: 100%;
          height: 100%;
          object-fit: cover
      }
.card-back {
        position: relative;
        color: #000;
        font-size: 10px;
        background: #ffffff;
        padding: 45px;
        text-align: center;
        transform: rotateY(180deg);
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        z-index: 999;
      }
.card-back::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        pointer-events: none;
        box-sizing: border-box;
        z-index: 999;
      }
.card-back-logo {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 75px;
  max-height: 75px;
  width: auto;
  height: auto;
      }
.card-img{
         max-width: 150px;
  max-height: 150px;
}
.sparkle {
          position: absolute;
      }
.conclusion {
display: grid;
width: 100%;
max-width: 1000px;
margin: 0 auto;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
text-align: center;
}
.conclusion-item {
display: flex;
flex-direction: column;
align-items: center;
}
.con-img {
width: 75px;
height: auto;
margin-bottom: 1rem;
}
.bg-para {
position: relative;
overflow: hidden;
height: 60vh;
margin: 2rem 0;
}
.bg-para::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
}
.bg-para img {
position: absolute;
top: 25%;
left: 50%;
width: auto;
height: 150%;
transform: translate(-50%, -50%) translateY(0);
will-change: transform;
}
body.safari .bg-para {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
body.safari .bg-para img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: block !important;
  margin: 0 auto !important;
  will-change: auto !important;
}
.cont-r {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    align-items: flex-start;
  }
.cont-r > * {
    flex: 1 1 0;
    min-width: 0;
    align-self: flex-start;
  }
.cont-r > div {
    margin: 0;
    padding: 0;
    align-self: flex-start;
  }
.cont-r::after,
.cont-l::after {
    display: none;
  }
.text-section .content > div > .cont-r {
    grid-column: 1 / -1;
  }
.text-section .content > div > .cont-r + div {
    grid-column: 1 / -1;
  }
.right {
    width: 100%;
    text-align: right;
  }
.cont-r,
.cont-l {
    grid-template-columns: 1fr;
  }
.col-l20-r80 > *:first-child {
  flex: 0 0 20%;
  max-width: 20%;
}
.col-l20-r80 > *:last-child {
  flex: 1 1 80%;
  max-width: 80%;
}
/* Three Column Grid Start */
.col-3{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
  justify-items: center !important;
  text-align: center;
  box-sizing: border-box !important;
}

.col-3> * {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

.col-3 img {
  width: 100% !important;
  max-width: 220px !important;   /* Prevent images from overflowing their cell */
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}






.img-50{
  width: 50% !important;
  height: 50% !important;
}
.img__unb__cover {
  background: url("../img/book_unb_sj.png") center center / cover no-repeat fixed;
  min-height: 350px;
  position: relative;
  z-index: 1;
}
.img__unb__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2;
  pointer-events: none;
}
.timeline__cover .timeline ul li:before {
      content: '';
      background: #ffffff;
      position: absolute;
      left: 50%;
      top: -32px;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      width: 16px;
      height: 16px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
  }
.timeline__cover .timeline__title {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
  }
.timeline__cover .timeline__title h2 {
    font-size: 2.5rem;
    margin: 0;
  }
.timeline__cover .timeline {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 48px;
  }
.timeline__cover .timeline ul {
    list-style: none;
    padding: 0;
    position: relative;
  }
.timeline__cover .timeline ul li {
    position: relative;
    margin: 0 auto 64px;
    width: 3px;
    background: rgba(255, 0, 0, 0.5);
  }
.timeline__cover .timeline ul li {
    position: relative;
  }
.timeline__cover .timeline ul li::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
  }
.timeline__cover .timeline ul li .content {
    position: relative;
    top: -36px;
    width: 380px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    border:  1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    box-shadow: #000 0px 0px 20px;
    opacity: 0;
    transition: opacity .6s ease-out, transform .6s ease-out;
  }
.timeline__cover .timeline ul li .badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-color);
    border-radius: 100px;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 8px;
  }
.timeline__cover .timeline ul li h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
  }
.timeline__cover .timeline ul li p {
    margin: 0;
    color: #ccc;
  }
.timeline__cover .timeline ul li:nth-child(odd) .content {
    left: 40px;
  }
.timeline__cover .timeline ul li:nth-child(even) .content {
    left: calc(-380px - 40px);
  }
.timeline__cover .timeline ul li .content.visible {
    opacity: 1;
    transform: translateY(0);
  }
.timeline-bg-unb {
  background: url("../img/bg-container-ship-7383545.jpg") center center / cover no-repeat fixed;
  min-height: 350px;
  position: relative;
  z-index: 1;
}


.text-section .content {
    position: relative !important;
    overflow: visible !important;
  }
.text-section .content > .ribbon-wrap {
    position: relative !important;
    width: 100% !important;
    padding-top: calc(var(--ribbon-thickness) + var(--ribbon-padding)) !important;
    text-align: center !important;
    margin: 1rem 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.5em 1rem !important;
    box-sizing: border-box !important;
    background: rgba(17,17,17,0.6) !important;
    color: var(--text-color) !important;
    text-align: center !important;
    z-index: 1 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::before,
.text-section .content > .ribbon-wrap > h3.ribbon::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    border: var(--ribbon-thickness) solid transparent !important;
    border-top-color: var(--ribbon-color) !important;
    z-index: 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::before {
    left: 0 !important;
    border-right-width: 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::after {
    right: 0 !important;
    border-left-width: 0 !important;
  }
.text-section .content > .ribbon-wrap {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    padding-top: calc(var(--ribbon-thickness) + var(--ribbon-padding)) !important;
    text-align: center !important;
    margin: 1rem 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.5em 1rem !important;
    background: var(--ribbon-color)!important;
    color: var(--text-color) !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::before,
.text-section .content > .ribbon-wrap > h3.ribbon::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    border: var(--ribbon-thickness, 15px) solid transparent !important;
    border-top-color: #92220c !important;
    z-index: 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::before {
    left: 0 !important;      border-right-width: 0 !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon::after {
    right: 0 !important;     border-left-width: 0 !important;
  }
.text-section .content > .ribbon-wrap {
    display: block !important;
    position: relative !important;
    box-sizing: content-box !important;
    width: calc(100% + 95px) !important;
    left: -46px !important;
    padding-top: calc(var(--ribbon-thickness) + var(--ribbon-padding)) !important;
    margin: 1rem 0 !important;
  }
.text-section .content > .ribbon-wrap::before {
    left: 0 !important;
    width: 100% !important;
  }
.text-section .content > .ribbon-wrap > h3.ribbon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.75rem 1rem !important;
    line-height: 2rem !important;
    height: 2rem !important;
    margin: 1rem 0 !important;
  }
.text-section .content > .ribbon-wrap {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
.text-section .content > .ribbon-wrap > .ribbon-bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  background: var(--ribbon-color, #92220c);
  color: var(--text-color, #fff);
  padding: 1.75rem 1rem;
  margin: 0;
  border-radius: 0;
  line-height: 2rem;
  min-height: 2rem;
  z-index: 10;
  gap: 1.5rem;
  font-size: 1.1rem;
}
.text-section .content > .ribbon-wrap > .ribbon-bar > div:first-child {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.text-section .content > .ribbon-wrap > .ribbon-bar > div:last-child {
  flex: 1 1 80%;
  max-width: 80%;
  display: flex;
  align-items: center;
  text-align: left;
}
.text-section .content > .ribbon-wrap > .ribbon-bar::before,
.text-section .content > .ribbon-wrap > .ribbon-bar::after {
  content: "";
  position: absolute;
  top: 100%;
  border: var(--ribbon-thickness, 15px) solid transparent;
  border-top-color: var(--ribbon-color, #92220c) !important;
  z-index: 10;
}
.text-section .content > .ribbon-wrap > .ribbon-bar::before,
.text-section .content > .ribbon-wrap > .ribbon-bar::after {
  border-top-color: #92220c !important;
}
.text-section .content > .ribbon-wrap > .ribbon-bar::before {
  left: 0;
  border-right-width: 0;
}
.text-section .content > .ribbon-wrap > .ribbon-bar::after {
  right: 0;
  border-left-width: 0;
}
@media (max-width: 700px) {
  .text-section .content > .ribbon-wrap > .ribbon-bar {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
  .text-section .content > .ribbon-wrap > .ribbon-bar > div:first-child,
  .text-section .content > .ribbon-wrap > .ribbon-bar > div:last-child {
    max-width: 100%;
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
}
@media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) {
  .parallax-section img,
  .bg-para img {
    transform: none !important;
    will-change: auto !important;
  }
}}
@media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) {
  .parallax-section img,
  .bg-para img {
    transform: none !important;
    will-change: auto !important;
    transition: none !important;
  }
  .timeline__cover {
    background-attachment: scroll !important;
  }
}}
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #181818;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s;
}
#page-loader .loader-spinner {
  width: 60px;
  height: 60px;
  border: 7px solid #fff;
  border-top: 7px solid var(--primary-color, #d72f3a);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
  margin-bottom: 25px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#page-loader .loader-text {
  color: #fff;
  font-family: var(--font-family-bold, sans-serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.8;
}
.bg-white {
  background-color: #fff;
  padding: 20px;
  color: var(--secondary-color);
  text-align: center;
  line-height:150%;
  font-size: 2.75rem;
}

/* Mobile */
@media (max-width: 700px) {
.text-section .content > h1 {
    font-size: 2.55rem;
  }
  h2{
    font-size: 1.5rem;
  }
    .text-section .content > .ribbon-wrap > h3.ribbon {
    padding: 1.25rem 1rem !important;  /* Make sure it's not too tight */
    font-size: 1.1rem !important;
    /* line-height: 1.4; */
    padding-top: 20px;
  }
  .ribbon-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
    padding: 20px!important;
  }
  .ribbon-bar > div {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 20px !important;
  }
  .ribbon-bar img.es-num {
    display: block !important;
    margin: 0 auto 0.75rem auto !important;
    max-width: 70px !important; 
  }
  .ribbon-bar p {
    font-size: 1rem !important;
    padding: 20px !important;
    margin: 0 !important;
  }
  .ribbon-wrap.full-width .ribbon {
    padding: 20px!important;
    font-size: 1.2rem !important;
    white-space: normal !important;
    padding: 20px;
  }
/* columns GSAP */
 .col {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  .col-l, .col-r {
    width: 100% !important;
    max-width: 100% !important;
  }
  .col-l img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
/* columns GSAP */


    .cont-r {
    flex-direction: column !important;
    gap: 1rem !important; /* vertical gap between stacked items */
    align-items: stretch !important;
  }
  .cont-r > * {
    flex: none !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    align-self: stretch !important;
  }
  .col-l20-r80 > *:first-child,
  .col-l20-r80 > *:last-child {
    max-width: 100% !important;
    flex: none !important;
    width: 100% !important;
  }

   .cont-r .img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cont-r .img-col .photo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .cont-r .img-col .photo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
  }
  html, body {
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

  /* Keeps the bg image fixed to the right edge on all screens */
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh;
  background: url('../img/bg-redSwoosh.svg') right center / auto 100vh no-repeat;
  opacity: 1;
  pointer-events: none;
  /* These lines help with mobile viewport resizing quirks */
  background-attachment: fixed;
  background-position: right center;
}

.bg-para {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 2rem 0;
  background: none; 
  display: block;
  align-items: center;
  justify-content: center;
}

  .bg-para img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    left: 0;
    top: 0;
    transform: none;
    position: static;
    display: block;
    margin: 0 auto;
  }
  .bg-para::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
box-shadow: inset 0 0 80px rgba(0,0,0,0);
}


.img__unb__cover {
  background: url("../img/book_unb_sj.png") center center / cover no-repeat fixed;
  min-height: 350px;
  position: relative;
  z-index: 1;
}
  .parallax-section {
    max-height: 500px;
    height: 500px;
    overflow: hidden;
    padding: 0;
  }
  .parallax-section img {
    display: none !important;

  }

  .bg-para-m-1, .bg-para-m-2, .bg-para-m-3, .bg-para-m-4, .bg-para-m-5, .bg-para-m-6, .bg-para-m-7, .bg-para-m-8, .bg-para-m-9{
      min-height: 350px;
  position: relative;
  z-index: 1;
  }
.bg-para-m-1{
  background: url("../img/bg-trade and logistics.jpg") center center / cover no-repeat fixed;

}
.bg-para-m-2{
  background: url("../img/crane-3109757_1280.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-3{
  background: url("../img/bg-infrastructure.png") center center / cover no-repeat fixed;
}
.bg-para-m-4{
  background: url("../img/ai-generated-9087011_1280.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-5{
  background: url("../img/bg-train.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-6{
  background: url("../img/bg-trade and logistics-2.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-7{
  background: url("../img/bg-ship-7304862_1280.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-8{
  background: url("../img/bg-production-4408573.jpg") center center / cover no-repeat fixed;
}
.bg-para-m-9{
  background: url("../img/bg-production-4408573.jpg") center center / cover no-repeat fixed;
}
/* Timeline START */

  .timeline-bg-unb {
    background-attachment: scroll !important;
  }
  .timeline__cover .timeline ul li {
    background: none !important;
    width: 100% !important;
    position: relative !important;
  }
  .timeline__cover .timeline ul li::before {
    top: -75px !important;
    z-index: 10 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .timeline__cover .timeline ul li .content {
    margin-top: 24px !important;
    position: relative !important;
    width: 95vw !important;
    left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    padding: 1rem;
    transform: none !important;
    opacity: 1 !important;
    z-index: 20 !important;
  }
  .timeline__cover .timeline ul li::after {
    content: "";
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 14px; /* adjust as needed */
    background: var(--primary-color);
    z-index: 1;
  }
/* Timeline END */
/* Card Flip START */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: visible !important;
  padding: 0 16px;
}

.card {
  width: 90vw;
  max-width: 320px;
  min-width: 200px;
  margin: 0.5rem 0;
  perspective: 1200px;
  border-radius: 8px;
  /* overflow: visible; */
  /* border: 1px solid red;  (for debug) */
}
.card-inner, .card-face {
  border-radius: 8px;
  /* border: 1px solid blue;  (for debug) */
}


  .card:hover {
    transform: none !important;
  }
  .card-back {
    padding: 16px !important;
    font-size: 0.9rem !important;
  }

.card-inner {
  transform-style: preserve-3d;
}
.card-face {
  backface-visibility: hidden;
}
.card-back {
  transform: rotateY(180deg);
}

/* Card Flip END */

/* Three column Grid */
  .col-3{
    display: block !important;
    max-width: 98vw !important;
  }
  .col-3> div {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    display: block !important;
  }


.img-m {
  width: 35% !important;
  height: 50% !important;
  display: block;       
  margin-left: auto;      
  margin-right: auto;
}
.box-cen{
text-transform: none !important;
text-transform: capitalize; 
}

  .list-m {
    padding: 1rem !important;
  }
  .list-m ul {
    padding-left: 1.25rem;
    margin: 0;
    width: 100%;
    max-width: none;
  }
  .list-m li {
    font-size: 1rem;
    padding-left: 0;
    word-break: break-word;
  }
}

