/* PORTAL CSS */

/* Font import - includes italic weights for H1 (900i) and H2 (800i) per brand guidelines */
 /* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,800;1,900&display=swap');*/

@import url('https://use.typekit.net/sdl3oyi.css');


/* ============================================
   SYDENHAMS BRAND VARIABLES
   All colours and key values defined here.
   Use var(--name) throughout to prevent drift.
   ============================================ */
:root {
  /* Primary - was #0071B9*/
  --syd-primary: #1370B6;

  /* Blues */
  --syd-dark-blue: #2d4c72;
  --syd-mid-blue: #255780;
  --syd-footer: #255780;

  /* Green - CTAs and icons ONLY */
  --syd-green: #8dc263;

  /* Text */
  --syd-text-dark: #363e4c;
  --syd-text-body: #424242;

  /* Backgrounds */
  --syd-white: #ffffff;
  --syd-bg-light: #f4f4f4;

  /* Typography */
/* --syd-font: 'Barlow Condensed', Arial, sans-serif;*/ 
   --syd-font: "proxima-nova-excn-black", sans-serif; 

  /* Layout */
  --syd-container-width: 100%;

  /* Borders & Shadows */
  --syd-border-radius: 8px;
  --syd-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/*h1~h6 style - weights per brand guidelines:
  H1 = Black Italic (900i)
  H2 = ExtraBold Italic (800i)
  H3 = ExtraBold (800)
  H4 = Bold (700)
  H5 = SemiBold (600)
  H6 = Medium (500)
*/
h1 {
	color: var(--syd-text-dark, #363e4c);
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.2;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

h2 {
	color: var(--syd-text-dark, #363e4c);
	font-size: clamp(1.75rem, 4vw, 3rem);
	line-height: 1.3;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

h3 {
	color: var(--syd-text-dark, #363e4c);
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
	line-height: 1.4;
	font-weight: 800;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

h4 {
	color: var(--syd-text-dark, #363e4c);
	font-size: clamp(1.25rem, 3vw, 2rem);
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

h5 {
	color: var(--syd-text-dark, #363e4c);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

h6 {
	color: var(--syd-text-body, #424242);
	font-size: clamp(0.875rem, 2vw, 1.25rem);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

p {
	color: var(--syd-text-body, #424242);
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.6;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: var(--syd-font);
}

a {
	font-family: var(--syd-font);
	font-weight: 400;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.6;
	letter-spacing: 0px;
	color: var(--syd-primary, #1370B6);
	transition: color 0.3s ease;
}

/* REMOVED: Global a:hover with !important that forced green-on-blue on ALL links.
   Hover styles are now applied per-context (nav, buttons, content) below. */
a:hover {
	color: var(--syd-mid-blue, #32567d);
	text-decoration: underline;
}

a:visited {
	color: var(--syd-dark-blue, #2d4c72);
}

/* REMOVED: Global ul li:hover that turned all list items black.
   This was breaking DNN menus, storefront filters, and module lists. */

li {
	font-family: var(--syd-font);
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.6;
	font-weight: 400;
}

input, select, label, textarea {
	font-family: var(--syd-font);
	font-size: clamp(0.9rem, 1.3vw, 0.9rem);
	line-height: 1.6;
	font-weight: 400;
}

/* REMOVED: button { height: 36px !important; }
   This was overriding ALL button heights including DNN admin and module buttons. */

/* BUTTONS CSS */

.btn {
    display: inline-block;
    font-family: var(--syd-font);
    margin: 5px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    padding: 10px 24px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.2;
    font-weight: 500;
    border-radius: 20px;
    user-select: none;
    min-width: 150px;
    text-decoration: none;
    transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.btn:hover {
    text-decoration: none;
}

.btn-default {
    color: #fff;
    background-color: var(--syd-dark-blue, #2d4c72);
    border-color: var(--syd-dark-blue, #2d4c72);
}

.btn-danger {
    color: #fff;
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-secondary {
    color: #fff;
    font-weight: 500;
    border: 2px solid var(--syd-dark-blue, #2d4c72);
    background: var(--syd-dark-blue, #2d4c72);
}

.btn-secondary:hover {
    background: #1a3452;
    border-color: #1a3452;
    color: #fff;
}

.btn-primary {
    color: #fff;
    font-weight: 500;
    border: 2px solid var(--syd-primary, #1370B6);
    background: var(--syd-primary, #1370B6);
}

.btn-primary:hover {
    background: var(--syd-mid-blue, #32567d);
    border-color: var(--syd-mid-blue, #32567d);
    color: #fff;
}

.btn-utility {
    color: #fff;
    font-weight: 500;
    border: 2px solid var(--syd-green, #8dc263);
    background: var(--syd-green, #8dc263);
}

.btn-utility:hover {
    background: #7ab352;
    border-color: #7ab352;
    color: #fff;
}

.btn-utility:visited,
.btn-primary:visited,
.btn-secondary:visited,
.btn-default:visited {
    color: #fff;
}

/* HOME PAGE CSS */
 
/*global setting*/
#Body,
html,
body,
.Head,
.SubTitle,
.SubSubTitle,
.Normal {
	color: var(--syd-text-dark, #363e4c);
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.5px;
	font-family: var(--syd-font);
	font-weight: 400;
}

html,
button,
input,
select,
textarea,
.ls-layer,
.ls-layer *,
.uneditable-input,
.btn {
	font-family: var(--syd-font);
	font-weight: 500;
}

div[class^="Theme_Responsive"] select,
div[class^="Theme_Responsive"] textarea,
div[class^="Theme_Responsive"] input[type="text"],
div[class^="Theme_Responsive"] input[type="password"],
div[class^="Theme_Responsive"] input[type="datetime"],
div[class^="Theme_Responsive"] input[type="datetime-local"],
div[class^="Theme_Responsive"] input[type="date"],
div[class^="Theme_Responsive"] input[type="month"],
div[class^="Theme_Responsive"] input[type="time"],
div[class^="Theme_Responsive"] input[type="week"],
div[class^="Theme_Responsive"] input[type="number"],
div[class^="Theme_Responsive"] input[type="email"],
div[class^="Theme_Responsive"] input[type="url"],
div[class^="Theme_Responsive"] input[type="search"],
div[class^="Theme_Responsive"] input[type="tel"],
div[class^="Theme_Responsive"] input[type="color"] {
	font-family: var(--syd-font);
	font-weight: 400;
}

.dnnpane>[class*=col-md], .dnnpane>[class^=col-md] {
    padding: 0 0px;
}

/* Make the layout responsive using Bootstrap 5 standards */
.dnn_layout,
.container-hp {
    width: 100%;
    max-width: 1890px; /* or 1140px for slightly smaller container */
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
	background: #fff;
}

.dnn_layout,
.containerMC {
    width: 100%;
    /*max-width: 2000px; or 1140px for slightly smaller container */
    margin-left: auto;
    margin-right: auto; 
   /* padding-left: 15px;
    padding-right: 15px; */
    box-sizing: border-box;
	background: #fff;
}

.dnn_layout, .container {
    max-width: 1050px;
}

/* Optional: override "row" to remove unwanted margins */
.row {
    margin-left: -0px;
    margin-right: -0px;
}

/* Columns spacing */
[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure images scale nicely */
img {
    max-width: 100%;
    height: auto;
}

div#siteWrapper {
    background: #fff;
	max-width:1890px;
}


/*header*/

#topHeader {
    background: var(--syd-primary, #1370B6);
    box-shadow: 1px 50px 100px 0 #cacaca;
    min-width: 25px;
    min-height: 35px;
    padding: 0;
}

#subHeader {
    padding: 0;
    position: sticky !important;
    z-index: 13;
    background: var(--syd-mid-blue, #32567d) !important;
}

#login .loginGroup a:hover, #login .registerGroup a:hover {
    background: var(--syd-primary, #1370B6);
    color: var(--syd-green, #8dc263);
    text-decoration: none;
	font-weight:600;
}

header {
    background: var(--syd-primary, #1370B6);
    border-bottom: 0px solid #91AFCA;
}

#mainHeader-inner {
    padding: 10px 0;
    background: var(--syd-primary, #1370B6);
    margin: 0% 11%;
}

@media screen and (max-width: 1366px) {
	#mainHeader-inner {
	margin: 0% 8%;
	}
}

.SydSubHeader{
	margin: 0% 12%;
}

@media screen and (max-width: 1366px) {
	.SydSubHeader{
	margin: 0% 9%;
	}
}

.SydNavBar{
	border: solid 1px #fff !important;
}

#dnnMenu .topLevel>li>a {
    color: #fff;
    font-size: 18px;
    font-family: var(--syd-font);
    font-weight: 600;
}

#dnnMenu .topLevel>li>a:focus, #dnnMenu .topLevel>li>a:hover {
    color: var(--syd-green, #8dc263);
}

#dnnMenu .topLevel>.active.open>a, #dnnMenu .topLevel>.active.open>a:hover, #dnnMenu .topLevel>.active.open>a:focus {
    background-color: var(--syd-primary, #1370B6);
}

#dnnMenu .dropdown-menu li.active>a, #dnnMenu .dropdown-menu li.active a:hover, #dnnMenu .dropdown-menu li.active a:focus {
    color: var(--syd-green, #8dc263);
    font-weight: 600;
    background: #fff;
}

#dnnMenu .dropdown-menu li:hover {
    background: var(--syd-bg-light, #f4f4f4);
}

#dnnMenu .dropdown-menu li a:hover,
#dnnMenu .dropdown-menu li a:focus {
    color: var(--syd-primary, #1370B6);
    font-weight: 600;
    background: transparent;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: var(--syd-green, #8dc263) !important;
    background: var(--syd-mid-blue, #32567d);
    border-bottom: solid 2px var(--syd-green, #8dc263);
    font-weight: 500;
}

#dnnMenu .dropdown-menu {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #fff;
    padding: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .175);
}

#dnnMenu .dropdown-menu::after {
    bottom: 100%;
    left: 35%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(241, 241, 241, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -30px;
}

#dnnMenu .dropdown-menu li {
    background: none;
    float: none;
    clear: both;
    width: auto;
    padding: 5px 5px;
    border-bottom: 1px solid #e1e1e1;
    -o-transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
	font-weight: 600;
}

.SydBredC {
	display:none!important;
}

.topHeader-Inner {
    background: var(--syd-primary, #1370B6);
    max-width: 1895px;
}

/* ============================================================
   HOME PAGE
   All classes prefixed .syd-home- to avoid collisions.
   Colours use CSS variables from :root above.
   ============================================================ */

/* --- Hero Banner --- */

.syd-home-hero {
    position: relative;
    width: 100%;
    background-image: url('/portals/0/Images/HomePageHeroBanner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}

.syd-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 76, 114, 0.5) 0%, rgba(0, 69, 138, 0.4) 100%);
    z-index: 1;
}

.syd-home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%; 
    margin: 0 auto;
}

.syd-home-hero-content h1 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.syd-home-hero-sub {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.92);
}

.syd-home-hero-tagline {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* --- Shared button row --- */

.syd-home-btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    margin: 20px 0 0;
}

.syd-home-btn-row .syd-btn {
    min-width: 140px;
}

/* --- Shared section layout --- */

.syd-home-section {
    padding: 60px 24px;
    text-align: center;
}

.syd-home-section-alt {
    background: var(--syd-bg-light, #f4f4f4);
}

.syd-home-section-products {
    background: var(--syd-primary, #1370B6);
    color: #fff;
}

.syd-home-section.syd-home-section-alt .syd-home-container h2 {
    color: #32567d;
}

.syd-home-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.syd-home-container h2 {
    color: #fff;
}

a.syd-home-tile {
    color: #fff;
}

.syd-home-section-heading {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-mid-blue, #32567d);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto 40px;
}

.syd-home-section-heading-light {
    color: #fff;
}

.syd-home-section .syd-home-container h2 {
    color: #32567d;
}


/* --- Manufacturer Logos --- */

.syd-home-logos {
    padding: 20px 0;
}

.syd-home-logos h2 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-mid-blue, #32567d);
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 600;
    margin: 0 0 40px;
}

.syd-home-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.syd-home-logo-row img {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(30%);
}

.syd-home-logo-row img:hover {
    transform: scale(1.06);
    filter: grayscale(0%);
}


/* --- Quality / Process --- */

.syd-home-process {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
    margin: 30px auto 50px;
}

.syd-home-process-step {
    width: 320px;
    text-align: center;
}

.syd-home-process-step img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.syd-home-process-arrow {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid var(--syd-primary, #1370B6);
    flex-shrink: 0;
}

.syd-home-about {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-text-body, #424242);
    font-size: 1rem;
    line-height: 1.65;
}

.syd-home-about p {
    margin: 0 0 14px;
}

.syd-home-about a {
    color: var(--syd-primary, #1370B6);
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .syd-home-process {
        flex-direction: column;
        align-items: center;
    }

    .syd-home-process-step {
        width: 80%;
        max-width: 400px;
    }

    .syd-home-process-arrow {
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid var(--syd-primary, #1370B6);
        border-bottom: none;
    }
}


/* --- Service Cards --- */

.syd-home-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1300px;
    margin: 30px auto;
}

.syd-home-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.syd-home-service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.syd-home-service-text {
    flex: 1;
    margin-bottom: 16px;
}

.syd-home-service-text h3 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-dark-blue, #2d4c72);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.syd-home-service-text p {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-text-body, #424242);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.syd-home-service-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syd-home-service-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.syd-home-service-card .syd-btn {
    margin-top: auto;
}

@media screen and (max-width: 600px) {
    .syd-home-services {
        grid-template-columns: 1fr;
    }
}


/* --- Product Tiles --- */

.syd-home-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 10px 0;
}

.syd-home-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 12px 8px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.syd-home-section.syd-home-section-products h2 {
    color: #fff;
}

.syd-home-tile:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.syd-home-tile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.syd-home-tile span {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
}

@media screen and (max-width: 600px) {
    .syd-home-tiles {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 14px;
    }

    .syd-home-tile img {
        width: 80px;
        height: 80px;
    }
}


/* Products section: invert syd-btn-primary to white on blue bg */
.syd-home-section-products .syd-btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--syd-primary, #1370B6);
}

.syd-home-section-products .syd-btn-primary:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--syd-dark-blue, #2d4c72);
}


/* --- CTA Cards (FAQ / Projects) --- */

.syd-home-cta-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.syd-home-cta-card {
    flex: 1 1 320px;
    max-width: 520px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.syd-home-cta-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.syd-home-cta-img img {
    width: 100%;
    height: auto;
    display: block;
}

.syd-home-cta-content {
    padding: 24px 24px 28px;
}

.syd-home-cta-content h3 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-dark-blue, #2d4c72);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.syd-home-cta-lead {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-primary, #1370B6);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 10px;
}

.syd-home-cta-content p {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-text-body, #424242);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 16px;
}

.syd-home-cta-content .syd-btn {
    margin-top: 4px;
}

@media screen and (max-width: 700px) {
    .syd-home-cta-cards {
        flex-direction: column;
        align-items: center;
    }

    .syd-home-cta-card {
        max-width: 100%;
    }
}


/* --- Responsive hero --- */

@media screen and (max-width: 768px) {
    .syd-home-hero {
        padding: 50px 16px;
    }
}


/* ============================================================
   SERVICES PAGE
   All classes prefixed .syd-services- to avoid collisions.
   ============================================================ */

/* --- Shared container --- */

.syd-services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Service sections --- */

.syd-services-section {
    padding: 60px 24px;
}

.syd-services-section-alt {
    background: var(--syd-bg-light, #f4f4f4);
}

/* Two-column block: text + image */
.syd-services-block {
    display: flex;
    align-items: center;
    gap: 48px;
}

.syd-services-block-reverse {
    flex-direction: row-reverse;
}

.syd-services-content {
    flex: 1;
    min-width: 0;
}

.syd-services-content h2 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-dark-blue, #2d4c72);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 16px;
}

.syd-services-content p {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-text-body, #424242);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 14px;
}

.syd-services-content .syd-btn {
    margin-top: 6px;
}

.syd-services-img {
    flex: 0 0 420px;
    max-width: 420px;
}

.syd-services-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 860px) {
    .syd-services-block,
    .syd-services-block-reverse {
        flex-direction: column;
        text-align: center;
    }

    .syd-services-img {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .syd-services-content .syd-btn {
        margin-top: 10px;
    }
}


/* --- CTA Cards (FAQ / Projects / Contact) --- */

.syd-services-cta-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.syd-services-cta-card {
    flex: 1 1 280px;
    max-width: 380px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.syd-services-cta-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.syd-services-cta-img img {
    width: 100%;
    height: auto;
    display: block;
}

.syd-services-cta-content {
    padding: 22px 22px 26px;
}

.syd-services-cta-content h3 {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-dark-blue, #2d4c72);
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.syd-services-cta-lead {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-primary, #1370B6);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.syd-services-cta-content p {
    font-family: var(--syd-font, 'Barlow Condensed', Arial, sans-serif);
    color: var(--syd-text-body, #424242);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 14px;
}

.syd-services-cta-content .syd-btn {
    margin-top: 4px;
}

@media screen and (max-width: 700px) {
    .syd-services-cta-cards {
        flex-direction: column;
        align-items: center;
    }

    .syd-services-cta-card {
        max-width: 100%;
    }
}


/* body style*/
main{
    background: #fff;
	border: solid  1px #fff;
    border-top: none;
    margin-bottom: 15px;
    min-height: 350px;
}


#breadcrumb {
    font-family: var(--syd-font);
    border-radius: 0;
    box-shadow: none;
    border-bottom: none;
    border-color: #ccc;
    background-color: transparent;
    padding: 5px 0;
    margin: 0;
    display: block;
    color: var(--syd-dark-blue, #2d4c72);
}


/*Fixed Top Content*/
#fixedBox{
	display:none;
}
	#fixedBox{
		display:block;
	}
	#fixedContent:before{
		background-color:#0d0d0d;
		filter:alpha(opacity= 60 );
		opacity: 0.6;
	}
	#fixedBox,
	#fixedBox .Normal,
	#fixedToggle .fa{
		font-size:12px;
		color:#0d0d0d;
	}
	#fixedBox a,
	#fixedBox a:link,
	#fixedBox a:active,
	#fixedBox a:visited,
	#fixedBox a:hover{
		color:#20a3f0;
	}
	#fixedToggle:before{
		border-top-color:#0d0d0d;
		border-right-color:#0d0d0d;
	}

/*Footer*/

footer .footer-above {
    background-color: var(--syd-footer, #255780);
    padding-top: 25px;
    border-top: none;
}

.SydFooterBG {
    background: var(--syd-footer, #255780);
    position: relative;
}

.row.dnnpane.SydBackground {
    background: var(--syd-footer, #255780);
    width: 80%;
    margin: auto;
}

.SydFooterContainer{
	float: left;
    display: block;
    position: relative;
	width:100%;
}

.SydFooterContainer h4 {
    color: #fff;
}

.footer-corner-image {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 200px; /* Adjust size as needed */
  height: auto;
  pointer-events: none; /* Prevent interaction if purely decorative */
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .SydFt{
	width:50%;
	}
}

.row.dnnpane.SydFt {
    background-color: var(--syd-footer, #00458a);
}

.row.dnnpane.footer-terms {
    background-color: var(--syd-dark-blue, #2d4c72);
    width: 100%;
    margin-left: 0px;
}

footer .footer-below {
    background-color: var(--syd-dark-blue, #2d4c72);
    padding: 15px 0;
}

footer .footer-terms {
    background-color: var(--syd-dark-blue, #2d4c72);
}

footer .copyright, footer .terms-priv {
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
	margin: 0px 11% 0px 11%;
}

footer .footer-below, footer .terms-priv a:link, footer .terms-priv a:visited {
    color: #fff;
    font-size: 12px;
}

.PageHeader{
	padding: 10px 15px;
}


/* STOREFRONT CHANGES */

.rvdsf-productdetail-container .btn-toolbar .btn, .rvdsf-productdetail-container .btn-toolbar .btn-group {
    min-width: 140px;
    color: #fff;
    font-weight: 500;
    border: 2px solid var(--syd-primary, #1370B6);
    background: var(--syd-primary, #1370B6);
}

.checkbox.form-check {
    margin: 3px 0px;
}

.syd-row-adjust{
	width:100%;
	margin-left: -9px;
}

.glyphicon-th-large:before {
	color: #127086;
}

.glyphicon-th-list:before {
    color: #127086;
}

.syd-group-adjust{
	margin-bottom:5px;
}

.SydButtonAdjust{
	margin:0px;
	height:34px!important;
	min-width:50px!important;
}

.SydFilterButtonAdjust{
	min-width:60px;
	margin:0px;
}

.rvdsf-productlist-container .rvdsf-field-name a {
    color: inherit;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    font-family: var(--syd-font);
}

.h4 {
    color: var(--syd-text-dark, #363e4c);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    font-family: var(--syd-font);
    font-weight: 600;
    border-bottom: solid 1px #e3e3e3;
    padding: 0px 0px 6px 0px;
    margin: 5px 0px;
}

.rvdsf-productlistfilter-container div.rvdsf-field-definition {
    margin: 10px 10px;
}

.form-group.col-xs-4.col-4 {
    margin:0px 0px 10px 0px;
}

@media screen and (max-width: 992px) {
  .form-group.col-xs-4.col-4 {
    width: 50%;
	}
}

@media screen and (max-width: 762px) {
  .form-group.col-xs-4.col-4 {
    width: 100%;
	}
}

.rvdsf-productfilter-container div.rvdsf-field-definition {
    margin: 18px 10px;
}

.rvdsf-productfilter-container .rvdsf-field-definition label.control-label {
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    margin-bottom: 8px;
    width: 100%;
	font-weight: 550!important;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
	margin-left: -25px;
}

.form-check label {
    line-height: 22px;
	font-size:12px;
}

table#dnn_ctr382_StorefrontView_ctl01_ProductGridView a:visited {
    color: #000;
}

.glyphicon-chevron-right:before {
    content: "\e080";
    font-weight: 200 !important;
	color: #363e4c;
}

button.btn.btn-default.btn-light.btn-light.btn-block.dropdown-toggle.bg-transparent.border-0 {
    color: #363e4c;
}

.service-content img {
    float: right;
    width: 30%;
    margin: 0 0 30px 40px;
}



.product-btns {
    margin-top: 50px;
}

.product-btn a, .product-btn input {
    display: block;
    width: 100%;
}

#html-body .cms-links-grid .pagebuilder-column-line {
    gap: 20px;
}
#html-body [data-pb-style=DKNYD02], #html-body [data-pb-style=R13X63Q], #html-body [data-pb-style=W9WJ9QR] {
    display: flex
;
    width: 100%;
}
.policybox{
    align-items: center;
    display: flex;
    justify-content: center;
    width: 20%;
}

.pagebuilder-banner-wrapper .pagebuilder-overlay.pagebuilder-poster-overlay {
    align-items: center;
    display: flex
;
    justify-content: center;
}
.pagebuilder-banner-wrapper .pagebuilder-overlay {
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    -webkit-transition: background-color .5s ease;
    box-sizing: border-box;
    padding: 30px;
    position: relative;
    transition: background-color .5s ease;
}
.pagebuilder-banner-wrapper {
    background-clip: padding-box;
    border-radius: inherit;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
[data-content-type=banner]>[data-element=link]:hover, [data-content-type=banner]>[data-element=empty_link]:hover {
    color: inherit;
    text-decoration: inherit;
}
[data-content-type=banner]>[data-element=link], [data-content-type=banner]>[data-element=empty_link] {
    color: inherit;
    text-decoration: inherit;
}

* {
  box-sizing: border-box;
}

/* Create four equal columns that floats next to each other */
.policy-column {
  float: left;
  width: 20%;
  padding:1px;
  height: 150px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display:table;
  clear: both;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    width: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}


.banner-button {
    transition: opacity .5s ease;
    margin: 0px 0 0;
    max-width: 100%;
    text-align: inherit;
    word-break: break-word;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--syd-font);
    position: absolute;
    bottom: 0;
}
    .banner-button a {
        background: #141B41;
        font-weight: normal;
        font-size: 18px;
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
    }
    .banner-button a:hover {
        background: #fff!important;
        color: #141B41!important;
        border-radius: 50px!important;
  border-style: solid!important;
  border-width:1px!important;
  border-color: black!important;
        text-decoration: none!important;
    }

.cutlist-button {
    transition: opacity .5s ease;
    margin: 0px 0 0;
    text-align: inherit;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--syd-font);
}
    .cutlist-button a {
        background: #fff !important;
        color: #141B41 !important;
        border-radius: 50px !important;
        border-style: solid !important;
        border-width: 1px !important;
        border-color: black !important;
        text-decoration: none !important;
        font-size: 18px;
        padding: 10px;
        font-weight: bold;
        font-family: var(--syd-font);
    }
    .cutlist-button a:hover {
        background: var(--syd-green, #8dc263) !important;
        font-size: 18px;
        color: #fff !important;
        border-color: var(--syd-green, #8dc263) !important;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
    }

/* Container and header */

/* Container spacing & typography */
.ContactHeader {
  text-align: center;
  margin: 40px 0 20px;
}

.ContactHeader h3 {
  font-size: 2rem;
  font-weight: 600;
}

/* Content layout */
.ContactContent {
  padding: 20px;
  box-sizing: border-box;
}

.ContactContent p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.5;
}

/* Social media icons */
.contact-social-icons {
  width: 32px;
  height: 32px;
  margin: 5px 10px 15px 0px;
  vertical-align: middle;
}

/* Map styling */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* Responsive behavior */
@media (max-width: 767px) {
  .col-sm-12,
  .col-sm-5,
  .col-sm-7 {
    width: 100%;
    float: none;
  }

  .contact-social-icons {
    margin-bottom: 10px;
  }

  .ContactContent {
    padding: 10px;
  }

  .ContactHeader h3 {
    font-size: 1.5rem;
  }
  
}

@media (max-width: 991px) {
    
  .map-responsive {
	  padding-bottom: 112%;
  }
}



/* Responsive layout using Flexbox */
.ContactContainer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.col-sm-4,
.col-sm-3,
.col-sm-5 {
  flex: 1 1 100%; /* Stack by default */
  max-width: 100%;
}

/* Larger screens: approximate Bootstrap grid */
@media (min-width: 768px) {
  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-5 {
    flex: 0 0 40.55%;
    max-width: 40.55%;
  }
}

.section {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 40px;
      align-items: center;
}

.section img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
}

.text {
      flex: 1 1 60%;
      padding: 10px;
}

.image {
      flex: 1 1 35%;
      padding: 10px;
}

.cutting-form {
      display: inline-block;
      background-color: #0a3d62;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
}

.cutting-form:hover {
      background-color: #145b8d;
}

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
      }

      .text, .image {
        flex: 1 1 100%;
      }
    }












