/********** Template CSS **********/
:root {
    --primary: #d1232c;
    --secondary: #000000;
    --light: #f6f6f6;
    --dark: #000000;
    --white: #fff;
    --main-foreground: #333333;
    --main-background: #ffffff;
    --main-foreground-opacity-10: #3333331a;
    --border-solid: 1px solid;
    --border-radius-half: calc(var(--border-radius) / 2);
    --main-foreground-opacity-30: #3333334d;
}
body {
    font-family: "Poppins", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
    color: black;
}
a:hover,
a:focus,
a:active,
button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
    color: black;
    font-family: "Nexa", sans-serif !important;
}
h5,
.h5 {
    font-size: 1rem;
}
.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 30px;
    z-index: 99;
}
.bg-dark {
    background-color: black !important;
}
text-black {
    color: black !important;
}
.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    -webkit-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -moz-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -ms-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -o-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}
.btn-primary,
.btn-outline-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary,
.btn-outline-secondary {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-outline-secondary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
    border-bottom: 1px solid #eee;
}

.navbar .nav-item .dropdown-menu .dropdown-category::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
/* .navbar .nav-item .dropdown-menu ul .dropdown-item::after {
    display: none;
} */
/* .navbar .nav-item .dropdown-item.noafter::after {
    display: none;
} */
.navbar .nav-item .dropdown-menu ul {
    /* display: none; */
    padding-left: 5px;
}
/* .navbar .nav-item .dropdown-menu:hover ul {
    display: block;
} */
.navbar .nav-item .dropdown-menu ul.show {
    display: block;
}
.navbar .nav-item .dropdown-menu ul li {
    list-style: none;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:hover,
.navbar-light .navbar-toggler:active,
.navbar-light .navbar-toggler:focus {
    border: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 300;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        overflow: auto;
        max-height: 300px;
    }

    /* .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    } */
    .navbar .nav-item .dropdown-menu.show {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--secondary);
    border: 10px solid var(--secondary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

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

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    transition: 0.5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: 0.5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #ffffff;
}

.service-item .service-text .btn {
    font-weight: 300 !important;
    font-size: 16px;
    border-color: var(--secondary);
}

.service-item .service-text .btn:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    padding-top: 60px;
    transition: 0.5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #eeeeee;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    font-size: 22px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

/*** Footer ***/
.footer {
    color: #b0b9ae;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #b0b9ae;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.box-shadow {
    -webkit-box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
    box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
}
.product-item .under {
    min-height: 160px;
}
.product-item .position-relative a.btn {
    right: 5px;
    top: 5px;
    z-index: 1;
}
.product-item .btn {
    font-weight: 300 !important;
    font-size: 12px;
}
.product-item .under .d-flex {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 20px;
}
.promo {
    background-color: rgba(209, 35, 44, 0.95);
    margin-top: 0;
    padding-top: 0;
}
.promo .h5 {
    font-weight: 300 !important;
}
.promo .auto {
    padding: 3rem 3rem;
}
.zoom {
    display: block;
    overflow: hidden;
}
.zoom img {
    transform: scale(1);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.zoom:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}
.news .h5 {
    font-weight: 300 !important;
}

/**********************
Ws botón redondo con tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
    position: fixed;
    bottom: 13px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    cursor: pointer;
    display: block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    z-index: 999;
    background: #1ca550;
    padding: 8px 11px;
    opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
    padding-left: 0px;
    padding-top: 0px;
    width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
    font-size: 44px;
    color: white;
}

.ws.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #1ca550;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.copyright {
    background: #201f1f;
    font-size: 14px;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: white;
}
.mx-auto {
    overflow: hidden;
}
.recurso {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 768px) {
    .promo {
        background-color: rgba(209, 35, 44, 0.65);
    }
}

/*Estilos para contacto solo*/

/* Contacto */

outline: 0 !important;
box-shadow: none !important;

a:hover,
a:focus,
a:active,
.form-control:focus,
.form-control:active,
.form-control:hover,
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled),
.btn-success.focus,
.btn-success:focus,
button:hover,
button:active,
button:focus,
.btn-success,
.btn,
[type="button"],
[type="reset"],
[type="submit"],
button,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.help-block.with-errors {
    color: #d1232c;
    margin-top: 5px;
}
textarea.form-control {
    height: 250px;
}
.alert-success {
    color: #fff;
    background-color: transparent;
    border-color: #f1f0f5;
}
.alert-danger {
    color: black;
    background-color: #f1f0f5;
    border-color: #f1f0f5;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0px;
    color: white;
    font-weight: 300;
    background: black;
    border: 0;
}
.alert {
    position: relative;
    padding: 2rem;
    margin-bottom: 1rem;
    border: 0px solid transparent;
    border-radius: 0px;
}

.text-muted {
    color: #313875;
}
.history-text p.text-muted {
    color: #313875;
}
.messages {
    background: black;
    color: white;
}

.btn.disabled,
.btn[disabled],
.btn-send,
.btn-success,
fieldset[disabled] .btn {
    background: #d1232c;
    color: white;
    text-transform: uppercase;
    width: 165px;
    border: none;
    height: 51px;
    border-radius: 50px;
    cursor: pointer;
    font-size: calc(12px + 0.4vw);
    opacity: 1;
}
.btn.disabled:hover,
.btn.disabled:active,
.btn.disabled:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn[disabled]:hover,
.btn[disabled]:active,
.btn[disabled]:focus,
fieldset[disabled] .btn:hover,
fieldset[disabled] .btn:active,
fieldset[disabled] .btn:focus,
.btn-send:hover,
.btn-send:active,
.btn-send:focus {
    background: black;
    color: white;
    opacity: 1;
}

.d-none {
    display: none !important;
}
.nice-select.wide {
    width: 100%;
    border-radius: 0;
}
.input-group-addon {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 8px;
}

.form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    margin-bottom: 20px;
}

/* Termina Contacto */

/* comienza ficha */

.sec-product-detail ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.sec-product-detail li {
    margin: 0px;
    list-style-type: none;
}

.stext-109 {
    font-size: 14px;
    line-height: 1.833333;
}
.cl8 {
    color: #555;
}
.p-r-15,
.p-lr-15,
.p-all-15 {
    padding-right: 15px;
}
.p-l-25,
.p-lr-25,
.p-all-25 {
    padding-left: 25px;
}
.p-t-30,
.p-tb-30,
.p-all-30 {
    padding-top: 30px;
}
.cl4 {
    color: var(--primary);
}
.p-b-60,
.p-tb-60,
.p-all-60 {
    padding-bottom: 60px;
}
.p-t-65,
.p-tb-65,
.p-all-65 {
    padding-top: 65px;
}
.size-302 {
    min-height: 80px;
}
.flex-c-m {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.flex-w {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-w,
.flex-l,
.flex-r,
.flex-c,
.flex-sa,
.flex-sb,
.flex-t,
.flex-b,
.flex-m,
.flex-str,
.flex-c-m,
.flex-c-t,
.flex-c-b,
.flex-c-str,
.flex-l-m,
.flex-r-m,
.flex-sa-m,
.flex-sb-m,
.flex-col-l,
.flex-col-r,
.flex-col-c,
.flex-col-str,
.flex-col-t,
.flex-col-b,
.flex-col-m,
.flex-col-sb,
.flex-col-sa,
.flex-col-c-m,
.flex-col-l-m,
.flex-col-r-m,
.flex-col-str-m,
.flex-col-c-t,
.flex-col-c-b,
.flex-col-c-sb,
.flex-col-c-sa,
.flex-col-l-sb,
.flex-col-r-sb,
.flex-row,
.flex-row-rev,
.flex-col,
.flex-col-rev,
.dis-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.m-t-73,
.m-tb-73,
.m-all-73 {
    margin-top: 73px;
}
.p-b-15,
.p-tb-15,
.p-all-15 {
    padding-bottom: 15px;
}
.p-t-15,
.p-tb-15,
.p-all-15 {
    padding-top: 15px;
}
.stext-107 {
    font-size: 13px;
    line-height: 1.923;
}
.cl6 {
    color: #888;
}
.p-r-25,
.p-lr-25,
.p-all-25 {
    padding-right: 25px;
}
.p-l-25,
.p-lr-25,
.p-all-25 {
    padding-left: 25px;
}
.p-b-30,
.p-tb-30,
.p-all-30 {
    padding-bottom: 30px;
}
.p-r-30,
.p-lr-30,
.p-all-30 {
    padding-right: 30px;
}

/*//////////////////////////////////////////////////////////////////
[ Slick3 ]*/
.wrap-slick3 {
    position: relative;
}

/*---------------------------------------------*/
.wrap-slick3-arrows {
    position: absolute;
    z-index: 100;
    width: 83.333333%;
    right: 0;
    top: calc(50% - 20px);
}
.slick-slide img {
    display: block;
    width: 100%;
}
.arrow-slick3 {
    font-size: 25px;
    color: #fff;
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.arrow-slick3:hover {
    background-color: rgba(0, 0, 0, 0.9);
}
.m-r-10 {
    margin-right: 10px;
}
.prev-slick3 {
    left: 0px;
}
.next-slick3 {
    right: 0px;
}

/*---------------------------------------------*/
.wrap-slick3-dots {
    width: 11.111111%;
}

.slick3 {
    width: 83.333333%;
}

.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 27px;
}

.slick3-dots li img {
    width: 100%;
}

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.p-b-14 {
    padding-bottom: 14px;
}
.slick3-dot-overlay:hover {
    border-color: #ccc;
}

.slick3-dots .slick-active .slick3-dot-overlay {
    border-color: #ccc;
}

.flex-sb {
    justify-content: space-between;
}
.flex-sb-m {
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}
.slick-slide {
    outline: none !important;
}
.pos-relative {
    position: relative;
}
.wrap-pic-s,
.wrap-pic-max-s,
.wrap-pic-w,
.wrap-pic-max-w,
.wrap-pic-h,
.wrap-pic-max-h {
    display: block;
}
.slick-slide img {
    border-style: none;
}
.how-pos1 {
    position: absolute;
    top: 10px;
    right: 10px;
}
.bor0 {
    border-radius: 50%;
}
.bg0 {
    background-color: #fff;
}
.size-108 {
    width: 40px;
    height: 40px;
}
.cl10 {
    color: #1d1d1d;
}

.p-t-33,
.p-tb-33,
.p-all-33 {
    padding-top: 33px;
}
.flex-r-m {
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
}
.p-b-10,
.p-tb-10,
.p-all-10 {
    padding-bottom: 10px;
}
.size-203 {
    width: 105px;
}
.size-204 {
    width: calc(100% - 105px);
}
.bor8 {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}
button,
select {
    text-transform: none;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
[role="button"],
a,
area,
button,
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.rs1-select2 .select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 0px;
    position: relative;
}

/*------------------------------------------------------------------
  [ in select ]*/
.rs1-select2
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
    padding-left: 20px;
    background-color: transparent;
}

.rs1-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    width: 38px;
    height: 20px;
    top: calc(50% - 10px);
    right: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e6e6e6;
}

.rs1-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    display: none;
}

.rs1-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow::after {
    content: "\f0dc";
    font-family: FontAwesome;
    font-size: 13px;
    color: #808080;
}

.rs1-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow:hover:after {
    color: #6c7ae0;
}

/*------------------------------------------------------------------
  [ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
    z-index: 1251;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 0px;
    overflow: hidden;
    background-color: white;
    left: 0px;

    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {
    top: -2px;
}
.rs1-select2 .select2-dropdown--below {
    top: 2px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"] {
    background: #6c7ae0;
    color: white;
}

.rs1-select2
    .select2-container
    .select2-results__option--highlighted[aria-selected] {
    background: #6c7ae0;
    color: white;
}

.rs1-select2 .select2-results__options {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
}

/*------------------------------------------------------------------
  [ rs2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
    height: 40px;
}

.rs2-select2
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    padding-left: 15px;
}

.rs2-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    width: 35px;
    right: 0px;
    border-left: none;
}

.rs2-select2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow::after {
    content: "\f0d7";
}

.flex-m {
    -ms-align-items: center;
    align-items: center;
}
.p-l-100,
.p-lr-100,
.p-all-100 {
    padding-left: 100px;
}
.p-t-40,
.p-tb-40,
.p-all-40 {
    padding-top: 40px;
}
.bor9 {
    border-right: 1px solid #e6e6e6;
}
.tooltip100 {
    position: relative;
}
.trans-04 {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.lh-10 {
    line-height: 1;
}
.p-r-5,
.p-lr-5,
.p-all-5 {
    padding-right: 5px;
}
.p-l-5,
.p-lr-5,
.p-all-5 {
    padding-left: 5px;
}
.p-b-2,
.p-tb-2,
.p-all-2 {
    padding-bottom: 2px;
}
.p-t-2,
.p-tb-2,
.p-all-2 {
    padding-top: 2px;
}
.fs-14 {
    font-size: 14px;
}

.bor10 {
    border: 1px solid #e6e6e6;
}
.m-t-50,
.m-tb-50,
.m-all-50 {
    margin-top: 50px;
}
.p-b-40,
.p-tb-40,
.p-all-40 {
    padding-bottom: 40px;
}
.p-t-43,
.p-tb-43,
.p-all-43 {
    padding-top: 43px;
}

/*//////////////////////////////////////////////////////////////////
[ Tab01 ]*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: none;
}

.tab01 .nav-tabs .nav-item {
    margin: 0px 15px;
}
.tab01 .nav-tabs .nav-link.active,
.tab01 .nav-tabs .nav-item.show .nav-link {
    font-weight: bold;
    color: #d1232c;
}
.tab01 .nav-link {
    font-size: 15px;
    color: #888;
    line-height: 1.2;

    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.how-pos2 {
    padding-left: 10.7%;
    padding-right: 11%;
}

.btn-variant.selected {
    color: var(--main-foreground);
    border-color: var(--main-foreground);
    background: var(--main-foreground-opacity-10);
}
.btn-variant {
    display: inline-block;
    font-size: 14px;
    line-height: 10px;
    min-width: 28px;
    min-height: 28px;
    margin: 0 10px 10px 0;
    padding: 0 5px;
    border: var(--border-solid) var(--main-foreground-opacity-30);
    color: var(--main-foreground);
    border-radius: var(--border-radius-half);
    font-weight: 400;
    text-transform: initial;
    vertical-align: top;
    -webkit-border-radius: var(--border-radius-half);
    -moz-border-radius: var(--border-radius-half);
    -ms-border-radius: var(--border-radius-half);
    -o-border-radius: var(--border-radius-half);
}

.btn-variant-content {
    display: block;
    min-height: 18px;
    margin: 4px;
    line-height: 19px;
}

.btn-variant.selected {
    color: #333333;
    border-color: var(--main-foreground);
    background: var(--main-foreground-opacity-10);
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

.form-group .form-label {
    float: left;
    width: 100%;
}
.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    margin-top: 10px;
}
#jarse p {
    font-size: 12px;
}

/* Video Inicio */

.main-banner {
    position: relative;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

/* Comienza portfolio de categorías */

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #ffffff;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    font-size: 60px;
    line-height: 0;
    transition: 0.1s;
    transition-delay: 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: 0.5s;
    z-index: 1;
    background: rgba(209, 35, 44, 0.7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

/* Banner Iconos */

#banner-icono .promo {
    background-color: rgba(209, 35, 44, 0.95);
    margin-top: 0;
    padding-top: 0;
}
#banner-icono .promo .h5 {
    font-weight: 600 !important;
    margin-bottom: 0;
}
#banner-icono .promo p {
    margin-bottom: 0;
}
#banner-icono .promo .auto {
    padding: 3rem 3rem;
}
