.navbar-brandfix{
    color: rgb(30,41,109)/*  rgb(41,232,255) */!important;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-right: 260px;
  }

.navbarfix{
    width: 100vw;
    height: 10vh;
   background-color:#b1d8ff/*  rgb(24,185,207) */!important;
}

.navbarfix .container .logo{
    width: 85px;
    height: 60px;
    margin: auto 20px;
    /* margin-left: 30px; */
    /* margin-right: 10px; */
}
.teamname-size{
   font-size: 20px;
}
.nav-link{
    height: 10vh;
    margin-top: 0;
    margin-right: 10px;
    background-color: /* rgb(22,98,22) */#b1d8ff/* rgb(24,185,207) */;
    line-height: /* 80px */10vh;
    text-align: center;
    font-size: 16px;
    color: rgb(55, 64, 118)/* rgb(41,232,255) */!important;
    font-weight: 500;
    font-family: "Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif";
    text-transform: uppercase;
}

.nav-link:hover {
    color: white!important;
}


.dropdown-menu{
    font-size: 16px;
    color: #091854!important;
    font-weight: 500;
    font-family: "Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif";
   /*  text-transform: uppercase; */
    border: 0;
    padding-left: 5px;
}

.dropdown-item{
    height: 38px;
}
.box .item-border{
    display: none;
    width: 0px;
    height: 0px;
    background-color:#b1d8ff/* rgb(24,185,207) */;
    animation-duration: 0.6s;
    animation-name: slidein;
    transition: all 0.6s linear;
}

.dropdown-item:hover{
    background-color: #e8f2fb/* rgb(167, 227, 235) *//*  #20c99638 */;
   /*  border-bottom: 2px solid #20c9968d; */
    height: 35px;
}
.box:hover .item-border {
    display: block;
    width: 90px;
    height: 3px;
    transition: all 0.6s linear;
}

.header {
    position:relative;
    width: 100%;
    height: 100vh;
    /* background-image: url("../../static/images/header.jpg"); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
   /*  margin-bottom: 50px; */
}

.header h1{
    position: absolute;
   /*  position: fixed; */
    font-size: 150px;
    top: 20%;
    left:8%;
    opacity: 1;
    color: rgb(15, 17, 16);
    z-index: -1;
}

.header .bk-color{
    width: 100%;
    height: 100%;
    color: white/* rgb(24,185,207) */;
    opacity: 0.7;
}
@keyframes slidein {
    from {
      width: 0;
    }

    to {
    width: 90px;
   }
  }


/* wave */


.logo {
    width:50px;
    fill:white;
    padding-right:15px;
    display:inline-block;
    vertical-align: middle;
  }

  .flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
    margin-top: -15vh;
  }

  .content {
    position:relative;
    height:20vh;
    text-align:center;
    background-color: white;
  }

  /* Animation */

  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% {
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }
    h1 {
      font-size:24px;
    }
  }