
/* general ============================================================================================================================================================================== */
:root {
	--primary: #497989;             /* (teal) → brand, main UI elements. */            
	--secondary: #222222;           /* (dark slate) → headings, body text, dark accents. 2E3B3F */
	--accent: #FFC107;              /* (amber) → buttons, highlights, call-to-actions. */ 
    --background: #FFFFFF;          /* (white) → page background, cards. */
}

body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            overflow-x: hidden;

}


/* HEADER ============================================================================================================================================================================== */
        .site-header {
            padding: 20px 20px;
        }

        .nav-container {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            width: 90%;
            height: 90px;
            margin: 0 auto;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
            padding: 15px 30px;
            border-radius: 45px;
        }

        .header-logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex !important;
            list-style: none !important;
            gap: 30px;
            align-items: center !important; /* This ensures all items align to center */
            margin: 0 !important; /* Override Bootstrap's default margin */
            padding: 0 !important; /* Override Bootstrap's default padding */
        }

        .nav-item {
            position: relative;
            display: flex !important; /* Make nav-item a flex container */
            align-items: center !important; /* Center content vertically */
            margin: 0 !important; /* Override any Bootstrap margins */
        }

        .nav-link {
            text-decoration: none !important;
            color: #ffffff !important;
            font-weight: normal;
            font-size: 1.2rem;
            padding: 10px 0 !important;
            transition: color 0.3s ease;
            display: flex !important; /* Make links flex containers */
            align-items: center !important; /* Center content vertically */
        }

        .nav-link:hover {
            color: var(--accent) !important;
        }

        /* Special styling for image link */
        .nav-link img {
            width: 30px;
            height: 30px;
            cursor: pointer;
            display: block; /* Remove any inline spacing */
        }

        .nav-actionsSpan {
            padding: 15px 35px !important;
            border-radius: 30px;
            background-color: #000000;
        }
        .nav-actionsImg {
            padding: 11px 35px !important;
            border-radius: 30px;
            background-color: #000000;
        }



        
        /* About Submenu Styles */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #000000;
            min-width: 250px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            list-style: none !important;
            padding: 10px 0 !important;
            border-radius: 5px;
            margin: 0 !important;
        }

        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu-link {
            display: block;
            padding: 12px 20px !important;
            text-decoration: none !important;
            color: #ffffff !important;
            transition: background 0.3s ease;
        }

        .submenu-link:hover {
            color: var(--accent) !important;
        }

        /* Mobile Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            transition: 0.3s;
        }


        /* mobile screens - header */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 120px;
                left: -120%;
                width: 100%;
                height: calc(100vh - 120px);
                 background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
                flex-direction: column !important;
                justify-content: flex-start !important;
                align-items: center !important;
                padding-top: 20px !important;
                transition: left 0.3s ease;
                box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-item {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #eee;
            }
            .nav-link {
                display: block !important;
                padding: 15px !important;
            }
            .submenu {
                position: static;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                transform: none;
                transition: max-height 0.3s ease;
                box-shadow: none;
                background: transparent;
            }
            .nav-item.active .submenu {
                max-height: 200px;
            }
            .submenu-link {
                padding-left: 40px !important;
            }
        }


/* FOOTER ============================================================================================================================================================================== */
.footerHoverEffect { 
    color: var(--secondary);      
    transition: color 0.3s ease;
  }
  .footerHoverEffect:hover {
    color: var(--primary);       
  }


/*  HOME/ONEBRIDGE HERO SECTION ================================================================================================================================================================= */
/* home --------------------------------------------------------------- */
.hero-section {
    height: 115vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color:transparent;
    overflow: visible !important;
}

.slides-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.slides-wrapper1 {
    position: relative;
    top: 0; left: 0; width: 100%; height: 115vh;
     
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%); */

    clip-path: polygon(
        0% 0%,    /* Top-left */
        100% 0%,    /* Top-right */
        100% 100%,   /* Bottom-right */
        0% 90%     /* Bottom-left */
    );

    overflow: visible !important;
   
}



.slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center center; opacity: 0; visibility: hidden; will-change: transform, opacity, filter; }
.slide.active { opacity: 1; visibility: visible; }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 60%); z-index: 1; }
.warp-rays { position: absolute; top: 50%; left: 50%; width: 1px; height: 1px; background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; z-index: 5; pointer-events: none; }
.hero-content { position: relative; z-index: 2; color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 10%; max-width: 60%; text-align: left; }
.hero-content > h1, .hero-content > p, .hero-content > a { opacity: 0; transform: translateY(50px); }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; margin: 0 0 1rem 0; text-transform: uppercase; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin: 0 0 2rem 0; max-width: 500px; }
.hero-content h1 span { position: relative; display: inline-block; }
.hero-content h1 span .highlight { position: absolute; top: 10%; left: -5%; width: 110%; height: 80%; background-color: var(--accent); z-index: -1; transform: scaleX(0); transform-origin: left; }

.warp-raysOnebridge { position: absolute; top: 50%; left: 50%; width: 1px; height: 1px; background: radial-gradient(ellipse at center, rgba(255,0,255,0.4) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; z-index: 5; pointer-events: none; }




/* see media query ----- 
.location-nav { position: absolute; bottom: 150px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 15px; }
.location-icon { width: 50px; height: 50px; padding: 0; background: rgba(255, 255, 255, 0.4); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
.location-icon:hover { border-color: #fff; transform: scale(1.2); }
.location-icon.active-icon { border-color: var(--accent); transform: scale(1.15); }
.location-icon img { width: 30px; height: 30px; object-fit: cover; border-radius: 50%; }
*/

.slide picture,
.slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* stays behind the content */
}
    

/* one bridge --------------------------------------------------------------- */
.hero-sectionOnebridge {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color:transparent;
    overflow: visible !important;
}

.slideOnebridge { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center center; opacity: 0; visibility: hidden; will-change: transform, opacity, filter; }
.slideOnebridge.active { opacity: 1; visibility: visible; }
.slideOnebridge::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%); z-index: 1; }

.hero-contentOnebridge { position: relative; z-index: 2; color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 10%; max-width: 50%; }
.hero-contentOnebridge > h1, .hero-contentOnebridge > p, .hero-contentOnebridge > a { opacity: 0; transform: translateY(50px); }
.hero-contentOnebridge h1 { font-size: 3.5rem; font-weight: 900; margin: 0 0 1rem 0; text-transform: uppercase; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-contentOnebridge p { font-size: 1.2rem; margin: 0 0 2rem 0; max-width: 500px; }
.hero-contentOnebridge h1 span { position: relative; display: inline-block; }
.hero-contentOnebridge h1 span .highlight { position: absolute; top: 10%; left: -5%; width: 110%; height: 80%; background-color: var(--accent); z-index: -1; transform: scaleX(0); transform-origin: left; }

.hero-contentOnebridge1 { position: relative; z-index: 2; color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 10%; max-width: 85%; }
.hero-contentOnebridge1 > h1, .hero-contentOnebridge1 > p, .hero-contentOnebridge1 > a { opacity: 0; transform: translateY(50px); }
.hero-contentOnebridge1 h1 { font-size: 3.5rem; font-weight: 900; margin: 0 0 1rem 0; text-transform: uppercase; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-contentOnebridge1 p { font-size: 1.2rem; margin: 0 0 2rem 0; max-width: 500px; }
.hero-contentOnebridge1 h1 span { position: relative; display: inline-block; }
.hero-contentOnebridge1 h1 span .highlight { position: absolute; top: 10%; left: -5%; width: 110%; height: 80%; background-color: var(--accent); z-index: -1; transform: scaleX(0); transform-origin: left; }

.location-navOnebridge { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 15px; }

.location-iconOnebridge { width: 120px; height: 50px; padding: 0; background: rgba(0, 0, 0, 0.3); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 5px; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
.location-iconOnebridge:hover { border-color: #fff; transform: scale(1.2); }
.location-iconOnebridge.active-icon { border-color: var(--accent); transform: scale(1.15); }
.location-iconOnebridge img { width: 110px; height: 30px; object-fit: cover; border-radius: 5px; }

.contentOnebridge {color: #ffffff;  text-shadow: 0 0 3px #000;}

.location-iconOnebridge1 { width: 60px; height: 80px; padding: 0; background: rgba(0, 0, 0, 0.3); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 5px; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
.location-iconOnebridge1:hover { border-color: #fff; transform: scale(1.2); }
.location-iconOnebridge1.active-icon { border-color: var(--accent); transform: scale(1.15); }
.location-iconOnebridge1 img { width: 50px; height: 70px; object-fit: cover; border-radius: 5px; }
   
/* fp/bridges stories ========================================================================================================================================================================== */      
.issue-explorer {
    display: flex;
    gap: 0; /* remove white space */
    height: 50vh;
    overflow: hidden;
  }

  .issue {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s ease;
    border-radius: 0;
    border: 1px solid #ffffff;
  }

  .issue img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.6s ease;
    display: block;
  }

  .issue-content {
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
    padding: 20px 20px 20px 30px;
    color:white;
    z-index:2;
    transition: all 0.5s ease;
  }

  /* Red vertical bar for full text height */
  .issue-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 0.4s ease;
    z-index: -1;
  }

  .issue h3 {
    margin:0;
    font-size:1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    transition: transform 0.5s ease;
  }

  .issue p, .issue a {
    margin:10px 0 0 0;
    opacity:0;
    transform:translateY(20px);
    transition: all 0.5s ease;
  }

  .issue a { text-decoration: underline; color:white; display:inline-block; }

  /* Hover effect */
  .issue:hover {
    flex: 3;
  }

  .issue:hover img {
    transform: scale(1.05);
    filter: brightness(1);
  }

  .issue:hover h3 { transform: translateY(-25px); }
  .issue:hover .issue-content::before { width:8px; }
  .issue:hover p, .issue:hover a { opacity:1; transform: translateY(0); }

  .issue-explorerBridges {
    display: flex;
    gap: 0;                 /* remove white space */
    height: 40vh;
    overflow: hidden;
  }



  /* Responsive */
  @media (max-width: 768px) {
    .issue-explorer {
      flex-direction: column;
      height:auto;
    }

    .issue-explorerBridges {
      flex-direction: column;
      height:auto;
    }

    .issue { flex:unset; height:40vh; }
    .issue:hover { flex: unset; }

    
    
}     


 


/* fp news carousel ======================================================================================================================================================================== */
#newsMiniCarousel .carousel-indicators button {
    background-color: var(--accent); /* inactive dots */
}

#newsMiniCarousel .carousel-indicators .active {
    background-color: var(--primary); /* active dot */
}



/* fp video --------------------------------------------------------------------------------------- */
   .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      background: #000;
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: 0;
      display: none; /* hidden until play */
    }
    .poster {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 72px; height: 72px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .play-btn:hover { background: rgba(0,0,0,0.8); }
       


/* text ============================================================================================================================================================================= */
.headerTitleBGdsk			{ background-color: #C4DAD2; padding:0.5em; border: 2px solid #16423C;}
.headerTitleBGmob			{ background-color: #C4DAD2; padding:0.2em; border: 2px solid #16423C;}

.bgText_sec			        { background-color: var(--secondary); padding-left:3px; padding-right:3px;}
.bgText_accent			    { background-color: var(--secondary); padding-left:3px; padding-right:3px;}

.headerEmphasis			{ padding:0.5em; border: 2px solid #002654;}
.lang:hover 			{ color:#92ccdd; }


.spanSize_08   			{ font-size: 0.8rem;  }
.spanSize_09   			{ font-size: 0.9rem;  }
.spanSize_10   			{ font-size: 1.0rem;  }
.spanSize_11   			{ font-size: 1.1rem;  }
.spanSize_12   			{ font-size: 1.2rem;  }
.spanSize_13   			{ font-size: 1.3rem;  }
.spanSize_14   			{ font-size: 1.4rem;  }
.spanSize_15   			{ font-size: 1.5rem;  }
.spanSize_16   			{ font-size: 1.6rem;  }
.spanSize_18   			{ font-size: 1.8rem;  }
.spanSize_20   			{ font-size: 2.0rem;  }
.spanSize_22   			{ font-size: 2.2rem;  }
.spanSize_24   			{ font-size: 2.4rem;  }
.spanSize_28   			{ font-size: 2.8rem;  }
.spanSize_30   			{ font-size: 3.0rem;  }

.spanWeight_nomal   			{ font-weight: normal; }
.spanWeight_bold   			{ font-weight: bold; }
.spanType1I   			{ font-family: "Verdana", sans-serif;  font-weight: normal; font-style: italic;}
.spanType1BI   			{ font-family: "Verdana", sans-serif;  font-weight: bold; font-style: italic;}


.spanColor_primary    	{ color: var(--primary); }
.spanColor_sec    		{ color: var(--secondary); }
.spanColor_accent    	{ color: var(--accent); }
.spanColor_wh    		{ color: #ffffff;  }					

.spanUnderline_primary  { text-decoration: underline; text-underline-offset: 0.1em; text-decoration-color: var(--primary); text-decoration-thickness: 0.2em; }
.spanUnderline_primaryL { text-decoration: underline; text-underline-offset: 0.2em; text-decoration-color: var(--primary-light); text-decoration-thickness: 0.2em; }
.spanUnderline_sec    	{ text-decoration: underline; text-underline-offset: 0.1em; text-decoration-color: var(--secondary); text-decoration-thickness: 0.2em; }



.spanUnderlineShort     { position: relative; display: inline; }
.spanUnderlineShort::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 35%;                /* underline shorter than text */
  height: 4px;
}
.underlinePrimary::after  { background-color: var(--primary); }
.underlineSecondary::after  { background-color: var(--secondary); }
.underlineAccent::after  { background-color: var(--accent); }
.underlineBackground::after  { background-color: var(--background); }



.bgPrimary	{ color: #ffffff;  padding:5px 10px; background-color: var(--primary); -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;}



.shadowBlack  { text-shadow: 2px 2px 4px rgba(0,0,0,0.5);  }
.shadowBlack336  { text-shadow: 3px 3px 4px rgba(0,0,0,0.5); }

.shadowBlack112 { text-shadow:  1px 1px 2px rgba(0, 0, 0, 0.5); }           /* Horizontal, Vertical, Blur, Color */







/* buttons ============================================================================================================================================================================= */
.button-hero        { background-color: var(--accent); color: var(--secondary); padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s ease; }
.button-hero:hover  { background-color: var(--primary); color: var(--background); transform: translateY(-3px); }

.button-stories        { background-color: var(--accent); color: var(--secondary); padding: 5px 20px; text-decoration: none; font-weight: 500; border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s ease; }
.button-stories:hover  { background-color: var(--primary); color: var(--background); transform: translateY(-3px); }

.button-type1        { background-color: var(--accent); color: var(--secondary); padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s ease; }
.button-type1:hover  { background-color: var(--secondary); color: var(--background); transform: translateY(-3px); }

.button-type2        { background-color: var(--accent); color: var(--background); padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s ease; }
.button-type2:hover  { background-color: var(--secondary); color: var(--background); transform: translateY(-3px); }

.button-onebridge        { background-color: var(--secondary); color: #ffffff; padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s ease; }
.button-onebridge:hover  { background-color: var(--primary); color: var(--background); transform: translateY(-3px); }


.btn-footer {
	background-color: var(--secondary);
    color: #ffffff;
}

.btn-footer:hover {
	background-color: var(--accent);
    color: var(--secondary);
}




/* COMMON CSS ============================================================================================================================================================================== */

.circleBase { border-radius: 50%; }

.roundSideLeftRight {	border-radius: 100em 100em 100em 100em; }

.RoundCorner10          {   -webkit-border-radius:1.0em; -moz-border-radius:1.0em; border-radius:1.0em;}
.RoundCorner5           {   -webkit-border-radius:0.5em; -moz-border-radius:0.5em; border-radius:0.5em;}
.RoundCorner3           {   -webkit-border-radius:0.3em; -moz-border-radius:0.3em; border-radius:0.3em;}
.RoundCorner2           {   -webkit-border-radius:0.2em; -moz-border-radius:0.2em; border-radius:0.2em;}
.RoundCornerTopRight    {   -webkit-border-top-right-radius:0.4em; -moz-border-top-right-radius:0.4em; border-top-right-radius:0.4em;}
.RoundCornerTopLeft     {   -webkit-border-top-left-radius:0.4em; -moz-border-top-left-radius:0.4em; border-top-left-radius:0.4em;}
.RoundCornerBottomRight {   -webkit-border-bottom-right-radius:0.5em; -moz-border-bottom-right-radius:0.5em; border-bottom-right-radius:0.5em;}
.RoundCornerBottomLeft  {   -webkit-border-bottom-left-radius:0.5em; -moz-border-bottom-left-radius:0.5em; border-bottom-left-radius:0.5em;}

.alignCenter	{	display: flex;	align-items: center;	justify-content: center;	}	
.alignLeft		{	display: flex;	align-items: center;	justify-content: left;		}	
.alignRight		{	display: flex;	align-items: center;	justify-content: right;		}	

.topAlign		{ 	display:flex; 	align-items: top;  	}
.middleAlign	{ 	display:flex; 	align-items: center;  }
.bottomAlign	{ 	display:flex; 	align-items: flex-end; }

.videoFit {	object-fit: fill;	}

.noselect {	
	-moz-user-select: none;
  	-khtml-user-select: none;
  	-webkit-user-select: none;
    -webkit-touch-callout:none; 
    -ms-user-select:none; 
  	user-select: none;
}




/* large screens =================================================================================================================================================================================  */
@media (min-width: 768px) {



    .location-nav { position: absolute; bottom: 150px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 15px; }
    .location-icon { width: 50px; height: 50px; padding: 0; background: rgba(255, 255, 255, 0.4); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
    .location-icon:hover { border-color: #fff; transform: scale(1.2); }
    .location-icon.active-icon { border-color: var(--accent); transform: scale(1.15); }
    .location-icon img { width: 30px; height: 30px; object-fit: cover; border-radius: 50%; }


    .aboutborder { border-right: 6px solid var(--accent); }
    .textdirection { text-orientation: upright; writing-mode: vertical-rl; font-size: 4.4rem; }

    .info2click { display: none; }


    .spanSizeNews3Ttile { font-size: 2.4rem;}



    .onebridgeH1size  {
        font-size: 3.2rem !important;       /* dsk */
    }

    .onebridgeFlowTextsize  {
        font-size: 1.8rem !important;       
    }

   
        
    /* shapes -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */      
        
    /* about - Column Shape overlapping hero */
    .shapeAbout {
        position: relative;
        margin-top: -17%;   /* moves block up to overlap hero */
        width: 100%;
        min-height:70vh;
        height: auto;
        background-color: var(--secondary);
        padding: 6rem;

        clip-path: polygon(
            0% 10%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            10% 85%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }



    /* stories shape */
    .shapeStories_home {
        
        position: relative;
        margin-top: -5%;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--primary);

        


        clip-path: polygon(
            0% 7%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 90%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }


    /* video shape */
    .shapeVideo {
        
        position: relative;
        margin-top: -4vh;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--accent);

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 11%,    /* Top-right */
            100% 90%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }
        
        
    /* news -  */
    .shapeNews_home {
        position: relative;
        margin-top: -28%;   /* moves block up to overlap hero */
        width: 100%;
        min-height:70vh;
        height: auto;
        background-color: var(--secondary);
        padding-left: 4.0rem;

        clip-path: polygon(
            0% 0%,    /* Top-left */
            90% 15%,    /* Top-right */
            100% 90%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }

     /* contact shape */
    .shapeContact {
        
        position: relative;
        margin-top: -4vh;   
        
        height: auto;
        
        
        background-color: #ffffee;
        /*              
        background-image: url('../assets/images/bridges/mostar-1920.avif'); 
        background-size: cover; 
        background-position: center center;
        */

        clip-path: polygon(
            0% 12%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 94%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }



    /* footer shape */
    .shapeFooter {

        position: relative;
        height: auto;
        background-color: #eeeeff;
        padding: 7rem 2rem 2rem 2rem;


        clip-path: polygon(
            0% 12%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }




    /* header shape - other pages */
    .shapeHeader_other {
        
        position: relative;
        width: 100%; padding: 0; margin: 0; height: 40vh;

        margin-top: 0%;   /* moves block up to overlap hero */
        
    
        background-color: var(--primary);

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 65%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }


    /* stories shape */
    .shapeStories_bridges {
        
        position: relative;
        margin-top: -5vh;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--secondary);

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 6%,    /* Top-right */
            100% 85%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }

    .shapeMissionLeft {
        position: relative;
        margin-top: -6vh;   
        margin-bottom: -6vh;   
        width: 100%;
        min-height:40vh;
        height: auto;
    
        padding-left: 2rem; 
        padding-right: 1rem; 
        padding-top: 2vh; 
        padding-bottom: 2vh;

        overflow: visible;
        z-index: 20;
      
    }


    .shapeMissionRight {
        position: relative;
        margin-top: -6vh;   /* moves block up to overlap hero */
        margin-bottom: -6vh;   
        width: 100%;
        min-height:40vh;
        height: auto;
        background-color: var(--secondary);
        padding-left: 10rem; 
        padding-right: 5rem; 
        padding-top: 10vh; 
        padding-bottom: 20vh;

        clip-path: polygon(
            0% 10%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            10% 85%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }



    
    .shapeTeamRight {
        position: relative;
        margin-top: 0vh;   
        margin-bottom: 0vh;   
        width: 70%;
        min-height:20vh;
        height: auto;
    
        padding-left: 0rem; 
        padding-right: 0rem; 
        padding-top: 0rem; 
        padding-bottom: 0rem;

        overflow: visible;
        z-index: 20;
      
    }

}


/* mobile screens =================================================================================================================================================================================  */
@media (max-width: 768px) {


    
    .location-nav { position: absolute; bottom: 150px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 15px; }
    .location-icon { width: 35px; height: 35px; padding: 0; background: rgba(255, 255, 255, 0.4); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
    .location-icon:hover { border-color: #fff; transform: scale(1.2); }
    .location-icon.active-icon { border-color: var(--accent); transform: scale(1.15); }
    .location-icon img { width: 20px; height: 20px; object-fit: cover; border-radius: 50%; }


    .aboutborder { border-bottom: 6px solid var(--accent); }
    .textdirection { text-orientation:initial; writing-mode: horizontal-tb; font-size: 2.4rem;}

    .info2click { display: block; }

    .spanSizeNews3Ttile { font-size: 2.0rem;}

   
    .onebridgeH1size  {
        font-size: 2.4rem !important;       
    }

    .onebridgeFlowTextsize  {
        font-size: 1.4rem !important;  
        padding: 1.0rem;     
    }

        
    /* shapes -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */      
        
    /* about - Column Shape overlapping hero */
    .shapeAbout {
        position: relative;
        margin-top: -17%;   /* moves block up to overlap hero */
        width: 100%;
        min-height:70vh;
        height: auto;
        background-color: var(--secondary);
        padding: 6rem;

        clip-path: polygon(
            0% 10%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            10% 90%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }



    /* stories shape */
    .shapeStories_home {
        
        position: relative;
        margin-top: -5%;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--primary);

        


        clip-path: polygon(
            0% 4%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 98%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }


    /* video shape */
    .shapeVideo {
        
        position: relative;
        margin-top: -4vh;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--accent);

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 11%,    /* Top-right */
            100% 90%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }
        
        
    /* news -  */
    .shapeNews_home {
        position: relative;
        margin-top: -8%;   /* moves block up to overlap hero */
        width: 100%;
        min-height:70vh;
        height: auto;
        background-color: var(--secondary);
        padding-left: 4.0rem;

        clip-path: polygon(
            0% 0%,    /* Top-left */
            90% 15%,    /* Top-right */
            100% 90%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }


    /* footer shape */
    .shapeFooter {

        position: relative;
        height: auto;
        background-color: #eeeeff;
        padding: 7rem 2rem 2rem 2rem;


        clip-path: polygon(
            0% 8%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }




    /* other pages header shape */
    .shapeHeader_other {
        
        position: relative;
        width: 100%; padding: 0; margin: 0; height: 40vh;

        margin-top: 0%;   /* moves block up to overlap hero */
        
    
        background-color: var(--primary);

        

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            0% 65%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }


    /* stories shape */
    .shapeStories_bridges {
        
        position: relative;
        margin-top: 0%;   /* moves block up to overlap hero */
        
        height: auto;
        background-color: var(--primary);

        clip-path: polygon(
            0% 0%,    /* Top-left */
            100% 3%,    /* Top-right */
            100% 96%,   /* Bottom-right */
            0% 100%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 19;
    }


    .shapeMissionLeft {
        position: relative;
        margin-top: -6vh;   
        margin-bottom: -6vh;   
        width: 100%;
        min-height:40vh;
        height: auto;
    
        padding-left: 0rem; 
        padding-right: 0rem; 
        padding-top: 2vh; 
        padding-bottom: 2vh;

        overflow: visible;
        z-index: 20;
      
    }

    
    .shapeMissionRight {
        position: relative;
        margin-top: -6vh;   /* moves block up to overlap hero */
        margin-bottom: -6vh;   
        width: 100%;
        min-height:40vh;
        height: auto;
        background-color: var(--secondary);
        padding-left: 4rem; 
        padding-right: 1rem; 
        padding-top: 8rem; 
        padding-bottom: 10rem;

        clip-path: polygon(
            0% 10%,    /* Top-left */
            100% 0%,    /* Top-right */
            100% 100%,   /* Bottom-right */
            10% 85%     /* Bottom-left */
        );

        overflow: visible;
        z-index: 20;
        filter: drop-shadow(-30px 0 30px rgba(0,0,0,0.3));
    }


    
    .shapeTeamRight {
        position: relative;
        margin-top: 0vh;   
        margin-bottom: 0vh;   
        width: 70%;
        min-height:20vh;
        height: auto;
    
        padding-left: 0rem; 
        padding-right: 0rem; 
        padding-top: 0rem; 
        padding-bottom: 0rem;

        overflow: visible;
        z-index: 20;
      
    }

}

