/**
* Template Name: UpConstruction
* Updated: Mar 09 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
    --font-default: "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Roboto", "Helvetica Neue", Arial;
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Antic Didone", serif;
}

/* Colors */
:root {
    --color-default: #000;
    --color-primary: #798589;
    --color-secondary: #0172be;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}
.verde{color:var(--color-default);}
.azul{color:var(--color-secondary);}
.gris{color:var(--color-primary);}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.primary{color: var(--color-primary)!important;}
body {
    font-family: var(--font-default);
    color: var(--color-primary);
    overflow-x: hidden;
    font-size: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
}

.nav-link:hover {
    color: #ffc732;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-default);
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--color-primary);
}

.btn-primary:hover {
    color: var(--color-secondary);
    background-color: var(--color-secondary);
}
.img-responsive {
    width: 100%;
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-bg1 {
    background-color: var(--color-default);
}
.section-bg {
    background-color: #f5f6f7;
}

.section-img {
    background-image: url(assets/img/fotos/06.jpg);
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 500;
    position: relative;
    letter-spacing: 5px;
    color: var(--color-default);
}

.section-header h2:before,
.section-header h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-header h2:before {
    margin: 0 15px 4px 0;
}

.section-header h2:after {
    margin: 0 0 4px 15px;
}

.section-header p {
    margin: 0 auto 0 auto;
}
.PDRL {padding:0px 50px;}
@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}
@media (min-width: 320px) and (max-width: 599px) {
    .section-header h2 {
        font-size: 19px;
        font-weight: 600;
        position: relative;
        letter-spacing: 1px;
    }
    .section-header h2:before,
    .section-header h2:after {
        content: "";
        width: 20px;
        height: 2px;
        background: var(--color-primary);
        display: inline-block;
    }
    .section-header h2:before {
        margin: 0 10px 5px 0;
    }

    .section-header h2:after {
        margin: 0 0 5px 10px;
    }
    .breadcrumbs h2{font-size: 20px!important;}
    .PDRL {padding:0px 0px!important;}
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
     padding: 105px 0 0px 0;
    min-height: 20vh;
    /* position: relative; */
    border-bottom: solid 1px #000;
}

.breadcrumbs:before {
    content: "";
    background-color: transparent;
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
    margin-bottom: 0px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 22px 0 0 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.breadcrumbs ol a {
    color: #686868;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: none;
    color:#000;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #686868;
    content: "/";
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: #151d21;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    z-index: 1000;
    position:fixed;
    padding: 0;
    height: 100px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 0px solid #e5e5e5;
    inset-inline-start: 10px;
    inset-inline-end: 10px;

}

.header .logo img {
    max-height: 47px;
    padding: 0px;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# topBar
--------------------------------------------------------------*/
#topBar{
    background: var(--color-default);
    position: relative;
    z-index:10000;
}
#topBar ul.top-links {
    margin:0;
}
#topBar ul.top-links>li {
    padding:0;
    display:inline-block;
    margin-left:-3px;
    border-right:rgba(0,0,0,0.2) 1px solid;

}
#topBar ul.top-links>li>a {
    padding:10px;
    font-size:14px;
    color:#fff;
    display:block;
    text-decoration:none;
}
#topBar ul.top-links>li>a:hover {
    background: var(--color-primary);
}
#topBar ul.top-links>li>a>i {
    margin-right:5px;
    color:#fff;
}
#topBar ul.top-links>li>a>i:hover {
    background: var(--color-primary);
}
#topBar ul.top-links li.text-welcome {
    padding:0px;
    font-size:14px;
    color: #fff;
    font-weight: 400;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }
    .nav-center {
        position: absolute;
        left: 58%;
        transform: translateX(-50%);
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 24px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-default);
        font-size: 13.4px;
        font-weight: 500;
        color: var(--color-default);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: 10px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 0px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--color-default);
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

    .navbar .dropdown ul li {
        min-width: 50px;
    }

    .navbar .dropdown ul a {
        padding: 5px 20px;
        font-size: 13.3px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}
@media (max-width: 1024px) {
    .header .logo img {height:33px!important;}
    .header{
        border-bottom: 0px solid #e5e5e5;
        inset-inline-start: 20px!important;;
        inset-inline-end: 20px!important;;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a nav_acceso {
        background: #F19518;
        padding: 0 10px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-default);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: lowercase;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        margin-right: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #222428;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        position: relative;
        color: #000;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
    padding: 30px 0;
}

.get-started .content h3 {
    font-size: 36px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
}

.get-started .content h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.get-started .content p {
    font-size: 14px;
}

.get-started .php-email-form {
    background: #fff;
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .get-started .php-email-form {
        padding: 20px;
    }
}

.get-started .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-started .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-started .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.php-email-form input,
.php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.php-email-form input {
    padding: 12px 15px;
}

.php-email-form textarea {
    padding: 12px 15px;
}

.php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.php-email-form button[type=submit]:hover {
    background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
    border: 1px solid rgba(82, 86, 94, 0.2);
    background: #fff;
    position: relative;
    border-radius: 0;
}

.constructions .card-item .card-bg {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.constructions .card-item .card-body {
    padding: 30px;
}

.constructions .card-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.constructions .card-item p {
    color: var(--color-secondary);
    margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    padding: 40px;
    background: #e3f5f5;
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}
.services .service-item .icon img{
    z-index: 2;
    height: 65px;
}
.services .service-item .icon i {
    color: var(--color-secondary)!important;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
    line-height: 1.8;
}

.services .service-item .icon:before {
    color: var(--color-secondary)!important;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(148, 165, 176, 0.3);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -15px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: var(--color-default);
    font-weight: 300;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 20px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #ebebed;
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--color-primary);
}

.services .service-item:hover .icon:before {
    background: #94a5b0;
}

.services .service-item:hover h3 {
    border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    padding: 15px 0;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575px) {
    .features .nav-link h4 {
        font-size: 16px;
    }
}

.features .nav-link:hover {
    color: var(--color-primary);
}

.features .nav-link.active {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-top: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.projects .portfolio-flters li {
    cursor: pointer;
    display: block;
    padding: 5px;
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    text-align:left;
    border-bottom: solid 1px #e2e4e3;
}
.titulo{
    color:#1B1919;
    font-family: "Antic Didone", Sans-serif;
    font-size: 85px;
    font-weight: 400;
    line-height: 0.9em;
    letter-spacing: 0em;
    margin-block-start: 5.5rem;
}
.subtitulo{    
    font-family: "Helvetica", Sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-block-end: 6rem;
    margin-block-start: 0;
}
.tit-producto{
    color:#1B1919;
    font-family: "Antic Didone", Sans-serif;
    font-size: 50px;
    font-weight: 400;
}
.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
    color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
    margin-left: 0;
}

.projects .portfolio-flters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .projects .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.projects .portfolio-content {
    position: relative;
    overflow: hidden;
}

.projects .portfolio-content img {
    transition: 0.3s;
    object-fit: cover;
    height: 30vh;
    width: 100%;
}

.projects .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(47%);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
    color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
    opacity: 1;
}

.projects .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 0 15px 30px 0;
    min-height: 200px;
    box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #ffd565;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d5d7da;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
}

.alt-services h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-default);
    padding-top: 20px;
    position: relative;
}

.alt-services h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 0px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.alt-services .icon-box {
    margin-top: 10px;
}
.alt-services .icon-box img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: 0.3s;
}
.alt-services .icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: 0.3s;
}
.alt-services .icon-box:hover img {
    background-color: var(--color-primary);
    color: #fff;
}
.alt-services .icon-box:hover i {
    background-color: var(--color-primary);
    color: #fff;
}

.alt-services .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 20px;
}

.alt-services .icon-box h4 a {
    color: var(--color-default);
    transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
    color: var(--color-primary);
}

.alt-services .icon-box p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin: 30px 0;
}

@media (min-width: 991px) {
    .about h2 {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}

.about .our-story {
    padding: 40px;
    background-color:rgb(245 246 247 / 75%);
}

@media (min-width: 991px) {
    .about .our-story {
        padding-right: 10%;
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 18px;
    color: #838893;
}

.about .our-story h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

.our-story ul li {
    list-style: none;
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.about ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    margin-right: 4px;
    color: var(--color-primary);
}

.about .watch-video i {
    font-size: 32px;
    transition: 0.3s;
    color: var(--color-primary);
}

.about .watch-video a {
    font-weight: 600;
    color: var(--color-secondary);
    margin-left: 8px;
    transition: 0.3s;
}

.about .watch-video:hover a {
    color: var(--color-primary);
}

.about .about-img {
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
    background: #fff;
    box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
    padding: 30px;
}

.stats-counter .stats-item i {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: var(--color-primary);
}

.stats-counter .stats-item span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
}

.stats-counter .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

.team .member .member-img {
    margin: 0 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.team .member .member-img .social a {
    transition: 0.3s;
    color: #fff;
    font-size: 20px;
    margin: 0 8px;
}

.team .member .member-img .social a:hover {
    color: var(--color-primary);
}

.team .member .member-info {
    margin-top: 30px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--color-secondary);
}

.team .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: #838893;
    margin-bottom: 10px;
}

.team .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.services-cards p {
    font-size: 15px;
}

.services-cards ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-top: 10px;
}

.services-cards ul li i {
    font-size: 16px;
    color: var(--color-primary);
    margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
    width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.project-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.project-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.project-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.project-details .portfolio-info ul i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--color-primary);
}

.project-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: #838893;
    font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
    background: #ffc019;
}

.project-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.project-details .portfolio-description p {
    padding: 0;
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: #f5f6f7;
    height: 100%;
    margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
    color: #ffd565;
    font-size: 26px;
    line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid #d5d7da;
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid #d9e3e8;
    margin: 20px 0;
    color: var(--color-secondary);
    transition: 0.3s;
}

.service-details .services-list a.active {
    font-weight: 700;
    border-color: var(--color-primary);
}

.service-details .services-list a:hover {
    border-color: var(--color-primary);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
}

.contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted var(--color-secondary);;
}

.contact .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    width: 100%;
    padding: 10px;
}

.contact .php-email-form .form-group {
    padding-bottom: 3px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    transition: 0.3s;
}
.post-img { border: solid 1px #e2e4e3;}
.recent-blog-posts .post-item .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
    padding: 30px 0;
    color:#000;
}

.recent-blog-posts .post-item .post-title {
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
    height:30px;
}

.recent-blog-posts .post-item .meta i {
    font-size: 16px;
    color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
    font-size: 15px;
    color: #838893;
}

.recent-blog-posts .post-item hr {
    color: #888;
    margin: 10px 0;
}

.recent-blog-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1;
    transition: 0.3s;
    color: #000;
}

.recent-blog-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 18px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
    color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 38vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
    background: transparent;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .carousel-item::before {
    content: "";
    background-color: rgba(6, 51, 75, 00);
    position: absolute;
    inset: 0;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
    top: -265px
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 30px;
        top: -205px;
    }
}

.hero .info h2 {
    font-family: var(--font-default);
    color: var(--color-default);
    margin-top: 360px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 40px;
    letter-spacing: 1px;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 1px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.hero .info h3 {
    font-family: var(--font-default);
    color: #fff;
    margin-top: 220px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 45px;
    letter-spacing: 5px;
    font-weight: 100;
    position: relative;
    text-shadow: -1px -1px 1px rgb(255 255 255 / 10%), 1px 1px 1px rgb(0 0 0 / 30%), 1px 1px 2px #000000;
}

.hero .info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 0px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .hero .info h2 .info h3 {
        font-size: 26px !important;
    }

    .about h2 {
        font-size: 30px;
    }

    .hero .info p {
        font-size: 14px !important;
    }
}

.hero .info p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-top:25px;
}

.hero .info h1 {
    color: rgba(255, 255, 255, 1);

    font-family: var(--font-default);
    font-size: 27px;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: -1px -1px 1px rgb(255 255 255 / 10%), 1px 1px 1px rgb(0 0 0 / 50%), 2px 1px 3px #000000;
    font-weight: 300;
    line-height: 1.5;
}

.hero .info .btn-get-started {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.8);
    color: #6d6d6d;
}

.hero .info .btn-get-started:hover {
    background: var(--color-primary);
    color: #fff;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #838893;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: var(--color-secondary);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: var(--color-primary);
    color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.blog .posts-list .post-img img {
    transition: 0.5s;
}

.blog .posts-list .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog .posts-list .post-content {
    padding: 5px 30px 30px 30px;
    background-color: #e2e4e3;
}

.blog .posts-list .post-title {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 5px;
}
.producto {
    font-size: 16px!important;
    color: var(--color-default)!important;
    font-weight: 400!important;
}
.pvp {
    font-size: 18px!important;
    color: var(--color-primary)!important;
    line-height: 14px;
    padding-top: 15px;
}
.iva{
    font-size:12px;
    color: var(--color-default)!important;
    font-weight: 400!important;
}
.blog .posts-list .meta i {
    font-size: 16px;
    color: var(--color-primary);
}

.blog .posts-list .meta span {
    font-size: 15px;
    color: #838893;
}

.blog .posts-list p {
    margin-top: 10px;
    font-size: 14px;
    color: grey;
}

.blog .posts-list hr {
    color: #888;
    margin-bottom: 20px;
}

.blog .posts-list .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #838893;
}

.blog .posts-list .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
    color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: var(--color-secondary);
}

.blog .blog-details .content {
    margin-top: 20px;
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(82, 86, 94, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .blog-details .meta-top {
    margin-top: 20px;
    color: #6c757d;
}

.blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: var(--color-primary);
}

.blog .blog-details .meta-top a {
    color: #6c757d;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
    color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
    color: #838893;
    display: inline;
}

.blog .blog-details .meta-bottom a {
    color: rgba(82, 86, 94, 0.8);
    transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
    color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ",";
}

.blog .blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
    padding-left: 5px;
}

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: var(--color-secondary);
}

.blog .post-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
    color: rgba(82, 86, 94, 0.5);
    margin-right: 5px;
}

.blog .post-author p {
    font-style: italic;
    color: rgba(108, 117, 125, 0.8);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.fondo {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.fondo p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
}

.sidebar {
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: rgba(222, 203, 140, 0.25);
}

.sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--color-secondary);
}

.sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
}

.sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(82, 86, 94, 0.3);
    padding: 3px 10px;
    position: relative;
}

.sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.sidebar .search-form form input[type=text]:focus {
    outline: none;
}

.sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--color-primary);
    color: var(--color-secondary);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.sidebar .search-form form button i {
    line-height: 0;
}

.sidebar .search-form form button:hover {
    background: rgba(254, 185, 0, 0.8);
}

.sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.sidebar .categories ul li+li {
    padding-top: 10px;
}

.sidebar .categories ul a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.sidebar .categories ul a:hover {
    color: var(--color-default);
}

.sidebar .categories ul a span {
    padding-left: 5px;
    color: rgba(54, 77, 89, 0.4);
    font-size: 14px;
}

.sidebar .recent-posts .post-item {
    display: flex;
}

.sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.sidebar .recent-posts img {
    max-width: 80px;
    margin-right: 15px;
}

.sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
}

.sidebar .recent-posts h4 a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.sidebar .recent-posts h4 a:hover {
    color: var(--color-primary);
}

.sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(54, 77, 89, 0.4);
}

.sidebar .tags {
    margin-bottom: -10px;
}

.sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.sidebar .tags ul li {}

.sidebar .tags ul a {
    color: #838893;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #feb900;
    display: inline-block;
    transition: 0.3s;
    pointer-events: none;
    background-color: #f5f6f7;
}

.sidebar .tags ul a:hover {
    color: var(--color-secondary);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

.sidebar .tags ul a span {
    padding-left: 5px;
    color: rgba(131, 136, 147, 0.8);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

.blog .comments .comments-count {
    font-weight: bold;
}

.blog .comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .comments .comment .comment-img {
    margin-right: 14px;
}

.blog .comments .comment .comment-img img {
    width: 60px;
}

.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .comments .comment h5 a {
    font-weight: bold;
    color: var(--color-default);
    transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
    color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
    padding-left: 10px;
    color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(82, 86, 94, 0.8);
    margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .comments .reply-form p {
    font-size: 14px;
}

.blog .comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .comments .reply-form input:focus {
    box-shadow: none;
    border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
    color: var(--color-secondary);
    background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: #000;
    background: #fff;
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    padding: 80px 0 0;
    position: relative;
}
.footer .footer-content{
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    padding: 60px 16px;
    }
 .footer-info {
    margin-bottom: 30px;
    color: #000;
}
.footer .footer-content .footer-info i{
    color: #fff;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: #000;
}

.footer .footer-content .footer-info p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    font-family: "Helvetica", Sans-serif;
    color: #686868;
}

.footer .footer-content .footer-info a {
    color: #686868;
}

.footer .footer-content .footer-info a:hover {
    color: #000;
}

.footer .footer-content .social-links a {
    font-size: 20px;
    display: inline-block;
    background: #686868;
    color: #fff;
    line-height: 1;
    margin-right: 8px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
    background: #000;
    text-decoration: none;
}

.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content .footer-links ul li {
    padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: #686868;
    transition: 0.3s;
    display: inline-block;
    line-height: 30px;
    font-size: 18px;
}

.footer .footer-content .footer-links ul a:hover {
    color: #000;
}

.footer .footer-legal{
    border-bottom: solid 1px #000;
    padding: 15px 20px 35px 20px;
}
.footer .footer-legal .copyright a{
     color: #686868;
     font-size:15px;
     margin-right: calc(22px / 2);
    margin-left: calc(22px / 2);
}
.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: #000;
}

.footer .footer-legal .credits a {
    color: var(--color-primary);
}

.btn_reservar {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 40px;
    border-radius: 50px;
    transition: 0.5s;
    color: #000;
    border: 2px solid var(--color-primary);
    background: transparent;
}

.btn_reservar:hover {
    background: var(--color-primary);
    color: #000;
}

.btn_ver {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 40px;
    border-radius: 50px;
    transition: 0.5s;
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}

.btn_ver:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.btn_ver2 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 40px;
    border-radius: 50px;
    transition: 0.5s;
    background: #55c4d9;
    border: 2px solid #55c4d9;
    color: #fff;
}

.btn_ver2:hover {
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}

.flags {
    width: 33px;
}

.flags2 {
    width: 22px;
    padding-left: 5px;
}
/*--------------------------------------------------------------
# cookies
--------------------------------------------------------------*/
@media (min-width: 320px) and (max-width: 599px) {
    #barraaceptacion {min-height:200px!important;}
    .inner {top:15%!important;}
}
#barraaceptacion {
    display:none;
    position:fixed;
    left:0px;
    right:0px;
    bottom:0px;
    padding:20px;
    width:100%;
    text-align:center;
    min-height:120px;
    color:#fff;
    z-index:99999;
}
.modal-content{color:var(--color-primary);}
.modal-dialog {font-family: var(--font-default);color: var(--color-grey);}
.tit_politica {color:var(--color-primary);font-family: var(--font-default);text-align: left;font-size: 1.2em;font-weight: 900; margin-bottom: 5px;}
.cookies-text-container{font-family:var(--font-default);font-size:12px;text-align: left;} 
.texto_modal{font-size:12px;}
.inner {
    width:100%;
    position:absolute;
    padding-left:5px;
    font-family:var(--font-default);
    font-size:1em;
    top:20%;
}
.cookies-policy{    
    padding: 1em;
}
.cookies-policy #cookies-policy-close {
    display: block;
    position: absolute;
    font-size: 2.5em;
    padding: 0 .2em;
    top: 0.1em;
    right: 25px;
    text-indent: 0;
    color: #fff;
    text-decoration: none;
}

.cookies-policy .cookies-buttons {
    padding-top: 3em;
}
.btncookie_ok{
    font-size: 12px!important;
    color: #b3b3b3!important;
    padding: 5px;
    text-align: center;
    background: #fff;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #8c8b8b!important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    outline: 0;
    margin-right: 5px;
    opacity:0.8;
}
.btncookie_ok:hover{
    opacity:1;
    color: #b3b3b3!important;
}
.btncookie_ok:active{
    background: #69ba73;
    color:#fff;
}

.btncookie_no{
    font-size: 12px!important;
    color: #b3b3b3!important;
    padding: 5px;
    text-align: center;
    background: #fff;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #8c8b8b!important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    outline: 0;
    margin-right: 5px;
    opacity:0.8;
}
.btncookie_no:hover{
    opacity:1;
    color: #b3b3b3!important;
}
.btncookie_no:active{
    background: #f55;
    color:#fff;
}
.accordion .panel-heading .cookiemodal a
{display:inline-block;padding-bottom:3px;border-bottom:1px dashed transparent;}
.accordion .panel-heading .cookiemodal a:hover
{color:#1f89b4!important;text-decoration:none;border-bottom:1px dashed #1f89b4}
.msgcookie
{z-index:9999;display:block;position:fixed;bottom:0;height:auto;background:rgba(0,0,0,0.8);color:#fff;font-size:1em;font-family:sans-serif;text-decoration:none}
.msgcookie p
{width:99%;margin:0 auto;text-decoration:none;    color: #aba7a7;}
.msgcookie p a:link,.msgcookie p a:active,.msgcookie p a:visited,.msgcookie p a:hover
{color:#fff;text-decoration:none}
.msgcookie a.close
{overflow:hidden;text-indent:-80px;opacity:.5;margin:0 0 0 40px;text-decoration:none}
#cookiesms1:target
{display:none}
.cookiesms
{width:100%;height:43px;margin:0 auto;padding-left:1%;padding-top:5px;font-size:1.2em;clear:both;font-weight:strong;color:#333;bottom:0;position:fixed;left:0;background-color:#000;opacity:.7;filter:alpha(opacity=70);transition:bottom 1s;-webkit-transition:bottom 1s;-webkit-box-shadow:3px -3px 1px rgba(50,50,50,0.56);-moz-box-shadow:3px -3px 1px rgba(50,50,50,0.56);box-shadow:3px -3px 1px rgba(50,50,50,0.56);z-index:999999999}
.cookiesms:hover
{bottom:0}
.cookies2
{background-color:#FFF;display:inline;opacity:.95;filter:alpha(opacity=95);position:absolute;left:1%;top:-30px;font-size:15px;height:30px;padding-left:25px;padding-right:25px;-webkit-border-top-right-radius:15px;-webkit-border-top-left-radius:15px;-moz-border-radius-topright:15px;-moz-border-radius-topleft:15px;border-top-right-radius:15px;border-top-left-radius:15px;-webkit-box-shadow:3px -3px 1px rgba(50,50,50,0.56);-moz-box-shadow:3px -3px 1px rgba(50,50,50,0.56);box-shadow:3px -3px 1px rgba(50,50,50,0.56)}
@media screen and (max-width: 500px) {
    .cookies-policy .cookies-buttons {
        padding-top: 10px!important;
    }	 
}

.btn-visit {
    padding: 8px 40px;
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-visit:hover {
    background: #000;
}

.btn-lg {
    padding: 15px 40px;
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 700;
}

.btn-lg:hover {
    background: #ffc019;
}

.btn-default {
    padding: 8px 40px;
    border-color: gray;
    background: gray;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-default:hover {
    background: #000;
    color: #fff;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
    color: #ffd565;
    font-size: 26px;
    line-height: 0;
}

.testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonial-item {
    font-style: italic;
    margin: 15px auto 25px auto;
    font-weight: 300;
    font-size: 1.1em;
}

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

/*=== 14. STEPS ===*/
/*=== 14.1 STEP # 01 ===*/
.stepsWrapper .innerWrapper {
    border: 1px solid #f5e6d1;
    display: block;
    padding: 10px 20px 0;
    width: 100%;
}

@media (min-width: 480px) {
    .stepsWrapper .innerWrapper.stepsPage {
        margin-bottom: 90px;
    }
}

@media (min-width: 768px) {
    .stepsWrapper .innerWrapper.stepsPage {
        margin-bottom: 30px;
    }
}

.stepsWrapper .innerWrapper.stepsPage .cartListInner {
    margin-bottom: 50px;
    display: block;
}

.stepsWrapper .innerWrapper .well {
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 50px;
    background: #f0f0f0;
    padding: 20px 30px;
}

.stepsWrapper .innerWrapper .well .pager {
    margin: 0;
}

.stepsWrapper .innerWrapper .well .pager li a {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.stepsWrapper .innerWrapper .well .pager li a:hover {
    opacity: 0.8;
}

.stepsWrapper .innerWrapper .well .pager li a i {
    font-size: 18px;
    padding-left: 5px;
}

.stepsWrapper .innerWrapper .well .pager li a.hideContent {
    display: none;
}

.stepsWrapper .innerWrapper .well .pager li.previous a {
    background-color: #dedede;
    color: #252525;
}

.stepsWrapper .innerWrapper .well .pager li.previous a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.stepsWrapper .innerWrapper .orderBox .table-responsive .table tbody tr td {
    text-transform: capitalize;
}

.stepsWrapper .innerWrapper .orderBox .table-responsive .table tbody tr td .checkboxArea {
    margin: 0;
    float: none;
}

.stepsWrapper .innerWrapper .step2.checkboxArea {
    margin-bottom: 25px;
}

.stepsWrapper .innerWrapper .step2.checkboxArea label {
    font-size: 13px;
    color: #797979;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check {
    width: 100%;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check .form-control {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    height: 44px;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check span.step-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check .sbHolder {
    border: 1px solid #f0f0f0;
    background: #ffffff;
    max-width: 48%;
    height: 44px !important;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check .sbHolder .sbSelector {
    line-height: 44px !important;
    background: transparent;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check .input-group-addon {
    margin-left: -1px;
    z-index: 5;
    background: #ffffff;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check ul.sbOptions {
    margin-top: 0px;
    z-index: 55;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check ul {
    margin: 10px 0 0 30px;
}

.stepsWrapper .innerWrapper .checkboxArea.card-check ul li {
    margin-right: 5px;
}

.stepsWrapper .shipping-info {
    padding: 10px 0 20px;
}

.stepsWrapper .shipping-info h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.stepsWrapper .shipping-info address,
.stepsWrapper .shipping-info p {
    color: #797979;
    line-height: 24px;
}

.stepsWrapper .summery-box {
    border: 3px solid #f0f0f0;
    padding: 40px 25px;
    margin-bottom: 50px;
}

.stepsWrapper .summery-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #252525;
}

.stepsWrapper .summery-box p {
    font-size: 13px;
    padding-bottom: 5px;
    color: #797979;
}

.stepsWrapper .summery-box li {
    font-size: 15px;
    padding-bottom: 20px;
    color: #797979;
}

.stepsWrapper .summery-box li:last-child {
    border-top: 3px solid #f0f0f0;
    color: #252525;
    padding: 20px 0 0;
}

.stepsWrapper .summery-box li:last-child .val {
    font-weight: 700;
}

.stepsWrapper .review-inner form {
    margin: 0px;
}

.stepsWrapper .review-inner .table-responsive .table thead tr th {
    border-right: none;
}

.stepsWrapper .review-inner .table-responsive .table tbody tr td input.quantity {
    border: none;
    background: transparent !important;
}

.stepsWrapper .order-confirm {
    padding: 60px 0 90px;
}

.stepsWrapper .order-confirm h2 {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
}

.stepsWrapper .order-confirm span {
    display: block;
    font-size: 13px;
    color: #797979;
}

.stepsWrapper .order-confirm p {
    font-size: 15px;
    line-height: 30px;
    color: #797979;
    margin: 42px 0 50px;
}

.stepsWrapper .order-confirm .btn {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 15px;
}

.progress-wizard .progress-wizard-step .progress-wizard-dot:after,
.progress-wizard .progress-wizard-step.disabled .progress-wizard-dot:after {
    content: ' ';
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 7px;
}

.progress-wizard {
    padding: 0 15px 50px 15px;
}

.progress-wizard .progress-wizard-step {
    padding: 0;
    position: relative;
}

.progress-wizard .progress-wizard-step .progress-wizard-stepnum {
    color: #797979;
    padding-bottom: 5px;
}

@media (max-width: 479px) {
    .progress-wizard .progress-wizard-step .progress-wizard-stepnum {
        font-size: 12px;
        height: 55px;
    }
}

@media (min-width: 480px) {
    .progress-wizard .progress-wizard-step .progress-wizard-stepnum {
        font-size: 10px;
        height: 36px;
    }
}

@media (min-width: 768px) {
    .progress-wizard .progress-wizard-step .progress-wizard-stepnum {
        font-size: 12px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .progress-wizard .progress-wizard-step .progress-wizard-stepnum {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
    }
}

.progress-wizard .progress-wizard-step .progress-wizard-info {
    color: #999;
    font-size: 14px;
}

.progress-wizard .progress-wizard-step .progress-wizard-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: var(--color-primary);
    left: 50%;
    margin-top: -17px;
    margin-left: -15px;
    border-radius: 50%;
}

@media (min-width: 480px) {
    .progress-wizard .progress-wizard-step .progress-wizard-dot {
        top: 60px;
        margin-top: -14px;
    }
}

@media (min-width: 768px) {
    .progress-wizard .progress-wizard-step .progress-wizard-dot {
        top: 43px;
        margin-top: -10px;
    }
}

.progress-wizard .progress-wizard-step .progress {
    position: relative;
    border-radius: 0;
    height: 4px;
    box-shadow: none;
    background-color: #f0f0f0;
}
.progress-wizard .progress-wizard-step .progress2 {
    position: relative;
    border-radius: 0;
    height: 4px;
    box-shadow: none;
    background-color: #f19518;
}

@media (min-width: 480px) {
    .progress-wizard .progress-wizard-step .progress {
        margin: 23px 0 0px;
    }
    .progress-wizard .progress-wizard-step .progress2 {
        margin: 23px 0 0px;
    }
}

.progress-wizard .progress-wizard-step .progress .progress-bar {
    width: 0px;
    box-shadow: none;
    background: var(--color-primary);
}

.progress-wizard .progress-wizard-step.complete .progress .progress-bar {
    width: 100% !important;
}

.progress-wizard .progress-wizard-step.complete:first-child .progress {
    left: 0;
    width: 100%;
}

.progress-wizard .progress-wizard-step.complete:first-child .progress .progress-bar {
    width: 50%;
}

.progress-wizard .progress-wizard-step.complete:last-child .progress {
    width: 100%;
}

.progress-wizard .progress-wizard-step.complete:last-child .progress .progress-bar {
    width: 100%;
}

.progress-wizard .progress-wizard-step.complete.fullBar .progress .progress-bar {
    width: 100%;
}

.progress-wizard .progress-wizard-step.active .progress .progress-bar {
    width: 50%;
}

.progress-wizard .progress-wizard-step.active .progress-wizard-stepnum {
    color: #252525;
}

.progress-wizard .progress-wizard-step.disabled .progress-wizard-dot {
    background-color: #f0f0f0;
}

.progress-wizard-step .progress .progress-bar {
    transition: none !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #e41f25;
}

input:focus+.slider {
    box-shadow: 0 0 1px #e41f25;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ================================================
--> Elements form style
================================================== */
.form-group {
    margin-bottom: 0px;
}

.input-group-addon {
    border-color: #f0f0f0;
}
label span {color:red;}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 8px);
}

input.form-control,
textarea.form-control,
select.form-control {
    border-radius: 0px;
    font-family: 'Oxygen', sans-serif;
    font-size: 15px;
    line-height: 36px;
    padding: 3px 20px;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    margin: 0 12px 10px 0;
    display: inline-block;
}

.form-control-xs {
    line-height: 25px !important;
    padding: 3px 5px !important;
    border-bottom: 1px solid #d0d0d0 !important;
    border-top: 0px solid #d0d0d0 !important;
    border-left: 0px solid #d0d0d0 !important;
    border-right: 0px solid #d0d0d0 !important;
    margin: 0 12px 15px 0 !important;
}

input.form-control::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder,
select.form-control::-webkit-input-placeholder {
    color: #797979;
}

input.form-control:-moz-placeholder,
textarea.form-control:-moz-placeholder,
select.form-control:-moz-placeholder {
    color: #797979;
}

input.form-control::-moz-placeholder,
textarea.form-control::-moz-placeholder,
select.form-control::-moz-placeholder {
    color: #797979;
}

input.form-control:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder,
select.form-control:-ms-input-placeholder {
    color: #797979;
}

input.form-control.focus,
input.form-control:focus,
input.form-control.active,
input.form-control:active,
textarea.form-control.focus,
textarea.form-control:focus,
textarea.form-control.active,
textarea.form-control:active,
select.form-control.focus,
select.form-control:focus,
select.form-control.active,
select.form-control:active {
    background-color: #ffffff;
    border-color: #f0f0f0;
    font-weight: 300;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.05);
}

input.form-control.is-valid.focus,
input.form-control.is-valid:focus,
input.form-control.is-valid.active,
input.form-control.is-valid:active,
input.form-control.is-invalid.focus,
input.form-control.is-invalid:focus,
input.form-control.is-invalid.active,
input.form-control.is-invalid:active {
    background-color: #ffffff;
    border-color: default;
    font-weight: 300;
    box-shadow: default;
}

.text_input .form-group {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .text_input .form-group {
        margin-bottom: 20px;
    }
}

.text_input .form-group label {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #252525;
}

@media (min-width: 992px) {
    .text_input .form-group label {
        font-size: 16px;
    }
}

.text_input input.form-control,
.text_input textarea.form-control,
.text_input select.form-control {
    margin-bottom: 0px;
}

.form-group .helpText {
    position: absolute;
    top: 18px;
    right: 25px;
}

.selectOptions {
    margin-bottom: 0px;
}

.selectOptions .sbHolder {
    background-color: transparent;
    border: none;
    margin: 0;
    border-radius: 0;
    border: 1px solid #e4e4e4;
}

.selectOptions .sbHolder,
.selectOptions .sbSelector {
    width: 100% !important;
    height: 50px !important;
    line-height: 50px;
    background: #f0f0f0;
    border: none;
}

.selectOptions .sbOptions {
    width: 100% !important;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    right: 0 !important;
    border-radius: 0;
    z-index: 100;
}

.selectOptions .sbOptions a {
    color: #797979;
    font-size: 13px;
    padding: 5px 15px;
    text-transform: uppercase;
}

.selectOptions .sbOptions a:hover {
    color: var(--color-primary);
    background-color: transparent;
}

.selectOptions .sbOptions li:first-child a {
    padding-top: 10px;
}

.selectOptions .sbOptions li:last-child a {
    padding-bottom: 10px;
}

.selectOptions .sbOptions .sbToggle:hover,
.selectOptions .sbOptions .sbToggle:focus,
.selectOptions .sbOptions .sbToggle:active {
    color: inherit;
}

.selectOptions .sbHolder>a.sbToggle:after {
    position: absolute;
    content: '\f078';
    font-family: 'FontAwesome';
    top: 0px;
    right: 10px;
    font-size: 10px;
}

.selectOptions .sbHolder>a.sbToggle.sbToggleOpen:after {
    content: '\f077';
}

.form-check-input {
    margin-left: 4px;
    margin-top: 6px;
    padding: 5px;
    opacity: 0;
}

.form-check-label {
    padding-left: 0px;
    margin-bottom: 25px;
    font-size: 15px;
    cursor: default;
    color: #252525;
}

.checkbox-custom+.checkbox-custom-label:before,
.radio-custom+.radio-custom-label:before {
    content: '';
    background: #ffffff;
    border: 1px solid #dedede;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 0;
    margin-right: 10px;
    text-align: center;
    line-height: 20px;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #ffffff;
    background: var(--color-primary);
    border: 0px solid var(--color-primary);
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    content: "\f111";
    font-size: 9px;
    font-family: 'FontAwesome';
    color: #ffffff;
    background: var(--color-primary);
    border: 0px solid var(--color-primary);
}

span.or {
    font-size: 15px;
    padding: 15px 0;
    display: block;
    color: #222222;
}

.checkbox-custom:checked+.checkbox-custom-label.default-checked:before,
.radio-custom:checked+.radio-custom-label.default-checked:before {
    background-color: #e5e5e5 !important;
    color: #797979 !important;
}

.checkbox-custom:checked+.checkbox-custom-label.disable-checked:before,
.radio-custom:checked+.radio-custom-label.disable-checked:before {
    background: #f2f2f2 !important;
    color: rgba(121, 121, 121, 0.5) !important;
}

h3.form_title {
    display: block;
    font-size: 25px;
    padding: 25px 30px;
    text-transform: capitalize;
    background: #f0f0f0;
}

form.register {
    border: 1px solid #e5e5e5;
    border-top: 0px;
    padding: 25px 30px;
}

form.register .form-check label.checkbox-custom-label {
    color: #252525;
    margin-bottom: 0px;
}

form.register .form-check label.checkbox-custom-label:before {
    width: 16px;
    height: 16px;
    line-height: 16px;
}

form.register .form-check .checkbox-custom:checked+.checkbox-custom-label:before {
    font-size: 12px;
}

form.register .btn-link {
    color: #439fdb;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
}

form.register span.or {
    position: relative;
    font-weight: 700;
}

form.register span.or:before {
    content: '';
    position: absolute;
    left: 0;
    width: 47%;
    background: #e5e5e5;
    height: 1px;
    top: 50%;
}

form.register span.or:after {
    content: '';
    position: absolute;
    right: 0;
    width: 47%;
    background: #e5e5e5;
    height: 1px;
    top: 50%;
}

form.register .btn {
    font-weight: 700;
    margin-bottom: 20px;
}

form.register .btn.btn-facebook,
form.register .btn.btn-twitter {
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: unset;
}

p.form-footer {
    margin: 0;
    text-align: center;
    padding: 20px 0;
    border: 1px solid #e5e5e5;
    border-top: 0px;
    font-size: 15px;
}

.input-icon {
    position: relative;
}

.input-icon .input-group-addon {
    background-color: transparent;
    border: 0px solid transparent;
    font-size: 16px;
    color: #797979;
    position: absolute;
    top: 0;
    padding: 0px;
    z-index: 55;
    margin: 17px 0px;
    left: 15px;
}

.input-icon input {
    padding-left: 40px;
}

.input-icon.col-md-12 .input-group-addon {
    left: 27px;
}

.form-inline {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-inline .input-group {
    width: 38%;
    position: relative;
}

.form-inline .uname,
.form-inline .email,
.form-inline .password {
    position: relative;
}

.pasos {
    text-transform: initial;
    color: var(--color-primary);
    text-transform: uppercase;
}

.card {
    border: 0px solid #f5e6d1;
}

.tab-content {
    border-right: solid 1px #dee2e6;
    border-left: solid 1px #dee2e6;
    border-bottom: solid 1px #dee2e6;
}

/* FRANCISCO */

.disable-link {
    pointer-events: none;
    cursor: default;
}

.select2-container .select2-selection--single {
    height: 3rem !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 1rem !important;
}
.condiciones{
    opacity: 0.65;
    text-overflow: ellipsis;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}
.placelabel{
    opacity: .50!important;
    transform: scale(.82) translateY(-0.5rem) translateX(0.15rem)!important;
}
.placelabel2 {
    opacity: .50!important;
    transform: scale(.82) translateY(0.5rem) translateX(-1.8rem)!important;
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
/**	20. Clients
*************************************************** **/
ul.clients-dotted {
    overflow: hidden;
}

ul.clients-dotted>li {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    display: inline-block;
}

ul.clients-dotted>li a {
    text-align: center;
    display: block;
    opacity: 1;
    pointer-events: none;
}

ul.clients-dotted>li a:hover {
    text-align: center;
    display: block;
    opacity: 0.9;
}

ul.clients-dotted>li img {
    display: inline-block;
    max-width: 80%;
}

ul.clients-dotted>li:after {
    content: '';
    position: absolute;

    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px dashed #e7e2e2;
}

ul.clients-dotted>li:before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px dashed #e7e2e2;
}

.btn-informacion {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 3px;
    border-radius: 5px;
    transition: 0.5s;
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    width: 100%;
}

.btn-informacion:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.btn-comprar {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary);
    text-align:center;
}

.btn-comprar:hover {
    background: var(--color-primary);
    color: #fff;
}
.f-9 {    font-size: 9px !important;}
.f-10 {    font-size: 10px !important;}
.f-12 {    font-size: 12px !important;}
.f-14 {    font-size: 14px !important;}
.f-16 {    font-size: 16px !important;}
.f-18 {    font-size: 18px !important;}
.f-20 {    font-size: 20px !important;}
.f-22 {   font-size: 22px !important;}
.f-24 {    font-size: 24px !important;}
.f-26 {    font-size: 26px !important;}
.f-28 {    font-size: 28px !important;}
.f-30 {    font-size: 30px !important;}
.f-36 {    font-size: 36px !important;}
.f-40 {    font-size: 40px !important;}
.f-48 {    font-size: 48px !important;}
.f-50 {    font-size: 50px !important;}
.fw100 {    font-weight: 100 !important;}
.fw200 {    font-weight: 200 !important;}
.fw300 {    font-weight: 300 !important;}
.fw400 {    font-weight: 400 !important;}
.fw500 {    font-weight: 500 !important;}
.fw600 {    font-weight: 600 !important;}
.fw700 {    font-weight: 700 !important;}
.fw800 {    font-weight: 800 !important;}
.fw900 {    font-weight: 900 !important;}