header {
  z-index: 998;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #ffffff;
  box-shadow:0 3px 6px 0 rgba(0,0,0,0.215);  /* Dropshadow on header element */
  transition: padding 300ms ease;
  height: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out ;
  padding-bottom: 1em;
}

/*.mobile-header {
  z-index: 998;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  box-shadow:0 3px 6px 0 rgba(0,0,0,0.215);
  transition: padding 300ms ease;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out ;
  height: 15vh;
}
*/
.quick-links {
}

.quick-links a:link, 
.quick-links a:active, 
.quick-links a:visited {
  color: gray;
  text-decoration: none;
}

.quick-links a:hover {
  color: gray;
  border-bottom: 2px solid gray;
}

.action-items {
}
  
.action-items ul { }
    
.action-items li, .action-item {
  display: inline-block;
  width: 175px;
  padding: 16px 18px 0px 18px;
  font-family: 'Merriweather', serif;
  font-weight: 400;
}

.action-items a:link, .action-items a:active, .action-items a:visited {
  color: #20376b;
  text-decoration: none;
} 

.request-a-quote {
  background-color: #20376b;
  background-image: linear-gradient(to left,
  transparent,
  transparent 50%,
  #e6e7e8 50%,
  #e6e7e8 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: all .25s ease-in;
  text-align: center;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  font-weight: 400;
}

.request-a-quote:hover {
  background-position: 0 0;  
  background-color: #eeeeee;
  transition: 0.5s;
  color: #20376b;
  text-decoration: none;
}


/* Dropdown links: "Work with Admiral" & "Our Components" */
 .shift, .shift a {
  color: #20376b;
}

.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

  .dropdown-content a {
    float: none;
    padding: 16px 40px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-content a:hover {

    }



/* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }



/* CSS that creates blue/white shift transition on dropdown links */
.shift a {
    position:relative;
    z-index: 1;
  }

.shift a:hover {
    color: #ffffff;
    font-weight: 500;
  }

.shift a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #20376b;
    visibility: none;
    opacity: 0;
    z-index: -1;
  }

.shift a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }