      .navbarRegular{
        font-family: 'CreatoDisplay_Regular', sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size:14px;
        line-height:14px;
        letter-spacing: 0.04em;
      }
      
      
      .navbar{
        display:flex;
        width:100%;
        height:93px;
        padding:19px 109px 19px 124px;
        justify-content:space-between;
        background-color:#232324;
        align-items:center;
        position:fixed;
        top:0;
        overflow-x: hidden;
      }
      
      .navbarLogo{
        display:flex;
        background-image: url("./imgs/inicio/navbar/navbarLogo.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /*background-color:black;*/
        width:290px;
        height:33px;
        flex-shrink:0;
        /*border: 2px solid orange;*/
      }
      
      .navbarMenu{
        display:flex;
        width:fit-content;
        gap:10px;
        /*background-color:green;*/
        align-items:center;
        overflow-x: hidden;
      }
      
      .navbarSeccion{
        display:flex;
        flex-direction:column;
        justify-content:space-between;
      }
      
      .navbarSeccion a{
        text-decoration: none;
        cursor: pointer;
        outline: none; 
        padding: 12px 25px 11px 25px;
        /*background-color:pink;*/
        color:white;
      }
      

       .navbarSeccion.navbarContacto a{
        text-decoration: none;
        cursor: pointer;
        outline: none; 
        padding: 12px 20px;
        background-color:#48484a;
        color:white;
        border-radius:6px;
        margin-left: 8px;
      }

       .navbarSeccion.navbarPoliza a{
        text-decoration: none;
        cursor: pointer;
        outline: none; 
        padding: 12px 20px;
        background-color:#a98625;
        color:white;
        border-radius:6px;
      }

     .navbarSeccion.navbarSeccion.navbarPoliza a:hover{
        background-color:#bc9430 ;
      }

      .navbarSeccion.navbarContacto a:hover{
        background-color:#626265 ;
      }
      
      .navbarLinea{
        width:100%;
        height:2px;
        background-color:#C29725;
        flex-shrink:0;
      }

       .navbarDesplegable{
          display: none;
        }

        .navbarLargo{
          display:flex;
        }

        .navbarResponsive{
          display: flex;
          gap:14px;
          align-items: center;
          color: white;
        }

        .navbarHamburguesa{
          all: unset;
          cursor: pointer;
          width: 22px;
          height: 16px;
          /*background-color: greenyellow;*/
          background-image: url("./imgs/inicio/navbar/hamburguesa.svg");
          background-position: center;
          background-size: cover;
          background-repeat: no-repeat;
        }

        .menuResponsive{
          display: flex;
          background-color: #2f2f2f;
          position: fixed;
          width: 100%;
          height: 100vh;
          z-index: 50;
          overflow-x: hidden;
        }
        


        .show{
          display: none;
        }


    @media(max-width:1230px){

        .navbar{
          padding: 0 30px;
        }

    }


      @media(max-width:1000px){

        .navbar{
          padding: 40px;
          overflow-y: hidden;
        }

        .navbarDesplegable{
          display: flex;
        }

        .navbarLargo{
          display: none;
        }

        .navbarMenu{
          flex-direction: column;
          /*background-color: brown;*/
          align-items: center;
          justify-content: center;
          height: 100%;
          gap: 60px;
          padding-top: 80px;
          font-size: 18px;
        }

        .menuResponsive{
          align-items: center;
          justify-content: center;
          
        }

        
        
      }

      @media(max-width:600px){

        .navbar{
          padding: 30px 20px;
          /*background-color: aqua;*/
          overflow-y: hidden;
          height: fit-content;
        }

        .navbarLogo{
          width: calc(290px * 0.75);
          height: calc(33px * 0.75);
          /*background-color: blue;*/          
        }

        .navbarMenu{
          gap: 60px;
          font-size: 15.5px;
        }

      }