nav
{
    position: fixed;
    z-index: 149;
    width: 100%;
    top:0px;
    left:0px;
  }
    nav .wrapper
    {
        position: relative;
        /* max-width: 1300px; */
        padding: 0px 20px;
        height: 110px;
        /* line-height: 70px; */
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(180deg, #001b33 80%, transparent 95%);
        font-family:'Tomorrow';
    
    }
        .wrapper .logo
        {
          padding-bottom:10px;
        }
        .wrapper .nav-links
        {
            display: inline-flex;
            flex-wrap:wrap;
        }
            .nav-links li
            {
                list-style: none;
                margin:0px;
            }
                .nav-links li a
                {
                    color: #f2f2f2;
                    text-decoration: none;
                    font-size: 1.4rem;
                    font-weight: 500;
                    padding: 15px 15px;
                    border-radius: 5px;
                    transition: all 0.3s ease;
                }
                    .nav-links li a:hover
                    {
                        background: #003b73;
                    }
            .nav-links .mobile-item
            {
                display: none;
            }
            .nav-links .drop-menu
            {
                position: absolute;
                background: #590f08;
                width: 180px;
                line-height: 45px;
                top: 70px;
                padding:0px;
                opacity: 0;
                visibility: hidden;
                box-shadow: 0 6px 10px rgba(0,0,0,0.15);
            }
            .nav-links li:hover .drop-menu,
            .nav-links li:hover .mega-box,
            .nav-links li:hover .gureborda,
            .nav-links li:hover .tamborrada,
            .nav-links li:hover .privado
            {
              transition: all 0.3s ease;
                top: 70px;
                opacity: 1;
                visibility: visible;
            }
        .drop-menu li a
        {
            width: calc(100% - 15px);
            display: block;
            font-size:1rem;
            padding: 0 0 0 15px;
            font-weight: 400;
            border-radius: 0px;
        }

        .mega-box,
        .gureborda,
        .tamborrada,
        .privado
        {
            position: absolute;
            left: 0;
            width: calc(100% - 20px);
            margin-top: 5px;
            padding: 0 5px;
            top: 80px;
            opacity: 0;
            visibility: hidden;
        }
            .mega-box .content,
            .gureborda .content,
            .privado .content,
            .tamborrada .content
            {
                background: #003b73;
                border-radius: 5px;
                padding: 10px 5px;
                display: flex;
                width: 100%;
                justify-content: flex-start;
                box-shadow: 0 6px 10px rgba(0,0,0,0.15);
            }

            .mega-box .content .imagenportada,
            .gureborda .content .imagenportada,
            .tamborrada .content .imagenportada,
            .privado .content .imagenportada
            {
                width: calc(15%);
                line-height: 45px;
                padding-top:45px;
                margin-bottom: 20px;
            }

                .content .imagenportada img
                {
                    width: calc(100% - 20px);
                    /* height: 100%; */
                    /* max-height:150px; */
                    object-fit: cover;
                }
                .content .imagenportada header
                    {
                        color: #fed300;
                        font-size: 1.4rem;
                        font-weight: 500;
                        filter:drop-shadow(2px 2px 2px #000000);
                    }

            .mega-box .content .row,
            .gureborda .content .row,
            .tamborrada .content .row,
            .privado .content .row
            {
                width: calc(28%);
                line-height: 45px;
            }
                    .content .row ul
                    {
                      margin:0px;
                    }

                    .content .row img
                    {
                        width: calc(100% - 40px);
                        height: 100%;
                        max-height:150px;
                        object-fit: cover;
                    }
                    .content .row header
                    {
                        color: #fed300;
                        font-size: 2.4rem;
                        font-family:Cutmark;
                        font-weight: 500;
                        filter:drop-shadow(2px 2px 2px #000000);
                    }
                    .content .row .mega-links
                    {
                        margin-left: 0px;
                        border-left: 1px solid rgba(255,255,255,0.09);
                        padding: 0px;
                    }
                        .row .mega-links li
                        {
                            padding: 0 15px;
                        }
                    .row .mega-links li a
                    {
                        padding: 0px 5px;
                        color: #d9d9d9;
                        font-size: 1rem;
                        display: block;
                    }
                        .row .mega-links li a:hover
                        {
                            color: #f2f2f2;
                            background: #020924;
                            width:calc(100% - 25px);
                            padding-left:15px;
                        }

  .wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 40px;
  }
  
  @media screen and (max-width: 950px) {
    .wrapper .btn
    {
        display: block;
    }
    .wrapper .nav-links
    {
        position: fixed;
        height: 90vh;
        width: 100%;
        max-width: 550px;
        top: -20px;
        left: -110%;
        /* background: #020924; */
        background: url('/css/fondos/menu_20251114_02.png') no-repeat top right #001b33;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
        display: block;
        padding: 50px 0px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar 
    {
      width: 10px;
    }
    ::-webkit-scrollbar-track 
    {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb 
    {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links
    {
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn
    {
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn
    {
      display: block;
    }
    .nav-links li
    {
      margin: 25px 10px;
    }
    .nav-links li a
    {
      padding: 0 20px;
      display: block;
      font-size: 1.4rem;
    }
        .nav-links li a:hover
        {
            background: #020924;
        }
    .nav-links .drop-menu
    {
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: calc(100% - 20px);
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
      background: #020924;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box,
    #showGureBorda:checked ~ .gureborda,
    #showTamborrada:checked ~ .tamborrada,
    #showPrivado:checked ~ .privado
    {
      max-height: 100%;

    }
    .nav-links .desktop-item
    {
      display: none;
    }
    .nav-links .mobile-item
    {
      display: block;
      color: #f2f2f2;
      font-size: 1.8rem;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover
    {
      /* background: #590f08; */
    }
    .drop-menu li{
      margin: 15px 10px;
    }
    .drop-menu li a{
      border-radius: 5px;
      font-size: 18px;
    }
    .mega-box, 
    .gureborda,
    .tamborrada,
    .privado
    {
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      /* padding: 0 20px; */
      max-height: 0px;
      overflow: hidden;
    }
    .mega-box .content,
    .gureborda .content,
    .tamborrada .content,
    .privado .content
    {
      box-shadow: none;
      flex-direction: column;
      /* padding: 20px 20px 0 20px; */
      width: calc(100% - 10px);
      background: #003b73;
      border-radius: 10px;

    }
    .mega-box .content .imagenportada,
    .gureborda .content .imagenportada,
    .tamborrada .content .imagenportada,
    .privado .content .imagenportada
    {
      width: 100%;
      /* margin-bottom: 15px; */
      border-top: 0px solid rgba(255,255,255,0.08);
      padding-top:15px;
    }

    .mega-box .content .row,
    .gureborda .content .row,
    .tamborrada .content .row,
    .privado .content .row
    {
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);

    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2),
    .gureborda .content .row:nth-child(1),
    .gureborda .content .row:nth-child(2),
    .tamborrada .content .row:nth-child(1),
    .tamborrada .content .row:nth-child(2),
    .privado .content .row:nth-child(1),
    .privado .content .row:nth-child(2)
    {
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 5px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .row .mega-links li a
    {
        width:calc(100% - 30px);
        padding:0px 0px;
        font-size: 1rem;
    }
    .content .row header{
      font-size: 2.4rem;
      font-family:Cutmark;
      padding-left:5px;
    }
  }
  nav input{
    display: none;
  }
  
  .body-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
  .body-text div{
    font-size: 45px;
    font-weight: 600;
  }