.navbar-brandfix{
    color: #a5bc0d!important;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbarfix{
   height: 10vh;
   background-color: #0f4933!important;
}
.navbarfix .container .logo{
    width: 85px;
    height: 60px;
}
.teamname-size{
   font-size: 20px;
}
.nav-link{
    height: 10vh;
    margin-top: 0;
    margin-right: 30px;
    background-color: /* rgb(22,98,22) */rgb(15, 73, 51);
    line-height: /* 80px */10vh;
    text-align: center;
    font-size: 16px;
    color: rgb(255, 255,255)!important;
    font-weight: 500;
    font-family: "Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif";
    text-transform: uppercase;
}

.nav-link:hover {
    color: #a5bc0d!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: rgb(29, 96, 70);
    animation-duration: 0.6s;
    animation-name: slidein;
    transition: all 0.6s linear;
}

.dropdown-item:hover{
    background-color:/*  #20c99638 */#12896577;
   /*  border-bottom: 2px solid #20c9968d; */
    height: 35px;
}
.box:hover .item-border {
    display: block;
    width: 90px;
    height: 3px;
    transition: all 0.6s linear;
}

.header {
    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: 40%;
    left:10%;
    opacity: 1;
    color: rgb(15, 17, 16);
    z-index: -1;
}

.header .bk-color{
    width: 100%;
    height: 100%;
    background-color: rgb(22, 98, 22);;
    opacity:0.4;
}
@keyframes slidein {
    from {
      width: 0;
    }

    to {
    width: 90px;
   }
  }
