@charset "UTF-8";
/* ==================================================
   1. Global / Typography
   ================================================== */
html, body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  color: #575454;
}

h1 {
  font-size: 16pt;
  color: #204385;
  text-align: left;
  line-height: normal;
  font-weight: bold;
  font-style: italic;
}

h1.homepage {
  text-align: center;
  font-size: 28pt;
  margin: 10px 0 0 0;
  font-style: normal;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 11.5pt;
  color: #666666;
  font-weight: normal;
  line-height: normal;
}

h2.italic {
  text-align: center;
  font-size: 18pt;
  font-style: italic;
  margin: 6px 0 12px 0px;
}

h2.homepage {
  text-align: center;
  font-size: 14.5pt;
  font-weight: 900;
  margin: 0 15px 10px 5px;
}

h2.white {
    color: #ffffff;
    font-weight: bold;
}

h3 {
  font-size: 10pt;
  color: #378c0b;
  font-weight: bold;
}

h3.homepage {
  font-size: 16pt;
  text-align: left;
  color: #204385;
  margin: 0;
  padding: 0px 0px 0px 12px;
}

h4 {
  font-size: 7pt;
  color: #666666;
  font-weight: bold;
}

h4.homepage {
  font-size: 13pt;
}

ul.no-bullets-home {
  list-style: none;
  margin: 7px 0 13px 2px;
  font-size: 11pt;
  padding-left: 10px;
}

ul.no-bullets-home {
  list-style: none;
  font-size: 13pt;
}

ul.no-bullets-home li {
  margin-bottom: 6px;
}


/* ==================================================
   2. HEADER
   ================================================== */

header {
    position: relative;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-logo {
    flex: 1;
}

.header-logo img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 10px 0px 10px 12px;
	margin-left: 28px;
}

.header-search {
    flex: 0 1 450px;
}

.header-search form {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-search .st-default-search-input {
    width: 100%;
	height: 30px;
    min-width: 0;
    box-sizing: border-box;
}

.header-cart {
    flex: 0 0 auto;
    padding-right: 40px;
}

.header-cart img {
    width: 40px;
    height: auto;
}

[data-fc-id="minicart-quantity"] {
    position: absolute;
    top: -6px;
    right: -6px;

    background: #d60000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;

    width: 18px;
    height: 18px;
    line-height: 18px;

    border-radius: 50%;
    text-align: center;

    box-shadow: 0 0 0 2px #fff;
}

.search-field {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-field input[type="text"] {
    width: 320px;
    padding-right: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

input[type=submit] {
    background-color: #1b8418;
    color: white;
    padding: 4px 8px;
    text-decoration: none;
    margin: 4px 2px;
    border-radius: 6px;
    cursor: pointer;
}

input[type="submit"] {
    flex: 1;
    background-color: #307dcb;
    color: white;
    height: 30px;
    padding: 4px 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    margin-right: 20px;
}

/* ==================================================
   3. HORIZONTAL NAVIGATION
   ================================================== */

.navbar {
  background-color:#4e515a;
  height: 39px;
  overflow: visible; /* Ensure dropdown is not clipped */
  position: relative;
  z-index: 10; /* Keep on top */
}

/* Container for dropdown buttons */
.navbar-type {
    font-family: Helvetica, sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hamburger {
    display: none;
}

/* Main dropdown button */
.dropbtn {
    background-color: #4e515a;
    color: white;
    padding: 10px 23px;
    font-size: 14px;
    height: 39px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.dropbtn a {
  text-decoration: none;
  color: white;
}

.dropbtn:hover {
  background-color: #307dcb;
}

/* Triangle icon inside button */
.dropdown-icon {
  margin-left: 5px;
  color: #cb3030;
  display: inline-block;
  transform: scale(0.85);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: scale(0.85) rotate(180deg);
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #EFF9FE;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  /*padding: 10px 0;*/
  font-weight: normal;
  top: 100%;
  left: 0;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  text-align: left;
  color: black;
  text-decoration: none;
  padding: 20px 10px;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: IndianRed;
  color: #ffffff;
}

/* Reveal dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  transition: all 0.3s ease;
}

/* Container for each dropdown */
.dropdown {
  position: relative;
}

/* Ensure dropdowns appear above main content
.main-content,
aside {
  position: relative;
  z-index: 1;
}*/

/* Optional alternate dropdown button for matrix-style content */
.dropdown .dropbtn-matrix {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 22px 0px 22px;
  color: steelblue;
 /* border: none;
  outline: none;*/
  /*color: black;*/
  /*background: white;*/
  text-decoration: none;
  /*width: 295px;*/
}

.dropbtn-matrix:hover {
  background-color: #f6f6f6;
  color: #056a05;
}

#products {
width: 220px;
}

#quote {
width: 144px;
	background-color: #307dcb;
}

#quote:hover {
  background-color: #30b53a;gra
}

#matrix {
    width: 295px;
    background: none;
    color: black;
    background-color: white;
    line-height: .6;
    }

#matrix  a:hover {
        background-color: #f6f6f6;
        color: #056a05;
    }

/*.dropdown .dropbtn-matrix  a {
        color: #294162;
        font-size: 11pt;
        font-weight: bold;
        }   */

.navbar a:hover, .dropdown:hover .dropbtn {
   background-color: dimgrey;
}

.navbar-purple a:hover, .dropdown:hover .dropbtn-purple {
   background: MediumPurple;
}

.fc-cart-link {
  position: relative;
  display: inline-block;
}

/* ==================================================
   HORIZONTAL NAV RESPONSIVE BREAKPOINT
   ================================================== */

@media screen and (max-width: 1100px) {
    #products,
    #quote {
        width: auto;
    }
	.dropbtn{
		padding: 10px;
	}
	 .dropdown-icon {
        margin-left: 5px;
    }
}

@media screen and (max-width: 900px) {

    /* HEADER */

    .header-top {
        flex-wrap: wrap;
        gap: 0;
    }

    .header-logo {
        flex: 0 0 100%;
    }

    .header-logo img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .header-search {
        flex: 1;
        padding-left: 15px;
    }

    .header-cart {
        flex: 0 0 auto;
    }


    /* HAMBURGER */

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        width: 100%;
        height: 39px;
        padding: 0;

       background-color: #4e515a;
        color: white;
        border: none;

        font-size: 18px;
        cursor: pointer;
    }

    .hamburger span {
        font-size: 14px;
    }

    .navbar-type {
    display: none;
}

.navbar-type.menu-open {
    display: block;
    position: absolute;
    top: 39px;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    background-color: #4e515a;
    z-index: 9999;
}

.navbar-type.menu-open .dropdown {
    display: block;
    width: 100%;
}

.navbar-type.menu-open .dropbtn {
    display: flex;
    width: 100% !important;
    height: auto;
    min-height: 44px;
    margin: 0;
    padding: 10px 20px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    }
	.navbar-type.menu-open .dropdown-content {
    position: static;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
    }
}

/* ==================================================
   4. Main Page Structure
   ================================================== */

#fiber-art-responsive {
    height: 13px;
    background-image: url(/images/fiber-red-repeat-new.jpg);
    background-repeat: repeat-x;
    background-position: top left;
}

.page-wrapper {
  background-image: url("/images/AdobeStock_2077955890-1920x1080-grad.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

#pagewidth {
    width: calc(100% - 40px);
    max-width: 1440px;
    margin: 0 auto;
    line-height: 1.2;
    box-sizing: border-box;
}

#inner {

}

#maincol,
plain-maincol {
    position: relative;
    width: 100%;
    min-width: 0;
}

#inner > aside {
    grid-column: 1;
    grid-row: 1;
}

#maincol {
    grid-column: 2;
    grid-row: 1;
}

#main-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;

    background-image: url('/images/12-slide-background-image.webp');

    border: thin solid #999999;
}

/* ==================================================
  5. HOME PAGE HERO
   Sidebar + Splide
   ================================================== */

.hero-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}
.hero-row aside {
    flex: 0 0 220px;
}

.hero-main {
    flex: 1 1 auto;
    min-width: 0;
}

#main-slider {
    width: 100%;
    max-width: 100%;
}
/* ==================================================
   6. PRODUCT SIDEBAR NAVIGATION
   ================================================== */

aside {
    width: 220px;
    flex-shrink: 0;
}

.sidebar-menu {
    width: 220px;
    font-size: 12.3px;
    position: relative;
    background-color: rgba(239, 249, 254, 0.9);
    border-radius: 0 0 10px 10px;
}


/* ==================================================
   SIDEBAR LISTS & LINKS
   ================================================== */

.sidebar-menu ul,
.sidebar-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu a {
    display: block;
    padding: 6px 10px;
    color: black;
    text-decoration: none;
    line-height: 26px;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-menu li:hover > a,
.sidebar-menu li.hover > a {
    background-color:steelblue;
	color: floralwhite;
}


/* ==================================================
   SIDEBAR FLYOUT MENUS
   ================================================== */

.sidebar-menu li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 320px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);

    z-index: 1000;
    background-color: #EFF9FE;
    border: 1px solid LightGray;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.sidebar-menu li.hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sidebar-menu li > ul a {
    background-color: #EFF9FE;
    color: black;
    white-space: nowrap;
    line-height: 1.3;
    padding: 9px 12px;
    border-bottom: 1px solid #ddd;
}

.sidebar-menu li > ul a:hover {
    background-color: steelblue;
    color: Snow;
}

/* Nested flyout menus */
.sidebar-menu li > ul li > ul {
    top: 0;
    left: 100%;
}


/* ==================================================
   NEWEST PRODUCTS
   ================================================== */

.sidebar-menu .new-product,
.sidebar-menu .new-product > a {
    background-color: #30b53a;
    font-weight: bold;
    color: white;
}

.sidebar-menu .new-product > ul.new-product {
    background-color: FloralWhite;
}

.sidebar-menu .new-product > ul.new-product a {
    background-color: FloralWhite;
    color: MediumBlue;
    line-height: 16px;
    padding: 20px;
}

.sidebar-menu .new-product > ul.new-product a:hover {
    background-color: White;
    color: MediumBlue;
    box-shadow: 0 0 8px rgba(100, 149, 237, 0.4);
    border-radius: 4px;
}


/* ==================================================
   SUBMENU ARROWS
   ================================================== */

.sidebar-menu .submenu-arrow {
    float: right;
    font-size: 10px;
    color: lightsteelblue;
    transition: color 0.3s ease;
}

.sidebar-menu li.hover > a .submenu-arrow {
    color: lightgreen;
}


/* ==================================================
   SIDEBAR IMAGES & LOGOS
   ================================================== */

.sidebar-menu img {
    max-width: 100%;
    height: auto;
}

.sidebar-logos {
    margin-top: 25px;
    text-align: center;
}

.sidebar-logos a {
    display: block;
    margin-bottom: 10px;
}

.sidebar-logos img {
    display: block;
    max-width: 155px;
    height: auto;
    margin: 0 auto 15px;
}

/* ==================================================
   SIDEBAR RESPONSIVE BREAKPOINT
   ================================================== */

@media screen and (max-width: 1100px) {
    aside {
        display: none;
    }
}

/*********************************************************************************************************************/
/* 7. Home Page Slideshow - Splide Slideshow */
/*********************************************************************************************************************/

#main-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
    background-image: url('/images/12-slide-background-image.webp');
    /*border: thin solid #999999;*/
}

#main-slider img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.splide__slide {
    position: relative;
    text-align: center;
}

/* Text overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    color: white;
    text-align: center;
    padding: 0;
    transition: opacity 0.6s ease;
}

.slide-content h2 {
    font-size: 42pt;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    text-align: center;
    padding-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Fly-in animation */
.fly-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.splide__slide.is-active .fly-in {
    opacity: 1;
    transform: translateY(0);
}

.splide__slide.is-active {
    outline: 2px solid limegreen;
}

.splide__pagination__page {
    background: #ace483;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 8px;
}


/* ==================================================
   8. HOME PAGE CONTENT
   ================================================== */

#content-homepage {
    width: 100%;
    max-width: 1440px;
    box-sizing: border-box;
    background-color: rgba(239, 249, 254, 0.9);
    /*padding: 20px 0px;*/
    border-color: #999999;
    border-style: solid;
    border-width: 1px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 0 auto 20px;
}
.home-pg-links A:link {
 	text-decoration:none;
}
.home-pg-links A:visited {
 	text-decoration:none;
}
.home-pg-links A:hover {
 	text-decoration:none;
}
.home-pg-links A:active {
 	text-decoration:none;
}


/* Key Partnerships + ISO Logo */

.partnership-row {
    display: flex;
    align-items: center;
    gap: 20px;

    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 0 auto;
}
.partnership-content {
    flex: 1;
    min-width: 0;
	text-align: left;
}

.iso-logo {
    flex: 0 0 155px;
    text-align: center;
}

.iso-logo img {
    display: block;
    width: 155px;
    max-width: 100%;
    height: auto;
}

/* ==================================================
   KEY PARTNERSHIPS RESPONSIVE BREAKPOINT
   ================================================== */

@media screen and (max-width: 900px) {

    .partnership-row {
        display: block;
    }

    .partnership-content {
        width: 100%;
    }

    .iso-logo {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .iso-logo img {
        margin: 0 auto;
    }
}

/*********************************************************************************************************************/
/* 9. Four Home Page Feature Areas */
/*********************************************************************************************************************/

#home-boxes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;

    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 20px auto 0;
}

#home-boxes .box {
    min-width: 0;
    font-size: 10pt;
    color: #575454;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

/* Headline */
#home-boxes .box h4.homepage {
    margin: 0 0 12px 0;
}

/* Headline link */
#home-boxes .box h4.homepage a {
    color: #17468f;
    text-decoration: none;
}

#home-boxes .box h4.homepage a:visited {
    color: #17468f;
    text-decoration: none;
}

#home-boxes .box h4.homepage a:hover {
    color: #17468f;
    text-decoration: underline;
}

/* Product image */
#home-boxes .box img {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
    margin: 0 auto;
}

/* ==================================================
   FOUR HOME BOXES RESPONSIVE BREAKPOINT
   ================================================== */

@media screen and (max-width: 900px) {

    #home-boxes {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   10. PRODUCT MARQUEE / SLIDER
   ================================================== */

.mWrap {opacity:0;}
.mMove {opacity:0; white-space:nowrap; transform: translateZ(0);}
.mWrap.mIni,
.mWrap.mIni .mMove {opacity:1}
.mWrap,
.mWrap *{
	-moz-user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select: none;      
}
.grab {
	cursor: -moz-grab;
	cursor: -webkit-grab;
	cursor: grab;
}
.grabbing { 
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
	cursor: grabbing; 
}
.strTools *,
.strTools *:after,
.strTools *:before {
	box-sizing:border-box;
	-moz-user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select: none;   
}
.mWrap img {
    height: 100px;
    width: auto;
    max-width: none;
}
.str_move {
	cursor:move;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move{
	cursor:inherit;
}

/* === Appearance Marquee === */
.mWrap {
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    text-transform: none;
    text-align: left;
    color: inherit;
    background-color: white;
    border: 1px solid #999;
    border-radius: 15px;
    margin: 10px auto 0;
    box-sizing: border-box;
	width: 100% !important;
}


/* ==================================================
   11. FOOTER
   ================================================== */

#bottom-drop-shadow {
    width: 100%;
    background-image: url('/images/fiber-red-repeat-new.jpg');
    background-repeat: repeat-x;
    background-color: #4e515a;
}

#footer {
    width: 100%;
	text-align: left;
}

#footer-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 25px 25px;
    box-sizing: border-box;
}

/* Three footer columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

/* Footer headings */
.footer-column h2 {
    margin: 0 0 12px;
}

/* Footer links */
#footer a:link,
#footer a:visited {
    color: #d3cfcf;
    text-decoration: none;
}

#footer a:hover {
    color: #378c0b;
    text-decoration: none;
}

#footer a:active {
    color: #d3cfcf;
}


.footer-contact h2 {
    text-align: left;
}

.footer-contact .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 5px 0;
}

.footer-contact .contact-row img {
    width: 26px;
    height: auto;
    flex: 0 0 26px;
    margin: 0;
}

.footer-contact .contact-text {
    color: #d3cfcf;
    line-height: 1.3;
    text-align: left;
    font-size: 7pt;
    font-weight: bold;
}

/* ==================================================
   12. SHOPPING CART / PRODUCT PAGE
   ================================================== */
/* beginnning of css for shopping cart */ 


input[type="number" i] {
    width: 100px;
}
.add-to-cart-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.add-to-cart-btn img {
  display: block; /* removes inline spacing */
}