/**
 *  @file justHeader.css
 * css for html only version of simple header
 */

@import "https://www.vmware.com/media/blt8c9a8aaca0ffd4ac/blt44d1d081c22e1eb7/brcm_base.css"; /* CSS common variables, common css for buttons, links, fonts */

/* Header */

.container {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
}

.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
  -webkit-justify-content: space-between;
}
#header-explore {
  height: 146px;
  background-color: #fff;
  border-bottom: 7px solid #005c8a;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-family: "Metropolislight", sans-serif;
  z-index: 100;
}
#header-explore nav.header_nav {
  padding: 0;
  display: block;
  padding-top: 30px;
}
#header-explore .header_logo_wrapper {
  height: 39px;
}
#header-explore .header-accessibility-statement {
  top: 5px;
}
#header-explore .header-accessibility-statement:focus-within {
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
}
#header-explore .nav-skip:focus {
  position: absolute;
  top: 5px;
}
.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
}
#header-explore .navbar-brand {
  padding-top: 0;
}
#header-explore .header_location {
  font-size: 13px;
  color: #565656;
  text-transform: uppercase;
  margin-left: 16px;
  display: block;
}
#header-explore .header_location p {
  margin: 0;
}

#header-explore nav.header_nav .linkChevron {
  display: none;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
/* Navigation Links */
#nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 0;
}

#nav-links li {
  position: relative;
}

#nav-links a {
  color: #005c8a;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1;
}

.dropdown-content a {
  padding: 5px !important;
}

/* Dropdown for Desktop (on click, not hover) */
.dropdown.open .dropdown-content {
  display: block;
}
/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  margin-left: 10px;
  color: #005c8a;
  cursor: pointer;
  font-size: 25px;
  height: 30px;
  font-weight: 600;
}

.hamburger span {
  margin-left: 0px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.close span {
  margin-left: 0px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
/* Close Icon for Mobile */
.close {
  display: none;
  margin-left: 10px;
  font-size: 30px;
  color: #005c8a;
  cursor: pointer;
  font-weight: 600;
}
/* header responsive styles */
@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;
  }
}

@media screen and (max-width: 767px) {
  #header-explore nav.header_nav {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #header-explore .navBrand {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
  }
}

@media screen and (max-width: 767px) {
  #header-explore .navBrand .menuButton {
    text-align: center;
    z-index: 1;
    margin-top: 35px;
  }
  #header-explore .navBrand .menuButton button {
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    font-size: 25px;
    color: #005c8a;
    height: 30px;
  }

  #header-explore .navBrand .menuButton button span.bi {
    margin-left: 0;
  }
  #header-explore .navBrand .navbar-brand {
    width: 300px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
  }
  #header-explore .header_location {
    position: relative;
    left: 40%;
    top: 80%;
  }

  #header-explore ul.navbar-nav li {
    padding: 15px 0;
    border-bottom: solid 1px #8d8d90;
    width: 100%;
  }
  #header-explore nav.header_nav .linkChevron {
    display: inline-block;
    margin-right: 20px;
    align-self: center;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  /* Hide navigation links by default */
  #nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 160px;
    height: 580px;
  }

  #nav-links.active {
    display: flex;
    background-color: #fff;
  }

  /* Show hamburger and close icon depending on state */
  .hamburger {
    display: block;
  }

  .close {
    display: none;
  }

  /* Show close icon when menu is open */
  #nav-links.active ~ .hamburger {
    display: none;
  }

  #nav-links.active ~ .close {
    display: block;
  }

  /* Dropdown Content for Mobile */
  .dropdown-content {
    position: static;
    width: 240px;
    font-size: 14px;
    margin-left: 20px;
  }

  /* Stack links and CTA button vertically */
  #nav-links li {
    text-align: left;
    width: 100%;
  }

  .cta-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .hamburger span {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

/* footer */
footer {
  display: block;
  width: 100%;
}
#footer .footer-content {
  width: 100%;
  padding-bottom: 100px;
  border-top: solid 6px #005c8a;
  border-image: linear-gradient(to right, #6fbe2e 19%, #00bbd6 43%, #0f61a9 57%, #5a39a0 81%) 100;
  box-sizing: border-box;
  padding-top: 30px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
#footer .footer-content .container .footer-menu-cols .nav-item {
  margin-bottom: 20px;
  text-align: left;
}
#footer .footer-content .container .footer-image-link {
  display: flex;
  justify-content: start;
  align-items: center;
}
#footer .footer-content a {
  text-decoration: none;
}
#footer .footer-content .container img {
  max-width: 140px;
  width: 100%;
  height: 42px;
}
#footer .footer-content .container .footer-menu-cols .nav-item {
  margin-bottom: 20px;
  text-align: left;
}
#footer .footer-content .container li {
  list-style: none;
}
#footer .footer-content .container .footer-menu-cols .nav-item a {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  margin: 0;
  text-transform: capitalize;
  text-decoration: none;
}
#footer .footer-content .container .social-nav {
  padding-left: 40px;
}
#footer .footer-content .container .social-nav li {
  margin-bottom: 10px;
}
#footer .footer-content .container li {
  list-style: none;
}
#footer .footer-content .container .social-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  font-size: 14px;
  justify-content: start;
  text-transform: capitalize;
  color: #000;
}
#footer .footer-content .container .copyright-text {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid;
  margin-top: 40px;
}
#footer .footer-content .container .footer-secondary-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  flex-direction: row;
}
#footer .footer-content .container .footer-secondary-nav a {
  font-weight: 300;
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
}
#footer .footer-content .container .social-nav li a img {
  max-width: 25px;
  width: 100%;
  height: 25px;
  object-fit: contain;
}

/* footer responsive styles */

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.66667%;
    -webkit-box-flex: 0 0 16.66667%;
    -moz-box-flex: 0 0 16.66667%;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-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%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  #footer .footer-content .container .footer-secondary-nav {
    flex-direction: column;
  }
  .social-nav {
    margin-top: 60px;
  }
  #footer .footer-content .container .social-nav li a {
    justify-content: center;
  }
  #footer .footer-content .container .footer-menu-cols .nav-item {
    text-align: center;
  }
  #footer .footer-content .container .footer-image-link {
    justify-content: center;
    padding-bottom: 35px;
  }
  .col-sm-12 {
    width: 100%;
  }
  #footer .footer-content .container .social-nav {
    padding-left: 0px;
  }
  .footer-content {
    width: 100%;
  }
}
