#navbarbodyfixertop{
    padding-top: 120px;
  }

#main-navbar{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px;
    min-height: 120px;
    position: fixed;
    width: 100%;
    display: grid;
    justify-items: center;
    z-index: 10;
}

#mini-top{
    display: flex;
    align-items: center;
    background-color: #222222;
    justify-content: center;
    width: 100%;
}

#mini-top-in{
    display: flex;
    height: 40px;
    width: 70%;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

#mini-top-right{
    display: flex;
    margin-right: 15px;
}
#mini-top-left{
    display: flex;
    margin-left: 15px;
}

.minitopitem{
    color: white;
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
}

.minitopitem img{
    height: 20px;
    margin-right: 15px;
}

.minitopitem a{
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.social-icon-fixer{
    line-height: 20px;
    font-size: 20px;
}

#main-navbar-container{
    display: flex;
    position: relative;
    width: 70%;
    height: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: center;
}

#left-navbar-space{
    width: 80%;
    width: 80%;
    display: flex;
    align-items: center;
}

#right-navbar-space{
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#navlogo{
    max-height: 80px;
}

#nav-bar-left-links{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    margin: 0;
}

#nav-bar-left-links li{
    list-style-type: none;
    margin-left: 25px;
}

#nav-bar-left-links li:first-of-type{
    margin-left: 0px;
}

#nav-bar-left-links li a{
    text-decoration: none;
    font-size: 18px;
    color: black;
    transition: all .3s;
}

#nav-bar-left-links li a:hover {
    color:#4DB6AC;
}

#right-nav-buttons-area{
    display: inline-flex;
    height: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

#mobile-menu-btn, .dropbtn, .mobile-menu-btn{
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 25px;
}

.mobile-menu-btn{
  width: 100% !important;
  font-family: Poppins, Helvetica, "sans-serif";
  text-align: left;
}
  
  .dropdown-content{
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px;
    z-index: 100;
    text-align: left;
  }
  .dropdown-content-mobile{
    display: none;
    position: absolute;
    background-color: #ECEFF1;
    width: 100%;
    box-shadow: none;
    z-index: 100;
    text-align: left;
    margin-top: 10px;
  }

  .dropdown-content-mobile a{
    background-color: #ECEFF1;
  }
  
  .dropdown-content a, .dropdown-content button{
    color: black;
    padding: 12px 16px;
    font-size: 16px !important;
    text-decoration: none;
    display: block;
  }

  .icon-nav-btn, #img-mobile-menu-btn{
    height: 25px;
    width: 25px;
    padding-top: 5px;
  }

  #mobile-menu-btn{
    display: none;
  }

  #dropdown-content-mobile-menu{
    height: 100%;
  }

  .dropdown-menu-btn-mobile{
    display: flex !important;
    align-items: center;
  }

@media only screen and (max-width:1500px) {
  #main-navbar-container{
    width: 80%;
  }
}

@media only screen and (max-width:1200px) {
    
}

@media only screen and (max-width:992px) {
  #main-navbar-container{
    width: 90%;
  }
  #mobile-menu-btn{
    display: block;
    z-index: 1000;
    position: relative;
  }
  #nav-bar-left-links{
    display: none;
    
  }
  .dropdown-content{
    position: fixed;
    overflow: auto;
    top: 40px;
    left: 0;
    width: 100%;
    padding-top: 50px;
  }
}

@media only screen and (max-width:768px) {
    #mini-top-in{
        width: 100%;
    }
        
    .minitopitem{
        font-size: 13px;
        padding-top: 2px;
    }

    .minitopitem img {
      margin-right: 5px;
  }
  .minitopitem a {
    margin-right: 5px;
}
}

@media only screen and (max-width:576px) {
    
}