  .siteNav li.nav-item:last-child {
    background: #0e5bb0;
}
.menuPrimary .nav-link {
    text-transform: uppercase;
}
.counter {
	padding: 20px 0;
	height: 200px;
    width: 200px;
    background: #224d78e0;
    -moz-border-radius: 200px;
    -webkit-border-radius: 200px;
    border-radius: 200px !important;
    margin: auto;
}

.count-title {
    font-size: 30px;
    margin-bottom: 0;
    text-align: center;
    color: #ffcd00;
	padding-top: 0.5rem;
}

.count-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
    color: white;
    font-weight: 600;
    width: 9rem;
    margin: auto;
    line-height: 1.4;
}

.counter .fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
	font-size: 1.3rem;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;

  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.container-custom {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.uaa-color {
	background: #00583d;
    border: 1px solid #00583d;
	color:white;
}
.uaf-color {
	background: #236192;
    border: 1px solid #236192;
	color:white;
}
.uas-color {
	background: #8dca46;
    border: 1px solid #8dca46;
	color:black;
}
#navbar-header{
    background: #003266;
}
@media (min-width: 576px){
.container-custom {
    max-width: 540px;
}}
@media (min-width: 768px){
.container-custom  {
    max-width: 720px;
	padding-right: 0;
    padding-left: 0;
	margin:auto;
}}
@media (min-width: 992px){
.container-custom  {
    max-width: 960px;
}}
@media (min-width: 1200px){
.container-custom  {
    max-width: 1140px;
}}

.page-content .row .col > .quotes-container {
    padding: 0 0 1rem;
}

.quotes-container {
    margin-top: -3rem;
}
.quotes-container::before {
    z-index: 100;
    top: 4rem;
}
footer div.container-fluid a:hover, footer div.container-fluid a:active {
    color: #b3e6ec !important;
}