.flexnav {
  margin: 0;
  padding: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #053F95;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav {
    top: auto;
    max-height: none;
    overflow: visible;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: transparent;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: transparent;
  }
}

.flexnav.flexnav-show {
  max-height: 2000px;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flexnav ul {
  margin: 0;
  padding: 0;
  display: none;
}

.flexnav li {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
    text-align: center;
  }
  .flexnav li:hover > a {
    color: #053F95;
  }
}

.flexnav li a:not([class]),
.flexnav li a.navOnlyLink {
  display: block;
  padding: 0.313rem 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li a:not([class]),
  .flexnav li a.navOnlyLink {
    color: #0068C0;
    padding: 0.5rem 0;
  }
}

.flexnav > li > a:not([class]),
.flexnav > li > a.navOnlyLink {
  color: #ffffff;
  background-color: #0068C0;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav > li > a:not([class]),
  .flexnav > li > a.navOnlyLink {
    background-color: transparent;
    padding:1.5rem 0;
  }
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li > ul li {
    margin: 0;
    width: 100%;
    position: relative;
  }
}
.flexnav li > ul li a:not([class]),
.flexnav li > ul li a.navOnlyLink {
  font-size:1.125rem;
}
@media only screen and (min-width: 64.0625rem) {
  .flexnav li > ul li a {
    color: #053F95;
  }
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li > ul li:hover > a {
    color: #042A63;
  }
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li > ul li ul {
    top: 0;
    left: 100%;
  }
}

.flexnav li ul {
  margin: 0;
  list-style: none;
}

.flexnav li ul li a {
  margin-left: 1rem;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li ul li a {
    margin: 0;
  }
}

.flexnav li ul li ul li a {
  margin-left: 2rem;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav li ul li ul li a {
    margin: 0;
  }
}

.flexnav .touch-button {
  top: 0.75rem;
  right: 0;
  width: 25px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 64.0625rem) {
  .flexnav .touch-button {
    height: 100%;
    top: 0;
    right: -14px;
  }
}

.flexnav .touch-button:hover {
  cursor: pointer;
}

.flexnav .touch-button .navicon {
  line-height: 1;
  font-style: normal;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #ffffff;
}

.flexnav .touch-button.active .navicon {
  -webkit-transform: rotateX(180deg) translateY(0.25rem);
  transform: rotateX(180deg) translateY(0.25rem);
}

/*--- Hamburger Menu Button ---*/
.menu-button {
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (min-width: 64.0625rem) {
  .menu-button {
    display: none;
  }
}

.menu-button .touch-button {
  margin: 0;
  z-index: 1000;
  text-align: center;
  position: relative;
}

.menu-button .touch-button .navicon {
  height: 3px;
  width: 35px;
  display: block;
  margin: 13px 0;
  position: relative;
  background: #ffffff;
  -webkit-transition: background 0s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-button .touch-button .navicon:before, .menu-button .touch-button .navicon:after {
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  background: #ffffff;
}

.menu-button .touch-button .navicon:before {
  top: -10px;
  -webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  -o-transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.menu-button .touch-button .navicon:after {
  bottom: -10px;
  -webkit-transition: bottom 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, -webkit-transform 0.3s 0s;
  -o-transition: bottom 0.3s 0.3s, transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.menu-button .touch-button.active .navicon {
  background: transparent;
}

.menu-button .touch-button.active .navicon:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s 0s, bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  -o-transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.menu-button .touch-button.active .navicon:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s 0s, bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  -o-transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, bottom 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
/*
@media (hover: hover) {
  .flexnav .touch-button {
    display: none;
  }
}*/

@media only screen and (min-width: 64rem) {
  .flexnav li {
    padding: 0;
  }
  .flexnav > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
  }
  .flexnav > li:first-of-type {
    display:none;
  }
  .flexnav > li a {
    display: block;
  }
  .flexnav > li ul {
    list-style: none;
    margin: 0;
  }
  .flexnav > li > ul {
    display: none;
    position: absolute;
    top: calc(100% - 1rem);
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /**min-width: 765px;*/
    min-width: 825px;
    padding: 1.5rem;
    padding-top: 2.5rem;
    opacity: 0;
    background-color: transparent;
    border-radius: 6px;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  @supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .flexnav > li > ul {
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
    }
  }
  .flexnav > li > ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 1rem);
    z-index: -1;
    background-color: #ffffff;
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
  }
  .flexnav > li > ul.flexnav-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
  .flexnav > li > ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    padding: 0;
  }
  @supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .flexnav > li > ul > li > img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }
  }
  .flexnav > li > ul > li:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
  }
  .flexnav > li > ul > li > ul {
    position: relative;
    top: auto;
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexnav > li > ul > li > ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: left;
    padding: 0;
  }
  .flexnav > li > ul > li > ul > li > a {
    display: block;
  }
/*  .no-touch .flexnav .touch-button,
	.touch .flexnav .touch-button{
		display:none;
	}*/
  .flexnav .touch-button{
		display:none;
	}
}
