/* navbar small and navbar large custom navigation bars */
nav{
    min-height: 100px;
    display: inline-block;
    width: 100%;
    background-color: #30529c !important;
    color: white !important;
}
#navbar-small{
    display: none;
    min-height: 55px !important;
}
#navbar-small .btn{
    width: 100% !important;
}
#navbar-small .navbar-brand i{
    font-size: 55px;
    color: yellow;
}
.nav-link{
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}
.dropdown-menu{
    padding-top: 0px;
    padding-bottom: 0px;
}
.dropdown-menu a{
    background-color: #29488a;
    color: white;
}
#navbar-small p{
    width: 100% !important;
    font-size: 13px !important;
    text-align: center;
}
#navbar-small p span{
    margin-left: 10px;
    margin-right: 10px;
}
.navbar-toggler{
    float: right;
}
.navbar-toggler:focus, .navbar-toggler:active{
    outline: none !important;
}

.nav-item{
    margin-right: 55px;
    list-style-type: none;
}
nav a.btn{
    background-color: #cc4137 !important;
}
.nav{
    margin-top: 35px;
}
.navbar-brand img{
    height: auto;
    width: 55px;
    margin-left: 60px;
    margin-top: 15px;
}
.navbar-brand a i{
    font-size: 65px;
    color: yellow;
    text-shadow: 2px 2px 4px black;
    margin-right: 17px;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.nav-contact{
    display: block;
    background: #223c73;
    color: white !important;
    width: 100%;
    padding-right: 20px;
    margin-bottom: 0px;
    min-height: 50px;
    border-bottom: solid 1px white;
}
.nav-contact p{
    font-size: 25px !important;
    padding-top: 10px;
}
.nav-contact p i{
    margin-left: 35px;
}
.dropbtn{
    color: white !important;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 2px 2px 5px black;
}
.dropdown-content{
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  padding-top: 10px;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}    
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color: #30529c;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/* media queries */
@media screen and (max-width: 600px){
    .dropbtn{
        font-size: 15px;
    }
    #navbar-small .navbar-brand i{
        font-size: 40px;
    }
    
    #navbar-small p{
        font-size: 10px !important;
    }
}
@media screen and (max-width: 990px){
    .nav-contact{
        display: none;
    }

    #navbar-large{
        display: none;
    }
    #navbar-small{
        display: block;
    }
}
@media screen and (max-width: 1200px){
    .nav-contact p{
        font-size: 20px !important;
    }
}
@media screen and (max-width: 1500px){
    .dropbtn{
        font-size: 17px;
    }
    .dropdown-content{
        min-width: 200px;
    }
}



