/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


#site-navigation-wrap .dropdown-menu>li>a {
    font-size: 11px;
    color: #002E5D;
    font-family: 'Encode Sans Expanded', sans-serif;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	opacity: 1;
}

#site-navigation-wrap .dropdown-menu>li>a:hover {
    font-size: 11px;
    color: #002E5D;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: bolder;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	opacity: 1;
}

#site-header {
    border-bottom: none;
}

/* body #mysticky-nav {
  background: #FFF;
  position: fixed;
} */

body #mysticky-nav.wrapfixed {
  opacity: 1;
  filter: unset;
  -webkit-transition: unset;
  -moz-transition: unset;
  -o-transition: unset;
  -ms-filter: unset;
}

.sticky-nav-container {
  color: #002E5D;
  font-family: 'Encode Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
	font-size: 11px;
	font-weight: 500;
}

.sticky-nav-container + .site-main {
  margin-top: 10rem;
}

.sticky-nav {
  background: #FFF;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  align-items: center;
  padding: 0 15px;
  max-width: 1460px;
  width: 100%;
  left: 0;
  overflow: hidden;
  overflow-x: auto;
  height: 50px;
  position: fixed;
  z-index: 9999;
  top: 74px;
}

.sticky-nav--buttons {
  position: absolute;
  bottom: 0;
}

.sticky-nav__items button {
	border-bottom: 1px solid transparent;
	padding-bottom: 3px;
	transition: all .3s ease;
}

.sticky-nav__items button:hover {
	border-bottom-color: #002E5D;
}

.sticky-nav__breadcrumb,
.sticky-nav__items {
	top: 3px;
}

.sticky-nav__breadcrumb {
  display: none;
}


.sticky-nav__breadcrumb strong {
	font-weight: 600;
}

.sticky-nav__items ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
}

.sticky-nav__items li {
	text-transform: uppercase;
	top: 3px;
}

.sticky-nav__items li + li {
	margin-left: 2rem;
}

.sticky-nav__items li button {
  background: transparent;
  border: none;
  white-space: nowrap;
}

.sticky-nav__items li button:hover {
	text-decoration: underline;
}

.sticky-nav__cta {
  display: none;
  justify-content: flex-end;
}

.sticky-nav__cta a {
	color: #FFF;
  border: none;
  font-weight: 500;
	display: flex;
  align-items: center;
	padding: 0.5rem 1rem;
	transition: all .4s ease;
}

.sticky-nav__cta a:hover {
	color: #FFF;
	filter: brightness(0.9);
}

.sticky-nav__cta a + a {
  margin-top: 1px;
}

.sticky-nav__cta a img {
  margin-right: 0.5rem;
}

.sticky-nav__cta--bottom  {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.sticky-nav__cta--bottom  a {
  justify-content: center;
}

@media (min-width: 720px) {
  .sticky-nav {
    padding: 0 40px;
    justify-content: center;
  }

  .admin-bar .sticky-nav {
    top: 106px;
  }

  .sticky-nav-container + .site-main {
    margin-top: 5rem;
  }
}

@media (min-width: 960px) {
  /* #mysticky-nav {
    position: static;
  } */

  .sticky-nav {
    justify-content: space-between;
  }

  .sticky-nav__breadcrumb {
    display: block;
  }

  .sticky-nav__cta {
    display: flex;
  }

  .sticky-nav__cta a + a {
    margin-top: 0;
    margin-left: 2rem;
  }

  .sticky-nav__cta--bottom {
    display: none;
  }
}

@media (min-width: 1140px) {
  .sticky-nav__breadcrumb {
    flex: 35%;
  }

  .sticky-nav__items {
    flex: 30%;
  }

  .sticky-nav__cta {
    display: flex;
    justify-content: flex-end;
    flex: 30%;
  }

  .sticky-nav__cta--bottom {
    display: none;
  }
}