:root{
    --url-icon-bars-black:url("../media/bars-black.svg");
}

#navbar{
    background-color: white;
    width: 100%;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    position: fixed;
    z-index: 1;
}

#top-fixer{
  height: 130px;
}

#main-nav-container{
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #ededed;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

#nav-logo-area{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: fit-content;
    margin-left: 50px;
    height: 70px;
}

#nav-logo-area img{
    height: 35px;
}

#nav-logo-area h1{
    padding-left: 10px;
}

#sec-nav-container{
    height: 60px;
    width: 100%;
    border-bottom: 1px solid #ededed;
}

#sec-nav-container ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: fit-content;
    list-style: none;
    margin: 0;
}

#sec-nav-container ul li{
    text-decoration-line: none;
    height: 60px;
    font-size: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#sec-nav-container ul li a{
    text-decoration-line: none;
    position: relative;
    padding: 5px 0px;
}

#sec-nav-container ul li a::before{
    content: "";
    position: absolute;
    height: 3px;
    width: 0px;
    border-radius: 1rem;
    background: white;
    bottom: 0;
    transition: all 0.4s ease;
}

#sec-nav-container ul li a:hover::before{
    width: 100%;
    background: var(--main-color);
}

#mobile-menu-btn-area{
    margin-right: 50px;
    box-sizing: border-box;
    z-index: 10;
}

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

.dropbtn:hover{
  color: var(--color-text-hover) !important;
}

.mobile-menu-btn{
  width: 100% !important;
  text-align: left;
}
  
.dropdown-content{
  display: none;
  position: absolute;
  background-color: white;
  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: 20px !important;
    transition: all .3s;
    text-decoration: none;
    display: block;
  }

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

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

   #img-mobile-menu-btn{
    content: var(--url-icon-bars-black);
    src: var(--url-icon-bars-black); 
  }


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

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

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

}

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

@media only screen and (max-width:992px) {
    #main-nav-container {
        border-bottom: none;
    }
    #mobile-menu-btn{
        display: block;
    }
    #sec-nav-container{
        display: none;
    }
    .dropdown-content{
        position: fixed;
        overflow: auto;
        top: 90px;
        left: 0;
        width: 100%;
    }
    #top-fixer{
      height: 90px;
    }
}

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

}

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