/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 9 abr 2024, 10:48:44
    Author     : USUARIO
*/

header {
    background: #eaebef;
/*    height: 60px;*/
    position: relative;
    width: 100%;
}

#logo {
    float: left;
    padding: 6px 20px;
    width: auto;
    height: 60px;

    a {
        display: block;
        text-decoration: none;
        text-align: center;
        color: #fff;
        font-weight: bold;
        line-height: 44px;
        text-transform: uppercase;
    }
}

#menu {
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 99 !important;

    ul {
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 14px;
    }

    li {
        display: block;
        background: white;
        text-transform: uppercase;
        text-align: left;
        border-bottom: 1px solid silver;

        a {
            display: block;
            color: black;
            text-decoration: none;
            line-height: 30px;
            padding: 0 26px;
            font-family: 'GT Eesti' !important;

            &:active,
                &:focus   {
                color: #e51225;
            }
        }
    }

    .open-menu {
        box-shadow: 0 1px 2px rgba(0,0,0,.5);
        max-height: 400px;
        transition: max-height .4s ease;
    }
}

#nav-mobile {
    background: transparent;
    border: 0;
    cursor: pointer;
    float: right;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: -60px;
    opacity: 0.6;

    &.nav-open {
        opacity: 1;
    }

    span {
        display: block;
        width: 60%;
        margin: 4px auto;
        height: 4px;
        background: #fff
    }
}

.second-header{ 
    height: 60px !important;
}
@media only screen and (min-width: 768px) {
  #nav-mobile{ display: none; }
  .main-header{ display: none ; }
  #menu {
    width: auto;
    float: right;
    top: 0;
    position: relative;

    .open-menu {
      box-shadow: none;
    }

    ul {
      max-height: inherit;
    }

    li {
      float: left;
      border: 0;
      background: transparent;

      a {
        display: block;
        color: #fff;
        padding: 0 26px;

        &:hover {
          color: #ffc700;
          background: #151a1e;
        }
      }
    }
  }
}