
/**
 *  @file justHeader.css
 *  @brief 
 * css for html only version of simple header
 */

 @import "brcm_base.css";         /* CSS common variables, common css for buttons, links, fonts */

/* loading icon */
.loading {
  position: relative; }
  .loading .loading-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1003;
    top: 0;
    text-align: center; }
  .loading .loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px; }

.page-loading .loading-overlay {
  min-height: calc(100vh - 277px); }

.loaded {
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  /* Firefox */
  -webkit-animation: fadein 2s;
  /* Safari and Chrome */
  -o-animation: fadein 2s;
  /* Opera */ }


/* optional - page transitions */
.page-fade-enter {
  opacity: 0.01;
  z-index: 1; }

.page-fade-enter.page-fade-enter-active {
  opacity: 1;
  transition: opacity 250ms ease-in; }

.page-fade-leave {
  opacity: 1; }

.page-fade-leave.page-fade-leave-active {
  opacity: 0.01;
  transition: opacity 250ms ease-in; }

.fadein, .tab-pane.active {
  animation: fadein 500ms;
  -moz-animation: fadein 500ms;
  /* Firefox */
  -webkit-animation: fadein 500ms;
  /* Safari and Chrome */
  -o-animation: fadein 500ms;
  /* Opera */ }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeout {
  animation: fadeout 500ms;
  -moz-animation: fadeout 500ms;
  /* Firefox */
  -webkit-animation: fadeout 500ms;
  /* Safari and Chrome */
  -o-animation: fadeout 500ms;
  /* Opera */ }

@keyframes fadeout {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-moz-keyframes fadeout {
  /* Firefox */
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes fadeout {
  /* Safari and Chrome */
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-o-keyframes fadeout {
  /* Opera */
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* */

/* header */

#header {
    height: 90px;
    background-color: var(--component-header-background-color);
    width: 100%;
    position: relative;
    display: flex;
    box-sizing: border-box;
}

    #header:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 7px;
        background: var(--gradient-pulse-steel-navy);
        pointer-events: none;
    }

    #header .navbar {
        position: relative;
        display: flex;
        align-items: center;
        padding: 0;
        height: 100%;
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

#header .navBrand {
  -webkit-box-flex: 0 0 215px;
  -moz-box-flex: 0 0 215px;
  -webkit-flex: 0 0 215px;
  -ms-flex: 0 0 215px;
  flex: 0 0 215px;
  max-width: none;
  min-width: 215px;
}

#header .navbar-brand {
    width: 205px;
    height: 39px;
    background-size: contain;
    height: 100%;
    margin: 0;
    margin-right: 1rem;
    font-size: 0;
    background: url("img/broadcom-logo.png") center center no-repeat;
    display: block;
}

    #header .header_menu {
        margin: 0;
        flex-wrap: nowrap;
        height: 47px;
        flex-direction: row;
        list-style: none;
        margin-bottom: 0;
        justify-content: space-between;
    }

    #header .mainMenuItem a {
        display: inline-block;
        position: relative;
        list-style: none;
        text-align: center;
        text-decoration: none;
        color: var(--text-body);
        font-family: var(--font-family--primary);
        font-size: var(--body-standard-font-size);
        line-height: var(--body-standard-line-height);
        font-weight: var(--font-weight-regular);
        letter-spacing: .5px;
        padding-right: 2px;
        padding-left: 2px;
        margin-left: .5em;
        margin-right: .5em;
        transition: font-weight 0.15s ease;
    }

        #header .mainMenuItem a::before {
            content: attr(data-text);
            font-weight: var(--font-weight-bold);
            letter-spacing: .5px;
            display: block;
            height: 0;
            overflow: hidden;
            visibility: hidden;
        }


        #header .mainMenuItem a:hover {
            font-weight: var(--font-weight-bold);
            letter-spacing: .5px;
        }

        #header .secondary_nav ul {
            list-style: none;
            display: flex;
            padding-left: 0;
            margin: 0;
            margin-left: 10px;
        }

#header .secondary_nav ul a {
  color: var(--color-grey--700);
  font-size: var(--font-size-md);
  text-decoration: none;
  background-color: transparent;
}

/* footer */

footer {
    display: block;
    background-color: var(--component-footer-background-color);
    overflow: hidden;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    padding: 40px 0;
}

    footer::before {
        content: "";
        position: relative;
        display: block;
        left: 0;
        top: -40px;
        width: 100%;
        height: 7px;
        background: var(--gradient-pulse-steel-navy);
        pointer-events: none;
    }

    .footer-logo {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
footer .footer-left, footer .footer-right {
  display:inline-block;
}

footer .footer-left {
    position: relative;
    order: -1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
    height: 95px;
}


footer .footer-left .footer_menu {
  padding-top: 20px;
  padding-bottom: 10px;
  justify-content: start;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: currentColor;
  font-weight: 500;
/*   font-family: "HCo Gotham", sans-serif; */
  background-color: transparent;
}

footer .footer-left .footer_menu li {
  margin: 0 10px 0 0;
  width: auto;
  border: none;
}

    footer .footer-left .footer_menu a {
        font-size: var(--body-bold-font-size);
        line-height: var(--body-bold-line-height);
        font-weight: var(--body-bold-font-weight);
        color: var(--component-footer-menu-text-color);
    }

    footer .footer-left .footer_menu a:hover {
            text-decoration: underline;
    }

footer .secondary_nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  justify-content: start;
  padding-inline-start: unset;
}

footer .secondary_nav li {
  padding-left: 0;
  padding-right: 0;
  margin-right: 10px;
}

    footer .secondary_nav a {
        font-size: var(--body-xs-font-size);
        line-height: var(--body-xs-line-height);
        font-weight: var(--body-xs-font-weight);
        color: var(--component-footer-link-text-color);
    }

    footer .secondary_nav a:hover {
        text-decoration: underline;
    }

footer .footer-right {
  align-items: center;
}

footer .icons-container {
    padding-top: 4px;
}

footer .footer-right .social_nav {
    list-style: none;
    font-size: 20px;
    padding: 20px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
}

footer .icons-container a i {
    color: var(--slate-500);
}

footer .icons-container a:hover i {
    color: var(--slate-800);
}

footer .copyright_text {
    font-size: var(--body-xs-font-size);
    line-height: var(--body-xs-line-height);
    font-weight: var(--body-xs-font-weight);
    color: var(--component-footer-text-color);
/*    white-space: nowrap;*/
}


/* Helpers */

.container {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .container {
      max-width: 960px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }
@media (min-width: 768px) {
  .container {
    max-width: 720px; } }
@media (min-width: 992px) {
  .container {
    max-width: 960px; } }
@media (min-width: 1200px) {
  .container {
    max-width: 1170px; } }

.column-8 {
  flex: 0 0 66.66667%;
  -webkit-box-flex: 0 0 66.66667%;
  -moz-box-flex: 0 0 66.66667%;
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  max-width: 66.66667%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}
.column-4 {
  flex: 0 0 33.33333%;
  -webkit-box-flex: 0 0 33.33333%;
  -moz-box-flex: 0 0 33.33333%;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}

.d-flex {
  display: flex !important;
}
.w-100 {
  width: 100% !important;
}
.justify-content-between {
  justify-content: space-between !important;
  -webkit-justify-content: space-between;
}

.fa-stack .fa-circle {
    opacity: 0.0;
}

.fa-stack:hover .fa-circle {
    opacity: 1.0;
}

#header .navBrand .menuButton button::after {
    content: "MENU";
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--color-primary--dark); /*    #ce0930;*/
    padding-top: 3px
}

.custom-nav {
    border: none !important;
    color: var(--color-primary--dark) !important;
}

@media (max-width: 991.98px) {
    #header .navBrand .navbar-brand {
        width: 300px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%)
    }
}

.underHamburger {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #ce0930;
    padding-top: 3px
}

.iconColor {
    color: #ce0930 !important;
}

.iconLocation {
    padding-top: 13px;
    padding-left: 15px;
}