/*NAVBAR*/
.navbar{
  background-color: rgba(2, 65, 132, 1);
  transition: background-color 1s ease 0s;
/*  overflow: hidden;*/
}
nav a.nav-link{
  font-family: 'Hind Vadodara', sans-serif;
  font-weight: 400;
  color: white !important;
}
nav a.nav-link:hover{
  color: rgba(255, 255, 255, 0.5) !important;
}
/*.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}*/
@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky {
    position: -webkit-fixed;
    position: fixed;
    top: 0;
    z-index: 1020;
    width: 100%;
  }
}

/*SMALL DIV WHEN SMALL SCREEN*/
.top-div{
  background-color: #014FA2FF;
}
.first-nav{
  background-color: rgba(1, 79, 162, 1);
}

/*TOP NAV SEARCH FIELD*/
.control {
  width: 30%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/*COLLAPSE NAV SEARCH FIELD*/
.form-control-nav {
  display: block;
  width: 50%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* hide the blue outline */
.form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
}

/*MEDIA QUERIES*/
@media (min-width: 992px){
  .apec-logo{
    display: none;
  }
}

