
body,a{
    font-family: Roboto;
}

body, p  {
    font-size: 16px;
    font-family: "Cabin Condensed";
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.7px;
}

.btn-flotante {
    font-size: 16px;
    /* Cambiar el tamaño de la tipografia */
    text-transform: uppercase;
    /* Texto en mayusculas */
    font-weight: bold;
    /* Fuente en negrita o bold */
    color: #ffffff;
    /* Color del texto */
    border-radius: 5px;
    /* Borde del boton */
    letter-spacing: 2px;
    /* Espacio entre letras */

    /* Color de fondo */
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    /* Relleno del boton */
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    display:none;
}

.btn-flotante:hover {

    /* Color de fondo al pasar el cursor */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
}
.mostrar {
       transform: translateX(0)!important;
}


 .grid-containeropen{
    grid-template-columns: 360px 1fr !important;
    /*grid-template-areas:"sidenav header" "sidenav main" "sidenav footer"!important;*/
     grid-template-areas:  "sidenav main" "sidenav footer"!important;
}

@media only screen and (max-width: 768px) {
    .btn-flotante {
        font-size: 14px;
        padding: 12px 20px;
        display:block;
    }

}

@media (min-width: 992px) {
    .navbar,
    .navbar-collapse {
        flex-direction: column;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
    .navbar {
        width: 28%;
        height: 100vh;
        align-items: flex-start;
    }
    .navbar-brand {
        margin-left: 0.5em;
        padding-bottom: 0;

    }
    form input {
        margin-bottom: 0.7em;
    }
}

.bg-dark2 {
    background-color: #232323;
}

.nav-item-style {
    border-bottom: 1px solid #464646;
}






.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    /*grid-template-rows: 60px 1fr 60px;
    grid-template-areas: "header" "main" "footer";*/
    grid-template-rows:  1fr 60px;
    grid-template-areas:   "main" "footer";
    height: 100vh;
}

@media only screen and (min-width: 768px) {
    .grid-container {
        grid-template-columns: 360px 1fr;
       /* grid-template-areas: "sidenav header" "sidenav main" "sidenav footer";*/
       grid-template-areas:   "sidenav main" "sidenav footer";
    }
}

.sidenav {
    grid-area: sidenav;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 360px;
    padding: 0 0.8rem;
    position: fixed;
    overflow-y: auto;
    z-index: 4;
    transform: translateX(-360px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
    transition: all 0.1s linear;
}

.sidenav.opened {
    transform: translateX(0);
}

.sidenav__open-icon:hover {
    background-color: #ececec;
}

.sidenav__close-icon {
    position: absolute;
    visibility: visible;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #e0e0e0;
    display: grid;
    place-items: center;
    border: solid 1px transparent;
    border-radius: 50%;
    background-color: transparent;
}

@media only screen and (min-width: 768px) {
    .sidenav {
        transform: translateX(0);
    }
    .sidenav__close-icon {
        visibility: hidden;
    }
}


ul.sidenav__list {
    padding: 0;
    margin-top: 1rem;
    list-style-type: none;
    max-width: 340px;
    overflow-y: auto;
}

li.sidenav__list-item {
    margin-bottom: 4px;
    background-color: #ddd;
    border: solid 1px transparent;
    border-radius: 6px;
    border-bottom: solid 4px #d2d2d2;
}

li.sidenav__list-item>a {
    width: 100%;
    padding: 0.7rem 1rem;
    display: block;
    position: relative;
    color: #333;
    text-decoration: none;
}

li.sidenav__list-item>a:hover,
li.sidenav__sublist-item>a:hover {
    background-color: #d2d2d2;
    cursor: pointer;
}

.sidenav__icon {
    width: 40px;
    padding: 0 2px;
    display: inline-block;
    margin-right: 0.4rem;
}

li.sidenav__list-item>a .caret {
    position: absolute;
    right: 16px;
    top: auto;
}

li.sidenav__list-item>a .caret>i {
    font-size: 12px;
}

ul.sidenav__sublist {
    padding: 0;
    list-style-type: none;
}

li.sidenav__sublist-item:first-child {
    margin: 0.5rem 0 0;
}

li.sidenav__sublist-item>a {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 80%;
    display: block;
    position: relative;
    color: #333;
    border: solid 1px transparent;
    border-radius: 4px;
}

[role="nav-menu"],
[role="nav-dropdown-item"] {
    cursor: pointer !important;
}

[role="nav-dropdown"] {
    cursor: default !important;
}

/*
.header  {
    grid-area: header;
    text-align: center;
}
*/
main {
    grid-area: main;
}

footer {
    grid-area: footer;
    text-align: center;
}

.grve-container {
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

.grve-container:before,
.grve-container:after {
    display: table;
    content: " ";
}



.grve-title {
    color: #c2c2c2;
}

.grve-description {
    color: #edd17d;
}

.grve-content.grve-align-center-center,
.grve-content.grve-align-center-top,
.grve-content.grve-align-center-bottom {
    text-align: center;
}

.grve-content .grve-graphic img {
    max-height: 250px;
}

.labelitem {
    font-family: Roboto;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: white;
    padding: 1rem;
    color: #656565;
}
.labelitem:hover{
    color:#fff
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.grve-description {
    font-family: "Cabin Condensed";
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    text-transform: none;
    line-height: 36px;
    letter-spacing: 0.7px;
}

.grve-bg-white, .grve-bg-hover-white:hover, a.grve-bg-hover-white:hover {
    background-color: #ffffff;
    color: #bababa;
}
.grve-btn.grve-btn-small {
    font-size: 11px !important;
}
.grve-align-center .grve-btn {
    margin-left: 15px;
    margin-right: 15px;
}
.grve-btn.grve-btn-small {
    padding: 0.818em 1.636em;
}
a:hover {
    color: #000000;
}
a.grve-btn, #grve-theme-wrapper button:not(.grve-custom-btn),
#grve-theme-wrapper button[type="button"]:not(.grve-custom-btn),
#grve-theme-wrapper button[type="submit"]:not(.grve-custom-btn),
#grve-theme-wrapper button[type="reset"]:not(.grve-custom-btn),
#grve-theme-wrapper input[type="submit"]:not(.grve-custom-btn) {
    display: inline-block;
    padding: 1.154em 1.538em;
    position: relative;
    -webkit-border-radius: 0;
    border-radius: 0;
    z-index: 2;
    vertical-align: top;
    margin-top: 3px;
    margin-bottom: 3px;
    outline: 0;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    box-sizing: border-box;
    word-wrap: break-word;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    -webkit-transition: color .5s ease, background-color .5s ease, border-color .5s ease;
    -moz-transition: color .5s ease, background-color .5s ease, border-color .5s ease;
    -o-transition: color .5s ease, background-color .5s ease, border-color .5s ease;
    -ms-transition: color .5s ease, background-color .5s ease, border-color .5s ease;
    transition: color .5s ease, background-color .5s ease, border-color .5s ease;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
a:hover, a:focus, a:visited {
    text-decoration: none;
}
.botonccast {
    background-color: #aa731e;
}
.grve-bg-orange, .grve-bg-hover-orange:hover, a.grve-bg-hover-orange:hover {
    background-color: #fd7f24;
    color: #ffffff;
}
.grve-link-text, .grve-btn, input[type='submit'], input[type='reset'], button:not(.mfp-arrow), #grve-header .grve-shoppin-cart-content .total, #grve-header .grve-shoppin-cart-content .button, #grve-main-content .vc_tta.vc_general .vc_tta-tab > a, .vc_tta.vc_general .vc_tta-panel-title, #cancel-comment-reply-link {
     font-weight: 700 !important;
    font-style: normal;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.grve-round {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}
input[type="submit"], .grve-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
}
a {
    color: #f1b144;
}
a {
    text-decoration: none;
    outline: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.grve-align-center {
    text-align: center;
}

 .grve-header-side .grve-header-elements {
    display: block;
    overflow: hidden;
    border-top: 1px solid;
    padding: 15px 0;
}
 .grve-header-side li.grve-header-element {
    height: 25px;
    line-height: 25px;
}
 .grve-header-side .grve-header-element {
    float: none;
    display: inline-block;
}
.grve-header-element {
    float: left;
    font-size: 25;
}

  .grve-title {
    font-family: Roboto;
    font-weight: 700;
    font-style: normal;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 68px;
    letter-spacing: 0px;
}
  .grve-description {
    font-family: "Cabin Condensed";
    font-weight: normal;
    font-style: normal;
    font-size: 26px;
    text-transform: none;
    line-height: 32px;
    letter-spacing: 0.7px;
}
.grve-text-light, #grve-content .grve-text-light, a.grve-text-light, .grve-text-light-hover:hover, a:hover .grve-text-light-hover {
      color: #ffffff;
}
.grve-text-primary-1{
    color: #f1b144;
 }
 h3, .grve-h3 {
    font-size: 30px;
    line-height: 33px;
    letter-spacing: 0px;
}
h1, .grve-h1, #grve-theme-wrapper .grve-modal .grve-search input[type='text'], .grve-dropcap span, h2, .grve-h2, h3, .grve-h3, h4, .grve-h4, h5, .grve-h5, h6, .grve-h6 {
    font-family: Roboto;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}



#okapi-wasb-button {
    bottom: 15px;
    right: 15px;
}
#okapi-wasb-button {
    position: fixed;
    z-index: 9999999;
}
#okapi-wasb-icon {
    opacity: 0.95;
    width: 65px;
    height: 65px;
}
.menu{
    padding-top:10px;
    padding-bottom: 10px;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    /*padding: 0;*/
    overflow: hidden;
    /*background-color: #333333;*/
  }

   .menu li {
    float: left;
  }

  .menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
  }

  .menu li a:hover {
    background-color: #111111;
  }


  .my-animated {

    animation: pulse; /* backInUp pulse bounce  referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
  }
  .my-animated-up:hover {
    animation: flip;
  }
  .my-animated-up{

    animation:  backInUp; /* backInUp pulse bounce  referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
  }


 .row-height{
    height: 600px;
    min-height: 320px;
 }

 .row-height-8{
    height: 800px;
    min-height: 320px;
 }
 .grve-bg-grey, .grve-bg-hover-grey:hover, a.grve-bg-hover-grey:hover {
    background-color: #bababa;
    color: #ffffff;
}
 .grve-media-box-icon i {
    font-size: 26px;
    line-height: inherit;
    width: inherit;
    height: inherit;
}

 .grve-media-box-icon {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    top: -15px;
    right: -15px;
    /*background-color: #333;*/
    z-index: 10;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/* ============================================================================= */

figure {

	background: #fff;
	overflow: hidden;
}
 /* Zoom In #1 */
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

h2, .grve-h2 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

 


 
