/* -------------------------------- EFECTO DE SCROLL SUAVEMENTE -------------------------------- */

html {
    scroll-behavior: smooth;
}


/* -------------------------------- BOTON FLOTANTE PARA SUBIR AL INICIO -------------------------------- */

.boton-top {
    background-color: #2b3445;
    padding: .5em 1em;
    border-radius: 5px;
    color: #ffffff !important;
}


/* -------------------------------- MENU DE STICKY -------------------------------- */

.navbar-sticky.navbar-stuck {
    box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgb(55 63 80 / 29%), 0 0.275rem 1.25rem -0.0625rem rgb(182 41 40 / 0%) !important;
}

.navbar-light .nav-item.active .nav-link:not(.disabled)>i,
.navbar-light .nav-item.show .nav-link:not(.disabled)>i,
.navbar-light .nav-item.dropdown .nav-link:focus:not(.disabled)>i,
.navbar-light .nav-item.active .nav-link:not(.disabled),
.navbar-light .nav-item.show .nav-link:not(.disabled),
.navbar-light .nav-item.dropdown .nav-link:focus:not(.disabled) {
    color: #fe696a;
}


/* -------------------------------- MENU DE CATEGORIAS -------------------------------- */

.mega-dropdown-column {
    width: 300px;
    left: -9em
}

.rounded-3 {
    border-radius: .4375rem !important;
}

.fs-base {
    font-size: 12px !important;
    font-weight: 600;
    text-align: center;
    color: #4b566b;
}


/* -------------------------------- HOME -------------------------------- */

.fs-ms {
    font-size: 0.8125rem !important;
}

.product-meta {
    transition: color .25s ease-in-out;
    color: #7d879c !important;
    text-decoration: none !important;
}

.fs-xs {
    font-size: 0.85rem !important;
}

.product-title.fs-sm {
    font-size: 0.885rem !important;
    font-weight: bold;
}

.cat_fs-sm {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}


/* SLIDER */

header .item {
    height: 100vh;
    position: relative;
}

header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

header .item .cover .header-content .line {
    animation: slidein 5s ease-in-out;
}

@keyframes slidein {
    0% {
        margin-left: -800px;
    }
    20% {
        margin-left: -800px;
    }
    35% {
        margin-left: 0px;
    }
    100% {
        margin-left: 0px;
    }
}

header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

header .item.active h2 {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    top: 0;
    left: 0;
    /*animacion*/
    animation: down 1s ease-in-out;
    -webkit-animation: down 1s ease-in-out;
    -moz-animation: down 1s ease-in-out;
    -ms-animation: down 1s ease-in-out;
    -o-animation: down 1s ease-in-out;
}

@keyframes down {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-webkit-keyframes down {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-moz-keyframes down {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-o-keyframes down {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

header .item.active h4 {
    position: relative;
    white-space: nowrap;
    top: 150;
    left: 0;
    /*animacion*/
    animation: up 1s ease-in-out;
    -webkit-animation: up 1s ease-in-out;
    -moz-animation: up 1s ease-in-out;
    -ms-animation: up 1s ease-in-out;
    -o-animation: up 1s ease-in-out;
}

@keyframes up {
    from {
        top: 150px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-webkit-keyframes up {
    from {
        top: 150px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-moz-keyframes up {
    from {
        top: 150px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@-o-keyframes up {
    from {
        top: 150px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}


/* -------------------------------- PAGINA HISTORIA -------------------------------- */

.blog-entry-thumb {
    display: block;
    position: relative;
    border-radius: .4375rem;
    overflow: hidden;
}

.linea_artc {
    background-color: #e3e9ef;
    width: 65%;
}


/* -------------------------------- PAGINA PRODUCTO -------------------------------- */

.carousel-control-prev-icon-prod {
    background-image: url('../chevron-left.svg');
    width: 40px;
    height: 40px;
}

.carousel-control-next-icon-prod {
    background-image: url('../chevron-right.svg');
    width: 40px;
    height: 40px;
}

.carousel-control-prev {
    padding-right: 8em;
    opacity: 0;
}

.carousel-control-next {
    padding-left: 8em;
    opacity: 0;
}

.modal-backdrop {
    opacity: 0 !important;
    display: none !important;
}

.modal-extra {
    max-width: 1024px;
}

.fondo-modal {
    background: rgba(77, 77, 77, 0.85);
}

.content-mio {
    border: none;
    background-color: #ffffff00 !important;
    color: white;
    text-align: center;
    box-shadow: none;
}

.body-mio {
    padding: 1em;
}

.img-modal {
    width: -webkit-fill-available;
}

.close:hover {
    opacity: 1;
    color: #ff9596;
}


/* --------------------------- SOLICITUD DE PRODUCTO --------------------------- */

.sub-form-prod {
    color: #2b3445 !important;
    font-size: 16px;
    font-weight: 6 00;
}


/* ------------------------------ IDIOMA EN MENU ------------------------------ */

.idioma {
    margin-top: .8em;
    margin-left: 10em;
}

.idioma-cuba {
    margin-top: .8em;
    margin-left: 22em;
}


/* -------------------------------- RESPONSIVE -------------------------------- */

@media screen and (max-width: 991px) {
    /* ----- MENU HAMBURQUESA ----- */
    .navbar-light .nav-item {
        background-color: #f6f9fc;
    }
    .navbar-nav .nav-item {
        margin-bottom: .667rem;
        border-radius: .3125rem;
    }
    .navbar-light .navbar-nav .nav-link {
        color: #4b566b;
    }
    .navbar-nav .nav-link {
        padding: .667rem 1.125rem;
        font-weight: 500;
    }
    .navbar-light .nav-item:hover .nav-link:not(.disabled),
    .navbar-light .nav-item:hover .nav-link:not(.disabled)>i {
        color: #fe696a;
    }
    .catg {
        background-color: #f6f9fc;
        border: none;
        padding: 0 0 .5rem 0;
    }
    .catg a {
        color: #4b566b;
    }
    .idioma,
    .idioma-cuba {
        margin-left: 0em;
    }
    /* PRODUCTOS DESTACADOS HOME */
    .product-card .card-body {
        text-align: center;
    }
}

@media screen and (max-width: 991px) and (min-width: 736px) {
    .contenedor_menu {
        padding: 1em 1em 0em 1em !important;
    }
}

@media screen and (max-width: 732px) {
    /* ----- MENU HAMBURQUESA ----- */
    .contenedor_menu {
        padding: 1em 1em 0 1em !important;
    }
    /* ----- SLIDER ----- */
    header .item.active h2 {
        white-space: normal;
    }
    header .item.active h4 {
        white-space: normal;
    }
}