/*
*
|  Page Name       : navigation.css
|  Description     : css for navigation
|  Created by      : Kathlynn
|  Date Created    : November 2018
|  Last Update by  : Kathlynn Gallardo
|  Last update     : November 2018
*
*/

.-nav-container {
  overflow: hidden;
  padding: 10px 80px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.-nav-container .-link {
  float: left;
  text-align: center;
  text-decoration: none;
  font-size: 14px; 
  line-height: 25px;
  border-radius: 4px;
  font-weight:400;
  white-space: nowrap;
}
.-nav-container .-link:hover {
  cursor: pointer;
}
.-nav-container .-nav-fig {
  font-size: 35px;
  font-weight: bold;
  transition: 0.4s;
  height: auto;
  width: 40px;
}
.-nav-container .-link.active {
  color: white;
}
.-nav-select{
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.-img-logo{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.-nav-select .-link{
  padding: 5px 30px;
  color:#ffffff;
}
.-nav-select.active .-link{
  color:#000000;
}
.-mobile-view-nav{
  display: none;
}
/******MOBILE VIEW******/
@media screen and (max-width: 769px){
  .-nav-container {
    display: none !important;
  } 
  #navbar {
    padding: 20px 10px !important;
  }
  #navbar a {
    float: none;
    display: block;
    text-align: left;
  }
  #navbar-right {
    float: none;
  }
  .-mobile-view-nav{
    display: block;
  }
  .-navbar-brand{
    padding: 3px 15px;
  }
  .-navbar-brand .-img{
    width: 100%;
    height: 100%;
  }
  .-navbar-brand .-logo{
    width: 30px;
    height: auto;
  }
  .navbar-default{
    background-color: #ffffff;
    border-color: transparent;
  }
  .navbar-default .navbar-toggle{
    border-color: transparent;
    background-color: #ffffff;
  }
  .navbar-default .navbar-toggle:focus, 
  .navbar-default .navbar-toggle:hover{
    background-color: #ffffff;
  }
  .navbar-default .navbar-nav>.active>a, 
  .navbar-default .navbar-nav>.active>a:focus, 
  .navbar-default .navbar-nav>.active>a:hover{
    color: #707070;
    background-color: #ffffff;
  }
  .navbar-toggle.collapsed{
    background-color: #ffffff !important;
  }
  .-mobile-view-nav .nav>li>a {
    text-align: center;
  }
  .-mobilefont{
    font-size: 16px;
  }
}