@charset "utf-8";
/* CSS Document */
:root {
    --primary: #0000FF;
    --secondary: #141414;
    --title-color: #0000FF;
    --subtitle-color: #141414;
    --text-color: #141414;
    --input-placeholder-color: #ADADAD;
    --input-text-color: #888888;
    --checkbox-color: #0000FF;
    --label-color: #141414;
    --label-color-hover: #0000FF;
    --red: #FF0000;
}

/* karla-300 - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/karla-v33-latin-300.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-300.ttf') format('truetype'); 
}
/* karla-regular - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/karla-v33-latin-regular.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-regular.ttf') format('truetype'); 
}
/* karla-500 - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/karla-v33-latin-500.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-500.ttf') format('truetype'); 
}
/* karla-600 - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/karla-v33-latin-600.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-600.ttf') format('truetype'); 
}
/* karla-700 - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/karla-v33-latin-700.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-700.ttf') format('truetype'); 
}
/* karla-800 - latin */
@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/karla-v33-latin-800.woff2') format('woff2'), 
    url('../fonts/karla-v33-latin-800.ttf') format('truetype'); 
}

/* teko-regular - latin */
@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/teko-v23-latin-regular.woff2') format('woff2'),
    url('../fonts/teko-v23-latin-regular.ttf') format('truetype');
}

/* teko-600 - latin */
@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/teko-v23-latin-600.woff2') format('woff2'),
    url('../fonts/teko-v23-latin-600.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../gestina/fonts/Roboto-Regular.eot');
    src: url('../gestina/fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../gestina/fonts/Roboto-Regular.woff2') format('woff2'),
    url('../gestina/fonts/Roboto-Regular.woff') format('woff'),
    url('../gestina/fonts/Roboto-Regular.ttf') format('truetype'),
    url('../gestina/fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*FIN FONT-FACE*/
p {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translate(-125%, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

html {
    height: 100%;
    scroll-padding-top: 100px;
}

html.no-scroll {
    overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: var(--primary);
}

::selection {
    color: #FFF;
    background: var(--primary);
}

/* CKEDITOR GESTINA */
.cke_editable {
    font-family: RobotoRegular !important;
    font-weight: 300 !important;
    overflow: auto;
    font-size: 16px;
}

/* FIX margin listas*/
.cke_editable {
    overflow-y: auto;
}

.cke_editable, .cke_editable li {
    margin: 20px;
}

.cke_editable strong {
    font-weight: bold;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    font-family: "Karla", serif;
    font-weight: 300;
    padding: 0;
    font-size: 16px;
    color: var(--text-color);
    line-height: normal;
    /*overflow: hidden;*/
    padding-right: 0 !important;
}

body:not(.cke_editable) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wow {
    visibility: hidden;
}

/*AUTOCOMPLETE*/
.ui-autocomplete {
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    width: 250px;
    z-index: 9900000999;
    background-color: white !important;
    border: 1px solid #DCDCDC !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.ui-menu .ui-menu-item-wrapper {
    font-size: 1rem;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border-color: #ECECEC;
    background: #ECECEC;
    font-weight: normal;
    color: #666666 !important;
    margin: 0 !important;
    border: none !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    position: relative;
    padding: 11px 20px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.ui-menu .ui-menu-item {
    display: block;
}

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 250px;
}

.ui-autocomplete-loading {
    background: white url("https://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif") center right 10px no-repeat !important;
}

/*FIN AUTOCOMPLETE*/

/* INICIO COMUNES */
form {
    overflow: hidden
}

.contenido > .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto
}

.owl-nav.disabled {
    display: none !important
}

.owl-dots.disabled {
    display: none !important
}

.owl-carousel {
    touch-action: manipulation;
}

.owl-carousel.owl-center .owl-stage {
    margin-left: auto;
    margin-right: auto;
}

.owl-carousel.owl-custom-nav.owl-loaded {
    display: flex;
    /*flex-direction: column-reverse;*/
    flex-direction: column;
}

.owl-custom-nav .owl-nav:not(.disabled),
.owl-custom-nav2 .owl-nav:not(.disabled) {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    position: relative;
    z-index: 11;
}

.current_section_producto .owl-custom-nav .owl-nav:not(.disabled) {
    margin-top: -40px;
}

.owl-custom-nav .owl-nav:not(.disabled) > div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    background-color: white;
    transition: all .3s;
}

.owl-custom-nav .owl-nav:not(.disabled) > div:hover {
    background-color: var(--primary);
}

.owl-custom-nav2 .owl-nav:not(.disabled) {
    margin-top: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.owl-custom-nav .owl-nav div path,
.owl-custom-nav2 .owl-nav div path {
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.owl-custom-nav .owl-nav div:hover path,
.owl-custom-nav2 .owl-nav div:hover path {
    fill: #FFF;
}

.owl-shadow-margin .owl-stage-outer {
    margin: -40px -26px;
    padding: 40px 26px;
}

.owl-shadow-margin2 .owl-stage-outer {
    margin: -15px;
    padding: 15px;
}

.owl-shadow .owl-stage-outer {
    overflow: visible;
}

.owl-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: all 150ms linear;
}

.owl-shadow .owl-item.active {
    transition: all 350ms linear;
    opacity: 1;
    visibility: visible;
}

.dimbox-container path {
    fill: #FFF;
}

.dimbox-container *:active, .dimbox-container *:focus, .dimbox-container *:focus-visible {
    outline: none;
}

.dimbox-container [class^=dimbox-btn] {
    opacity: 1;
}

.trans-04 {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.subTituloSeccion {
    word-wrap: break-word;

    color: var(--subtitle-color);

    margin-bottom: 55px;

    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.subTituloSeccion a, .tituloSeccion a {
    color: currentColor;
    transition: all .3s ease-in-out;
}

.subTituloSeccion a:hover, .tituloSeccion a:hover {
    color: var(--primary);
}

.tituloSeccion {
    color: var(--title-color);
    font-family: Teko, sans-serif;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
}

/*.tituloSeccion:not(.text-start)::before {
    content: "--: ";
}

.tituloSeccion::after {
    content: " :--";
}*/

.titulos .tituloSeccion {
    margin-bottom: 0;
}

a.tituloSeccion, .tituloSeccion a {
    color: var(--title-color);
}

a.tituloSeccion:hover, .tituloSeccion a:hover {
    color: var(--title-color);
}

.subTituloSeccion.white, .textoSeccion.white, .subTituloSeccion.white a, .subTituloSeccion.white a:hover, .tituloSeccion.white, .white, .white a, .form-check label .white a {
    color: white;
}

.title-word{display: inline-block;}

.title-letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(20px);
}
.title-animation{overflow: hidden}
.title-animation.animate .title-letter {
    animation: letterIn 0.6s ease forwards;
}

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.textoSeccion {
    color: var(--text-color);
    word-wrap: break-word;

    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.textoSeccion2 {
    font-size: 25px;
    line-height: 46px;
}

.textoSeccion3 {
    font-size: 16px;
    line-height: 25px;
}

.textoSeccion table {
    /*width: 100%;*/
    max-width: 100%;
    /*text-align: center;*/
    color: var(--text-color);
    margin-bottom: 0 !important;

    border-collapse: collapse;
    border-color: var(--primary);
    /*border-style: hidden; !* hide standard table (collapsed) border *!*/
}

.textoSeccion table td, .textoSeccion table th {
    border-top: 1px solid;
    border-color: var(--primary);
    padding: 8px 10px;
}

.lh-156 {
    line-height: 156%;
}

.textoSeccion a:not(.btnStandard) {
    color: var(--secondary);
    text-decoration: underline;
}

.textoSeccion.white a:not(.btnStandard) {
    color: #FFF;
    text-decoration: underline;
}

.textoSeccion a:not(.btnStandard):hover {
    text-decoration: underline;
}

.textoSeccion strong, .textoSeccion b {
    font-weight: 700;
}

.textoSeccion ul, .textoSeccion ol {
    margin-left: 45px;
    margin-top: 10px;
}

.btnStandard {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;

    color: var(--secondary);

    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;

    background: #FFF;

    border-radius: 50px;
    border: 1px solid var(--secondary);

    text-decoration: none !important;
    text-align: center;

    -webkit-transition: all .5s ease-in-out !important;
    transition: all .5s ease-in-out !important;

    padding: 9px 10px 9px 24px;

    overflow: hidden;
    outline: none;
}

.btnStandard::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 40px;
    -ms-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -moz-transition: all 0.45s ease;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    will-change: width , height , right;
}

.btnStandardTitle{position: relative; z-index: 1;}

.btnStandardIcon{position: relative; z-index: 1;width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;}
.btnStandardIcon svg {
    transition: all 0.4s ease-in-out;
}

.btnStandard:not(.disabled):active, .btnStandard:not(.disabled):hover, .btnStandard:not(.disabled):focus, .active > .btnStandard:not(.disabled), .btnStandard.active {
    color: #FFF;
}

.btnStandard:not(.disabled):active::before, .btnStandard:not(.disabled):hover::before, .btnStandard:not(.disabled):focus::before, .active > .btnStandard:not(.disabled)::before, .btnStandard.active::before {
    right: 0;
    width: 100%;
    height: 100%;
}

#ficha-area-fotos, .imagenDerecha {
    position: sticky;
    top: 95px;
}

.imagenDerecha {
    margin: 0;
    text-align: right
}

.imagenDerecha img {
    border-radius: 30px;
    object-position: center;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}

.img-effect{position: relative}
.img-effect.imagenDerecha {position: sticky}
.img-effect::after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.img-effect:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.btnStandard.disabled {
    border-color: #BBBBBB !important;
    background-color: #BBBBBB !important;
    color: #FFFFFF !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.sinResultados {
    color: #777777;
    text-align: center;
    padding: 120px 0;
}

.btnCerrar {
    text-transform: uppercase;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.sl-overlay {
    z-index: 10033;
    background: #000;
}

.sl-wrapper {
    z-index: 10034;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden !important;
}

ul, ol {
    padding: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* FIN COMUNES */

/* INICIO HEADER */
header {
    position: relative;
    z-index: 1111;
    background-color: white;
}

.navbar-nav {
    flex: 1;
    justify-content: space-between;
    gap: 30px;
}

.nav-item .nav-link svg {
    margin-left: 10px;
}

.nav-icon{display: none}

.nav-link svg path {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

li.dropdown:hover .nav-link svg path,
#menuNavbarCollapse li.menu-seleccionado > a svg path {
    stroke: var(--secondary);
}

#wrapper {
    margin-top: 50px;
    flex-grow: 1;
}

body.current_section_inicio #wrapper, body.current_section_contacto #wrapper {
    margin-top: 0;
}

.olvidePass, .olvidePass:hover {
    font-size: 15px;
    color: var(--primary) !important;
    display: block;
    text-decoration: underline;
}

.margin-left-3 + .olvidePass {
    margin-left: 28px;
}

.dropdown-toggle::after, .dropup .dropdown-toggle::after {
    /*quitamos la flecha del desplegable*/
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.owl-dots:not(.disabled) {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    gap: 8px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
}

#banner .owl-dots:not(.disabled) {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: 0;
}

#banner .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 15px;
}

#banner .owl-nav svg {
    fill: none;
}

#banner .owl-nav > div {
    pointer-events: all;
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

#banner .owl-nav > div:hover {
    background-color: var(--primary);
}

#banner .owl-nav > div:hover path {
    fill: #FFF;
}

.owl-dot {
    position: relative;
    display: block !important;
}

.owl-dot span {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CED4DA;
}

.owl-dot span, #banner .owl-nav > div path {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: var(--primary);
}

#carousel-banner img {
    object-fit: cover;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.slide-banner {
    position: relative;
    overflow: hidden;
}

.slide-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1024px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 55.91%);
    z-index: 1;
}

.datos-banner {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    left: calc(16.666666667% + 12px);
    margin: auto;

    width: 630px;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);

    padding: 70px 60px 55px;

    z-index: 2;
}

.datos-banner-titulo {
    color: var(--secondary);
    font-size: 30px;
    font-weight: 700;
}

.datos-banner-texto {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.datos-banner-titulo + .datos-banner-texto {
    margin-top: 20px;
}

.datos-banner-btn {
    margin-top: 42px;
}

#carousel-banner .active .datos-banner {
    animation: slideIn 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

#banner {
    z-index: 20
}

#banner,
#carousel-banner img {
    position: relative;
    height: 550px;
    max-height: 1000px;
    min-height: 550px;
}

.current_section_inicio #banner,
.current_section_inicio #carousel-banner img {
    height: calc(100vh - 253px);
}

#cerrarMenu {
    display: none;
}

#navbarWeb.navbar {
    pointer-events: all;
    padding: 0;
    align-items: center;
    display: flex;
}

#menuNavbarCollapse li {
    position: relative
}

#menuNavbarCollapse li.nav-item > a {
    position: relative;
    padding: 12px 15px;
    text-align: center;

    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    overflow: hidden;

    background-color: var(--primary);
}

#menuNavbarCollapse li.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    bottom: -15px;
    margin: auto;
    width: 1px;
    background: #FFF;
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

#menuNavbarCollapse li.dropdown > a i {
    margin-left: 5px;
}

#menuNavbarCollapse li.nav-item:hover > a, #menuNavbarCollapse li.menu-seleccionado > a, #menuNavbarCollapse li.show > a {
    color: #FFF;
}

#menuNavbarCollapse li.nav-item:hover::before, #menuNavbarCollapse li.menu-seleccionado::before, #menuNavbarCollapse li.show::before {
    opacity: 1;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}



#menuNavbarCollapse li a {
    transition: all .3s;
}

#menu-web .dropdown:not(.bootstrap-select):hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100000 !important;
    top: calc(100% + 15px) !important;

    -webkit-transform: scaleY(1) translateX(-50%);
    -khtml-transform: scaleY(1) translateX(-50%);
    -moz-transform: scaleY(1) translateX(-50%);
    -ms-transform: scaleY(1) translateX(-50%);
    -o-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

#menu-web li.dropdown::after {
    position: absolute;
    left: -13px;
    right: -13px;
    top: 100%;
    height: 15px;
    content: '';
    background: transparent;
    z-index: 1;
}

#navbarWeb .dropdown-menu {
    top: calc(100% + 15px) !important;
    left: 50%;
    display: block !important;
    padding: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0;
    border: none;
    width: 234px;
    margin-top: 0;

    visibility: hidden;
    /*overflow: hidden;*/
    -webkit-transform: scaleY(0) translateX(-50%);
    -khtml-transform: scaleY(0) translateX(-50%);
    -moz-transform: scaleY(0) translateX(-50%);
    -ms-transform: scaleY(0) translateX(-50%);
    -o-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    -webkit-transform-origin: 0 0;
    -khtml-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;

    transition: all .3s;
    min-width: initial;

    max-height: calc(100vh - 300px);
    overflow: auto;
}

#menu-web .dropdown-menu .dropdown:not(.bootstrap-select):hover > .dropdown-menu {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

#navbarWeb .dropdown-menu .dropdown-menu {
    left: 0;
}

#menu-web .dropdown:not(.bootstrap-select):hover > .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0 !important;
}

#menu-web > li:last-child:hover > .dropdown-menu .dropdown-menu {
    left: initial !important;
    right: 100% !important;
}

#navbarWeb .dropdown-item {
    transition: all .4s;
    position: relative;


    color: var(--secondary);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    padding: 15px 20px;
}

#navbarWeb .dropdown:hover > .dropdown-item,
#navbarWeb .dropdown-item:hover,
#navbarWeb .dropdown-item:focus {
    color: #FFF !important;
    background-color: var(--primary) !important;
}

#navbarWeb .dropdown:hover > .dropdown-item:before,
#navbarWeb .dropdown-item:hover:before,
#navbarWeb .dropdown-item:focus:before {
    opacity: 1;
}

.sub-arrow {
    display: none !important;
}

/* INICIO MENU FIJO */
#menuBloque.fixed {
    opacity: 1;
    visibility: visible;
    max-height: initial;
    position: fixed;
    width: 100%;
    top: -100px;
    left: 0;
    right: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -o-transition: transform 500ms ease, background 500ms ease;
    transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    z-index: 1999;

    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

body.menuFixed {
    padding-top: 73px;
}

/* FIN MENU FIJO */

#header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 15px;
}

.datos-localizacion {
    display: flex;
    column-gap: 150px;
}

.item-dato-localizacion {
    display: flex;
    gap: 15px;
}

.item-dato-localizacion-titulo {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.item-dato-localizacion-texto {
    font-size: 15px;
    font-weight: 500;
}

#menuBloque {
    background-color: var(--primary);
    padding: 15px 0;
}

/* FIN HEADER */

/* INICIO SECCION INICIO */

#ventajas {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #E6F3FF;
}

.item-ventaja-datos{position: relative;}

.item-ventaja-datos::before
{
    content: "";
    width: 2px;
    height: 165px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--primary);
}

.item-ventaja-titulo {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 7px;

    word-break: break-word;

    min-height: 58px;
}

.item-ventaja-texto {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding-right: 6px;
    text-wrap: balance;
}

#paso-paso .row {
    row-gap: 74px;
    --bs-gutter-x: 40px;
}

.item-paso-paso {
    display: flex;
    gap: 35px;
}

.item-paso-paso-imagen {
    width: 240px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}

.item-paso-paso-imagen img {
    -webkit-mask-image: url(../img/pasoPaso/mask.png);
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../img/pasoPaso/mask.png);
    mask-size: cover;
    mask-repeat: no-repeat;
}

.item-paso-paso-numero {
    color: var(--secondary);
    text-align: center;
    font-family: Teko, sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 3.8px;
    width: 100px;
    position: absolute;
    left: 0;
    top: 0;
}

.item-paso-paso-titulo {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.item-paso-paso-texto {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.caja-paso-paso-1{order: 1;}
.caja-paso-paso-2{order: 3;}
.caja-paso-paso-3{order: 2;}
.caja-paso-paso-4{order: 4;}

.caja-paso-paso-2 .item-paso-paso,
.caja-paso-paso-4 .item-paso-paso {
    flex-direction: row-reverse;
}

.item-paso-paso-imagen::before {
    position: absolute;
    content: '';
    right: -92px;
    bottom: -110px;
    width: 124px;
    height: 118px;
    background: url(../img/pasoPaso/flecha.svg) no-repeat;
    background-size: contain;
}
.caja-paso-paso-2 .item-paso-paso-imagen::before {
    bottom: initial;
    top: -47px;
    right: -90px;
    transform: rotate(-90deg);
}

.caja-paso-paso-4 .item-paso-paso-imagen::before {display: none}

.caja-paso-paso-2 .item-paso-paso-imagen img,
.caja-paso-paso-4 .item-paso-paso-imagen img {
    -webkit-mask-image: url(../img/pasoPaso/mask_rev.png);
    mask-image: url(../img/pasoPaso/mask_rev.png);
}

.caja-paso-paso-2 .item-paso-paso-numero,
.caja-paso-paso-4 .item-paso-paso-numero {
    top: initial;
    bottom: -5px;
}

.caja-paso-paso-1 .item-paso-paso .item-paso-paso-datos{padding-top: 30px}

.caja-paso-paso-2 .item-paso-paso {align-items: flex-end;}
.caja-paso-paso-2 .item-paso-paso .item-paso-paso-datos {padding-bottom: 40px;}

.caja-paso-paso-3 .item-paso-paso {align-items: flex-end;}
.caja-paso-paso-3 .item-paso-paso .item-paso-paso-datos {padding-bottom: 20px;}

.caja-paso-paso-4 .item-paso-paso {align-items: center;}

#areas-produccion {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/fondos/plano-pieza.webp);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#carousel-areas-produccion .owl-stage {
    padding-left: 0 !important;
}

.item-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.item-area::before,
.item-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.68%, #000 100%);
    z-index: 1;
}

.item-area::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 74.68%, #fff 100%);
    opacity: 0;
}

.item-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transform-origin: center center;
    transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.item-area-datos {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.item-area-titulo {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.item-area-icon {
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-area-titulo, .item-area-icon, .item-area-icon path, .item-area img, .item-area::before, .item-area::after{
    transition: all .5s;
}

.item-area:hover::before {opacity: 0}
.item-area:hover::after {opacity: 1}

.item-area:hover .item-area-titulo {color: var(--primary);}
.item-area:hover .item-area-icon {background-color: var(--primary);}
.item-area:hover .item-area-icon path{fill: #FFF;}
.item-area:hover img{
    transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

#banner-idea img {
    border-radius: 30px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, .25));
}

#banner-idea-datos {
    padding-left: 70px;
}

#banner-idea-titulo1 {
    color: #000;
    font-family: Teko, sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 35px;
    text-transform: uppercase;
}

#banner-idea-titulo2 {
    color: var(--primary);
    font-family: Teko, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 35px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

#banner-idea-texto {
    color: #000;
    font-size: 18px;
    line-height: normal;
}

#banner-idea-btn {margin-top: 50px}

#contiene-contacto {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
    padding: 25px;
    position: absolute;
    top: 40px;
    left: calc(8.333333334% + 12px);
    width: 620px;
}

#datos-localizacion-mapa {
    background-color: var(--primary);
    padding-top: 40px;
    padding-bottom: 5px;
    color:white;
}

#datos-localizacion-mapa > div {
    padding-left: 632px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

#ficha-area-foto-principal .item-foto{
    border-radius: 30px;
    overflow: hidden;
}

#ficha-area-foto-principal .active .item-foto{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

#ficha-area-fotos-secundarias .item-foto {
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: all .3s;
}

#ficha-area-fotos-secundarias .item-foto:hover,
#ficha-area-fotos-secundarias .item-foto.active {
    border-color: transparent;
}

#ficha-area-fotos-secundarias .item-foto::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all .3s;
    border-radius: 10px;
    z-index: 1;
}

#ficha-area-fotos-secundarias .item-foto:hover::before,
#ficha-area-fotos-secundarias .item-foto.active::before {
    opacity: 1;
}

.item-producto {
    position: relative;
    border-radius: 30px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    display: block;
}

.item-producto-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: rgba(0, 0, 255, 0.50);
    opacity: 0;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-producto-hover img {transition: all .3s}

.item-producto:hover .item-producto-hover {opacity: 1}
.item-producto .item-producto-hover img:hover {transform: scale(1.15)}

#ultimos-proyectos.con-fondo {
    background-color: var(--secondary);
    padding-top: 65px;
    padding-bottom: 65px;
}

#ultimos-proyectos.con-fondo .tituloSeccion,
#ultimos-proyectos.con-fondo .subTituloSeccion {color: #FFF}

#ultimos-proyectos.con-fondo .item-producto{border-color: var(--secondary)}

/* FIN SECCION INICIO */

/* INICIO SECCION CONTACTO */
#google_maps, .google_maps
{
    height: 620px;
}

.google_maps.no-mapa
{
    position: relative;
    background-image: url("../img/mapa.png");
    background-size: cover;
    background-position: center center;
}

.datosMapas
{
    position: absolute;
    right: 0;
    bottom: 0;
    background: white;
    font-family: Roboto, Arial, sans-serif;
    font-size: 0.625rem;
    padding: 0 5px;
    color: rgb(68, 68, 68);
    user-select: none;
}

.datosMapas a,
.datosMapas a:hover
{
    color: rgb(68, 68, 68);
    margin-left: 3px;
    text-decoration: none;
}

/* FIN SECCION CONTACTO */

/* INICIO SCROLL BAR */
.custom-scroll-bar
{
    scrollbar-width: thin;
    scrollbar-color: #DADADA #FFF;
    overflow: auto;
}

.custom-scroll-bar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    border-radius: 10px;
}

.custom-scroll-bar::-webkit-scrollbar
{
    width: 8px;
    background-color: #FFF;
}

.custom-scroll-bar::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #DADADA;
}

.custom-scroll-bar::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: none;
}

.custom-scroll-bar:hover
{
    scrollbar-color: #DADADA #FFF;
}

.custom-scroll-bar:hover::-webkit-scrollbar-thumb
{
    background-color: #DADADA;
}

/* FIN SCROLL BAR */

/* INICIO PAGINADOR */
.contienePaginador
{
    margin: 0;
    color: #FFF;
    font-weight: normal;
    font-size: 0;
    display: inline-block;
}

.contienePaginador path
{
    fill: var(--primary);
}

.contienePaginador a
{
    color: var(--primary);
    text-decoration: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    margin: 0;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--primary);
}

.contienePaginador a + a
{
    margin-left: 7px;
}

.contienePaginador a:hover,
.contienePaginador a.paginaSeleccionada,
.contienePaginador a#enlaceAtras:hover,
.contienePaginador a#enlaceSiguiente:hover
{
    color: #FFF;
    background: var(--primary);
    border-color: var(--primary);
}

.contienePaginador a#enlaceAtras:hover path,
.contienePaginador a#enlaceSiguiente:hover path
{
    fill: #FFF;
}

/* FIN LISTADO */

/* INICIO FOOTER */
footer
{
    position: relative;
    color: #FFF;
    font-size: 15px;
    background-color: var(--primary);
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.current_section_inicio footer,
.current_section_contacto footer
{margin-top: 0}

footer a:hover, footer a.menu-seleccionado
{text-decoration: underline; color: #FFF;}

#menu-footer {
    padding: 20px 12px;
    border-top: 1px dashed #FFF;
    border-bottom: 1px dashed #FFF;
}

#menu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#menu-footer ul a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

#menu-footer ul li + li::before {
    content: "::";
    font-size: 16px;
    font-weight: 700;
    margin: 0 50px;
    display: inline-block;
}

#menu-footer ul a:hover, #menu-footer ul a.menu-seleccionado {
    text-decoration: underline;
}

#menu-legales{margin-top: 35px; padding: 0 12px;}

#menu-legales ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#menu-legales ul a {
    font-size: 14px;
    font-style: italic;
}

#menu-legales ul li + li::before {
    content: "·";
    display: inline-block;
    margin: 0 5px;
}

#copyright {
    text-align: center;
    padding: 0 12px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}

#btn-subir {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;

    display: inline-flex;
    padding: 10px 10px 20px 10px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    background-color: white;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    border: 1px solid var(--primary);
}
#btn-subir-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#btn-subir #btn-subir-icon > svg:last-child {
    position: absolute;
    transform: translateY(40px);
}

#btn-subir-text {
    color: var(--secondary);
    font-size: 18px;
    writing-mode: vertical-lr;
    transform: scale(-1);
}

#btn-subir:hover {
    transform: translateY(-6px);
}

#btn-subir:hover #btn-subir-icon > svg:first-child{
    transform: translateY(-40px);
    transition: all 0.3s ease-in-out;
}

#btn-subir:hover #btn-subir-icon > svg:last-child{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
/* FIN FOOTER */

.tab-pane.active
{
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: flipInX;
}

/* MODAL */
.modal-dialog.modal622
{width: 622px}

.modal-dialog.modal1050
{width: 1050px}

.botoneraBlockUI
{
    width: 100%;
}

.esperePorFavor
{
    font-size: 0;
    border: 5px solid var(--primary);
    border-radius: 40px;
    height: 40px;
    margin: 0 auto;
    width: 40px;
    z-index: 1000007;
    -webkit-animation: pulsate 1s ease-out infinite;
    -moz-animation: pulsate 1s ease-out infinite;
    -ms-animation: pulsate 1s ease-out infinite;
    -o-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite;
    display: block;
}

.modalEspere
{
    box-shadow: none !important;
}

.modalEspere img
{display: none}

.modalEspere .modal-content
{
    background-color: transparent;
    border: none;
}

.bloqueModal
{
    display: none;
    text-align: left;
}

.modal .bloqueModal
{
    display: block;
}

.modal
{
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

@media screen and (min-width: 768px)
{
    .modal:before
    {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-content
{
    border: 1px solid #FFF;
    border-radius: 0.5rem;
}

.modal-header
{
    border-bottom: none;
    text-align: center;
    padding: 0.5rem 1rem 1rem;
}

.modal-header .close
{
    opacity: 1 !important;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
    text-shadow: none;
    -webkit-appearance: initial;
    border: none;
    background: none;
}

.close:hover, .close:focus
{
    outline: none;
}

.modal-header .modal-title
{
    color: var(--primary);
    font-size: 30px;
    text-align: center;
    width: 100%;
    border-bottom: none;
    text-transform: uppercase;
    margin-top: 20px;
}

.modal-dialog
{
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    min-width: 300px !important;
    max-width: calc(100% - 30px);
    /*min-width:450px !important;*/
}

.modal-dialog.modal-sm
{
    min-width: 450px !important;
}

.modal-dialog.modal-lg
{
    min-width: 950px !important;
}

.modal .btnStandard + .btnStandard
{
    margin-left: 20px;
}

.modal-body
{
    color: var(--secondary);
    font-size: 16px;
    text-align: center;
    padding: 0 1rem 1rem;
    line-height: 150%;
}

.modal-body a:not(.btnStandard)
{
    color: var(--primary);
}

.modalEspere .modal-body
{
    padding: 1rem;
}

.modal-body img
{
    margin-right: 2px;
}

.modal-footer
{
    padding: 10px 15px;
}

.modalAlert .modal-footer
{
    text-align: center;
    border-top: none;
    padding-bottom: 20px;
}

.modalAlert .botoneraBlockUI
{
    width: 100%;
}

/* FIN DE MODAL*/
.navbar-toggler:focus
{box-shadow: none;}

.wow
{
    visibility: hidden;
}

table.dataTable > tbody > tr.child ul.dtr-details
{
    width: 100%;
}

.navbar-toggler
{display: none}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
}

@media only screen and (max-width: 1199px)
{
}

@media only screen and (max-width: 991px)
{
    /*es, sm  y MD| Extra Small (XS), SM y MD xsm*/

    .item-ventaja-datos::before{display: none}
    .item-ventaja-titulo{font-size: 20px; min-height: initial}

    #ventajas {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #contacto-mapa {
        display: flex;
        flex-direction: column;
    }
    #contiene-contacto {
        position: initial;
        width: 620px;
        max-width: 100%;
        order: 1;
        margin: 50px auto;
    }
    #mapa{order: 2}
    #datos-localizacion-mapa {order: 3}

    #datos-localizacion-mapa > div {
        padding-left: var(--bs-gutter-x, .75rem);
    }

    #banner-idea-datos{padding-left: 20px}

    #banner-idea-btn {margin-top: 20px;}

    .subTituloSeccion{margin-bottom: 30px;}

    .subTituloSeccion.text-start, .tituloSeccion.text-start{text-align: center !important}
    .tituloSeccion.text-start .title-letter.d-none{display: inline-block !important}

    #paso-paso .row {--bs-gutter-x: 1.5rem;    row-gap: 1.5rem;}

    .item-paso-paso .item-paso-paso-datos {padding-bottom: 0 !important; padding-top: 0px !important;}

    .item-paso-paso-imagen::before{display: none}
}

@media only screen and (max-width: 767px)
{
    /*es y sm | Extra Small (XS) and SM */
    .separacion-bloque
    {margin-top: 50px !important}

    body:not(.current_section_inicio) #banner{display: none}

    #wrapper{margin-top: 30px}

    footer{margin-top: 50px}

    .navbar-toggler
    {
        vertical-align: middle;
        border: none;
        outline: none !important;
        padding: 13px 0 13px 10px;
        text-align: right;
        box-shadow: none !important;
        display: block !important;
        line-height: 0;
        margin-left: auto;
    }

    .transparent .navbar-toggler
    {width: 100%; margin-top: 8px;}

    #menuBloque:not(.transparent) .navbar-toggler, #menuBloque.transparent.fixed .navbar-toggler
    {width: auto; margin-left: 30px; margin-top: 0}

    #navbarWeb-container
    {gap: 0}

    #extra-btns-menu
    {align-items: center}

    #menuBloque.fixed #container-acceso-afiliados, #container-acceso-afiliados
    {
        line-height: 0;
    }

    #navbarWeb
    {flex: 0 0 100%}

    #cerrarMenu
    {display: flex !important;}

    #menuNavbarCollapse
    {
        position: fixed;
        top: 0;
        background: #FFF;
        width: 375px;
        max-width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        left: 0;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        padding: 100px 0 17px;
        overflow: auto;
        transform: translateX(-100%);
        transition: transform 0.35s ease !important;
        z-index: 9000000001;
    }

    #menuNavbarCollapse.show
    {transform: none;}

    .navbar-nav
    {
        height: 100%;
        justify-content: left !important;
        overflow: auto;
        display: block;
        padding-bottom: 20px;
    }

    #menuNavbarCollapse li.nav-item > a
    {
        color: var(--secondary);
        padding: 22px 22px;
        background-color: white;
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #menuNavbarCollapse li.nav-item:hover > a path, #menuNavbarCollapse li.menu-seleccionado > a path, #menuNavbarCollapse li > a.menu-seleccionado path, #menuNavbarCollapse .dropdown-item:hover path, #menuNavbarCollapse .dropdown > ul > li.dropdown:hover > .dropdown-item path, #menuNavbarCollapse .sub-menu-item.menu-seleccionado a path, #menuNavbarCollapse .sub-menu-item a:hover path, #menuNavbarCollapse .dropdown-item.active path, #menuNavbarCollapse .dropdown-item:active path, #menuNavbarCollapse .dropdown-item.text-dark path, #menuNavbarCollapse a.bg-light:hover path, #menuNavbarCollapse a.bg-light:focus path,#menuNavbarCollapse li.menu-seleccionado > a svg path
    {
        stroke: var(--primary);
    }

    #menuNavbarCollapse li.dropdown.nav-item:hover > a, #menuNavbarCollapse li.nav-item a:hover, #menuNavbarCollapse li.menu-seleccionado > a, #menuNavbarCollapse li.open > a, #menuNavbarCollapse li.show > a
    {
        color: var(--primary);
    }

    #menuNavbarCollapse ul.dropdown-menu
    {
        position: initial !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-shadow: none;
        border-radius: 0;
        display: none !important;
        margin: 5px 0 0 !important;
        overflow: auto;
        height: auto !important;
        transform: none !important;
        text-align: left !important;
    }

    #menuNavbarCollapse li.open > .dropdown-menu
    {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
        height: auto !important;
    }

    #menuNavbarCollapse .dropdown-item
    {font-size: 14px}

    #menuNavbarCollapse.navbar-collapse li.nav-item + li
    {
        border-top: 1px solid #EBEBEB;
    }

    #menuNavbarCollapse li.nav-item::before{display: none}

    .dropdown > a > i
    {
        display: inline-block !important;
        position: absolute;
        right: 12px !important;
        top: 50% !important;
        font-size: 16px !important;
    }

    .dropdown > a > i.fa-angle-right:before
    {
        content: "\f107";
    }

    #menuNavbarCollapse ul.dropdown-menu
    {
        padding: 0 0 0 5px;
        margin: -10px 0 0 !important;
        max-height: 250px;
    }

    .nav-icon {display: flex}

    #menu-web li.dropdown::after{display: none}

    .icon-dropdown
    {
        padding: 5px 0 5px 5px;
    }

    #menuNavbarCollapse ul.dropdown-menu li + li
    {
        border-top: 1px dashed var(--primary);
    }

    #menuBloque {padding: 9px 0;}

    header .item-dato-localizacion-telefono, header .item-dato-localizacion-ubicacion {display: none}

    #navbarWeb .item-dato-localizacion{color: white}

    .datos-banner {
        width: calc(100% - 30px);
        left: 15px;
        padding: 40px 20px;
    }

    .datos-banner-titulo{font-size: 22px}
    .datos-banner-texto{font-size: 15px}

    #banner .owl-nav{display: none !important}

    .item-ventaja{text-align: center}

    .item-paso-paso{align-items: center !important}
    .item-paso-paso-imagen {width: 150px}
    .item-paso-paso-titulo{font-size: 19px; margin-bottom: 14px}
    .item-paso-paso-texto{font-size: 14px; line-height: 18px}

    .item-paso-paso-numero {
        width: 61px;
        top: -10px;
    }

    .caja-paso-paso-1 {order: 1}
    .caja-paso-paso-2 {order: 2}
    .caja-paso-paso-3 {order: 3}
    .caja-paso-paso-4 {order: 4}

    .caja-paso-paso-2 .item-paso-paso-numero, .caja-paso-paso-4 .item-paso-paso-numero {bottom: -15px;}

    #areas-produccion {padding-top: 64px;padding-bottom: 64px;}

    #ultimos-proyectos.con-fondo {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #datos-localizacion-mapa > div{justify-content: space-between}

    #menu-footer ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    #menu-footer ul li + li::before{display: none}

    .item-ventaja-datos{margin-top: 10px}

    #ficha-area-foto-principal .item-foto, .item-producto, .item-producto-hover, .imagenDerecha img, .item-area{border-radius: 15px;}
}

@media only screen and (max-width: 575px)
{
    /* ES */
    .subTituloSeccion{font-size: 20px}

    .tituloSeccion {
        font-size: 17px;
        line-height: 19px;
        letter-spacing: 1.7px;
    }

    .navbar-brand{width: 150px; margin-right: 0}

    .current_section_inicio #banner, .current_section_inicio #carousel-banner img {
        height: calc(100vh - 200px);
        min-height: 450px;
    }

    .slide-banner::before {
        background: rgba(0, 0, 0, 0.5);
    }

    #banner-idea-datos {
        padding-left: 12px;
        text-align: center;
    }

    .item-producto-hover img {
        width: 35px;
        height: auto;
    }

    #contiene-contacto {
        padding: 0 12px;
        box-shadow: none;
    }

    #contiene-contacto .textoSeccion{text-align: center}

    #formContacto{margin-top: 30px}

    #btn-subir {
        bottom: 10px;
        right: 10px;
        padding: 6px 6px 16px 6px;
        gap: 10px;
    }

    #btn-subir-text{font-size: 16px}

    #datos-localizacion-mapa > div {
        flex-direction: column;
        gap: 30px;
        width: max-content;
        max-width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 767px)
{
    /* SM */
    .subTituloSeccion{font-size: 29px}
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px)
{
    /* MD */
    .separacion-bloque
    {margin-top: 50px !important}

    .datos-localizacion {column-gap: 40px;}

    #header-top{gap: 30px}
    header .item-dato-localizacion{flex-direction: column; gap: 7px}

    .navbar-brand{width: 220px; margin-right: 0}
    .navbar-nav{gap: 5px}
    #menuNavbarCollapse li.nav-item > a{padding-left: 6px; padding-right: 6px}

    .datos-banner{width: 550px; padding: 55px 60px; left: 0;right: 0;margin: auto}

    .item-paso-paso{gap: 20px; align-items: center}
    .item-paso-paso-imagen{width: 150px}
    .item-paso-paso-titulo{line-height: 20px; font-size: 19px}

    .item-paso-paso-texto {
        font-size: 14px;
        line-height: 18px;
    }

    .item-paso-paso-numero{width: 65px; top: -12px}
    .caja-paso-paso-2 .item-paso-paso-numero, .caja-paso-paso-4 .item-paso-paso-numero {bottom: -15px;}

    #datos-localizacion-mapa > div{justify-content: space-between}

    #menu-footer ul a {font-size: 15px;}

    #menu-footer ul li + li::before {margin: 0 12px;}
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px)
{
    /* LG */
    .datos-localizacion {column-gap: 50px;}
    #header-top{column-gap: 30px}

    .item-paso-paso{gap: 30px}
    .item-paso-paso-imagen{width: 200px}
    .item-paso-paso-titulo{line-height: 26px}

    .item-paso-paso-numero{width: 80px; top: -3px}

    #paso-paso .row {--bs-gutter-x: 1.5rem;}

    .caja-paso-paso-1 .item-paso-paso .item-paso-paso-datos {padding-top: 15px;}

    .caja-paso-paso-2 .item-paso-paso-numero, .caja-paso-paso-4 .item-paso-paso-numero {bottom: -10px;}

    .caja-paso-paso-2 .item-paso-paso .item-paso-paso-datos {padding-bottom: 20px;}

    .caja-paso-paso-2 .item-paso-paso-imagen::before {
        right: -74px;
        top: -57px;
    }

    #banner-idea-datos {
        padding-left: 30px;
    }

    #datos-localizacion-mapa .item-dato-localizacion {
        flex-direction: column;
    }

    #datos-localizacion-mapa {padding-top: 17px}

    #datos-localizacion-mapa > div {gap: 17px;}
    #menu-footer ul li + li::before {margin: 0 25px;}
}

@media only screen and (min-width: 992px) and (max-width: 1365px)
{
    #ventajas {
        padding-top: 65px;
        padding-bottom: 65px; }

    .item-ventaja-titulo{font-size: 20px; min-height: 46px}
    .item-ventaja-datos::before
    {
        right: -5px;
        bottom: initial;
        top: 0;
    }

    .item-paso-paso-imagen::before {
        right: -68px;
        bottom: -74px;
        width: 104px;
        height: 99px;
    }

    #contiene-contacto {
        left: 15px;
        width: 482px;
    }

    #datos-localizacion-mapa > div {padding-left: 512px;}
}

@media only screen and (min-width: 1366px)
{

}

@media only screen and (min-width: 992px) and (max-width: 1919px) {
    .datos-banner {
        left: calc(8.333333334% + 12px);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px)
{
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1365px)
{
    /* xl */
    .datos-localizacion {column-gap: 100px;}


}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1366px) and (max-width: 1599px)
{
    /* xxl */
    #contiene-contacto{left: 45px}
    #datos-localizacion-mapa > div {padding-left: 677px;}
}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1600px) and (max-width: 1919px)
{
    /* hdp */
}

@media only screen and (min-width: 1600px)
{

}

@media only screen and (min-width: 1920px)
{
    /* FHD */
}

.cke_panel_list .texto-titulo
{margin-bottom: 0 !important}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}