/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Poppins", poppins;
    color: #444444;
    line-height: 1.3;
    overflow-x: hidden;
}

a {
    color: #106eea;
}

    a:hover {
        color: #3b8af2;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", poppins;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #C40404;
        border-top-color: #e2eefd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #C40404;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #000000;
            color: #fff;
        }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 25px 0;
}

    #header.header-scrolled {
        top: 0;
        padding: 15px;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-family: "Poppins", poppins;
    }

        #header .logo a {
            color: #222222;
        }

            #header .logo a span {
                color: #106eea;
            }

        #header .logo img {
            max-height: 50px;
        }

@media (max-width: 992px) {
    #header {
        padding: 15px;
        top: 0;
    }

        #header .logo {
            font-size: 28px;
        }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #181715;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Poppins", poppins;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D92929;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #D92929;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 26px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062b5b;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #106eea;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #222222;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #181715;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #D92929;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

/*--------------------------------------------------------------
# Nosotros Section
--------------------------------------------------------------*/
#nosotros {
    width: 100%;
    padding: 0;
    margin-top: 100px;
}

    #nosotros:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #nosotros .container {
        position: relative;
        padding-top: 132px;
    }

@media (max-width: 992px) {
    #nosotros .container {
        padding-top: 58px;
    }
}

@media (min-width: 1024px) {
    #nosotros {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #nosotros {
        /*height: 100vh;*/
    }
}

@media (max-height: 500px) {
    #nosotros {
        /*height: 120vh;*/
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #181715;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #FFB4B4;
        color: #C40404;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        color: #000000;
    }

        .section-title h3 span {
            color: #C40404;
        }

    .section-title p {
        margin: 15px auto 0 auto;
        font-weight: 600;
        color: #000000;
        text-align: justify;
    }

@media (min-width: 1024px) {
    .section-title p {
        width: 75%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 10px 0;
    background-color: #f1f6fe;
    min-height: 40px;
    margin-top: 134px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 58px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000000;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
}

    .featured-services .icon-box::before {
        content: '';
        position: absolute;
        background: #cbe0fb;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }

    .featured-services .icon-box:hover::before {
        background: #C40404;
        top: 0;
        border-radius: 0px;
    }

.featured-services .icon {
    margin-bottom: 15px;
}

    .featured-services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #C40404;
        transition: all 0.3s ease-in-out;
    }

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

    .featured-services .title a {
        color: #111;
    }

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

.featured-services-container {
    margin-left: 20px;
    margin-right: 20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #000000;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 35px;
    }

        .about .content ul li:first-child {
            margin-top: 35px;
        }

    .about .content ul i {
        background: #fff;
        box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
        font-size: 24px;
        padding: 20px;
        margin-right: 15px;
        color: #C40404;
        border-radius: 50px;
    }

    .about .content ul h5 {
        font-size: 18px;
        color: #000000;
    }

    .about .content ul p {
        font-size: 15px;
    }

.about .content p {
    color: #000000;
    text-align: justify;
}

    .about .content p:last-child {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

    .skills .progress .skill {
        padding: 10px 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: "Poppins", poppins;
        color: #222222;
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: #e2eefd;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 70px 0 60px;
}

    .counts .count-box {
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        background: #f1f6fe;
    }

        .counts .count-box i {
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            background: #C40404;
            padding: 12px;
            color: #fff;
            border-radius: 50px;
            border: 5px solid #fff;
        }

        .counts .count-box span {
            font-size: 36px;
            display: block;
            font-weight: 600;
            color: #062b5b;
        }

        .counts .count-box p {
            padding: 0;
            margin: 0;
            font-family: "Poppins", poppins;
            font-size: 14px;
        }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 60px 0;
    text-align: center;
}

    .clients img {
        max-width: 100%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .clients img:hover {
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
}

    .services .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .services .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .services .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
            color: #C40404;
        }

        .services .icon-box:hover .icon {
            border-color: #C40404;
        }

/*--------------------------------------------------------------
# Política SGC
--------------------------------------------------------------*/
.politica {
    padding: 60px 0;
    text-align: center;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .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;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials .owl-nav, .testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    .testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4) !important;
    }

        .testimonials .owl-dot.active {
            background-color: #106eea !important;
        }

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px 8px 15px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #C40404;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
}

    .portfolio .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .portfolio .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .portfolio .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .portfolio .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .portfolio .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .portfolio .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .portfolio .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .portfolio .icon-box:hover h4 a, .portfolio .icon-box:hover .icon i {
            color: #C40404;
        }

        .portfolio .icon-box:hover .icon {
            border-color: #C40404;
        }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 30px;
}

    .portfolio-details .portfolio-details-container {
        position: relative;
    }

    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }

        .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: center;
        }

        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }

            .portfolio-details .portfolio-details-carousel .owl-dot.active {
                background-color: #C40404 !important;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            color: #000000;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

            .portfolio-details .portfolio-info ul li strong {
                list-style: none;
                padding: 0;
                font-size: 15px;
                color: #000000;
            }

    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }

        .portfolio-details .portfolio-description h2 {
            width: 100%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000000;
        }

        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
            color: #000000;
        }

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

    .team .member {
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
    }

        .team .member .member-img {
            position: relative;
            overflow: hidden;
        }

        .team .member .social {
            position: absolute;
            left: 0;
            bottom: 30px;
            right: 0;
            opacity: 0;
            transition: ease-in-out 0.3s;
            text-align: center;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #222222;
                margin: 0 3px;
                padding-top: 7px;
                border-radius: 4px;
                width: 36px;
                height: 36px;
                background: rgba(16, 110, 234, 0.8);
                display: inline-block;
                transition: ease-in-out 0.3s;
                color: #fff;
            }

                .team .member .social a:hover {
                    background: #3b8af2;
                }

            .team .member .social i {
                font-size: 18px;
            }

        .team .member .member-info {
            padding: 25px 15px;
        }

            .team .member .member-info h4 {
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 18px;
                color: #222222;
            }

            .team .member .member-info span {
                display: block;
                font-size: 13px;
                font-weight: 400;
                color: #aaaaaa;
            }

            .team .member .member-info p {
                font-style: italic;
                font-size: 14px;
                line-height: 26px;
                color: #777777;
            }

        .team .member:hover .social {
            opacity: 1;
            bottom: 15px;
        }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .pricing .box h3 {
        font-weight: 400;
        margin: -20px -20px 20px -20px;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #777777;
        background: #f8f8f8;
    }

    .pricing .box h4 {
        font-size: 36px;
        color: #106eea;
        font-weight: 600;
        font-family: "Poppins", poppins;
        margin-bottom: 20px;
    }

        .pricing .box h4 sup {
            font-size: 20px;
            top: -15px;
            left: -3px;
        }

        .pricing .box h4 span {
            color: #bababa;
            font-size: 16px;
            font-weight: 300;
        }

    .pricing .box ul {
        padding: 0;
        list-style: none;
        color: #444444;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }

        .pricing .box ul li {
            padding-bottom: 16px;
        }

        .pricing .box ul i {
            color: #106eea;
            font-size: 18px;
            padding-right: 4px;
        }

        .pricing .box ul .na {
            color: #ccc;
            text-decoration: line-through;
        }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #106eea;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", poppins;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #3b8af2;
    }

.pricing .featured h3 {
    color: #fff;
    background: #106eea;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #106eea;
    color: #fff;
}

/*--------------------------------------------------------------
# Sistemas
--------------------------------------------------------------*/
.sistemas .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
}

    .sistemas .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .sistemas .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .sistemas .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .sistemas .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .sistemas .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .sistemas .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .sistemas .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .sistemas .icon-box:hover h4 a, .sistemas .icon-box:hover .icon i {
            color: #C40404;
        }

        .sistemas .icon-box:hover .icon {
            border-color: #C40404;
        }


/*--------------------------------------------------------------
# Galería Sistemas Section
--------------------------------------------------------------*/
#galeriaSistemas {
    width: 100%;
    height: calc(100vh - 320px);
    padding: 0;
    overflow: hidden;
}

    #galeriaSistemas .carousel-item {
        width: 100%;
        height: calc(100vh - 320px);
        background-size: cover;
        background-position: top right;
        background-repeat: round;
        overflow: hidden;
    }

        #galeriaSistemas .carousel-item::before {
            content: '';
            background-color: rgba(13, 30, 45, 0.2);
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            overflow: hidden;
        }

    #galeriaSistemas .carousel-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        overflow: hidden;
    }

    #galeriaSistemas .carousel-content {
        text-align: center;
        padding: 20px;
        border-radius: 20px;
    }

@media (max-width: 992px) {
    #galeriaSistemas, #galeriaSistemas .carousel-item {
        height: calc(100vh - 320px);
    }

        #galeriaSistemas .carousel-content.container {
            padding: 0 50px;
        }
}



#galeriaSistemas .container {
    position: relative;
    padding-top: 132px;
}

@media (max-width: 992px) {
    #galeriaSistemas .container {
        padding-top: 58px;
    }
}

#galeriaSistemas i {
    color: #ffffff;
}

#galeriaSistemas h2 {
    margin: 0;
    font-weight: 700;
    line-height: 56px;
    color: #ffffff;
    font-family: "Poppins", poppins;
}

    #galeriaSistemas h2 span {
        color: #C40404;
    }

#galeriaSistemas h6 {
    color: #ffffff;
    margin: 5px 0 20px 0;
    font-weight: 400;
}

#galeriaSistemas .btn-get-started {
    font-family: "Poppins", poppins;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #C40404;
}

    #galeriaSistemas .btn-get-started:hover {
        background: #000000;
    }

#galeriaSistemas .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 25px 8px 40px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    position: relative;
    font-weight: 600;
}

    #galeriaSistemas .btn-watch-video i {
        color: #C40404;
        font-size: 32px;
        position: absolute;
        left: 0;
        top: 7px;
        transition: 0.3s;
    }

    #galeriaSistemas .btn-watch-video:hover {
        color: #C40404;
    }

        #galeriaSistemas .btn-watch-video:hover i {
            color: #DD0C0C;
        }

@media (min-width: 1024px) {
    #galeriaSistemas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #galeriaSistemas {
        /*height: 100vh;*/
    }

        #galeriaSistemas h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #galeriaSistemas h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #galeriaSistemas .btn-get-started, #galeriaSistemas .btn-watch-video {
            font-size: 13px;
        }
}

@media (max-height: 500px) {
    #galeriaSistemas {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Cursos
--------------------------------------------------------------*/
.cursos .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
}

    .cursos .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .cursos .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .cursos .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .cursos .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .cursos .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .cursos .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .cursos .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .cursos .icon-box:hover h4 a, .cursos .icon-box:hover .icon i {
            color: #C40404;
        }

        .cursos .icon-box:hover .icon {
            border-color: #C40404;
        }

/*--------------------------------------------------------------
# Noticias
--------------------------------------------------------------*/
.noticias .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
}

    .noticias .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .noticias .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .noticias .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .noticias .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .noticias .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .noticias .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .noticias .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .noticias .icon-box:hover h4 a, .noticias .icon-box:hover .icon i {
            color: #C40404;
        }

        .noticias .icon-box:hover .icon {
            border-color: #C40404;
        }

/*--------------------------------------------------------------
# Responsabilidad Social
--------------------------------------------------------------*/
.responsabilidad .icon-box {
    text-align: center;
    border: 2px solid #000000;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
}

    .responsabilidad .icon-box img {
        margin: 0 auto;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
        border-radius: 10px;
    }

    .responsabilidad .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .responsabilidad .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .responsabilidad .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .responsabilidad .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .responsabilidad .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .responsabilidad .icon-box:hover {
        border-color: #C40404;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .responsabilidad .icon-box:hover h4 a, .responsabilidad .icon-box:hover .icon i {
            color: #C40404;
        }

        .responsabilidad .icon-box:hover .icon {
            border-color: #C40404;
        }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

    .faq .faq-list {
        padding: 0;
        list-style: none;
    }

        .faq .faq-list li {
            padding: 0 0 20px 25px;
        }

        .faq .faq-list a {
            display: block;
            position: relative;
            font-family: #106eea;
            font-size: 18px;
            font-weight: 500;
        }

        .faq .faq-list i {
            font-size: 18px;
            position: absolute;
            left: -25px;
            top: 6px;
        }

        .faq .faq-list p {
            margin-bottom: 20px;
            font-size: 15px;
        }

        .faq .faq-list a.collapse {
            color: #106eea;
        }

        .faq .faq-list a.collapsed {
            color: #343a40;
        }

            .faq .faq-list a.collapsed:hover {
                color: #106eea;
            }

            .faq .faq-list a.collapsed i::before {
                content: "\eab2" !important;
            }

/*--------------------------------------------------------------
# Bolsa de Trabajo
--------------------------------------------------------------*/
.bolsaTrabajo .info-box {
    color: #000000;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

    .bolsaTrabajo .info-box i {
        font-size: 32px;
        color: #C40404;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #C40404;
    }

    .bolsaTrabajo .info-box h3 {
        font-size: 20px;
        color: #000000;
        font-weight: 700;
        margin: 10px 0;
    }

    .bolsaTrabajo .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.bolsaTrabajo .php-email-form {
    padding-top: 30px;
}

    .bolsaTrabajo .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .bolsaTrabajo .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #D92929;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .bolsaTrabajo .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .bolsaTrabajo .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .bolsaTrabajo .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .bolsaTrabajo .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #D92929;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .bolsaTrabajo .php-email-form input, .bolsaTrabajo .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0;
    }

        .bolsaTrabajo .php-email-form input:focus, .bolsaTrabajo .php-email-form textarea:focus {
            border-color: #D92929;
        }

    .bolsaTrabajo .php-email-form input {
        padding: 20px 15px;
    }

    .bolsaTrabajo .php-email-form textarea {
        padding: 12px 15px;
    }

    .bolsaTrabajo .php-email-form button[type="submit"] {
        background: #C40404;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .bolsaTrabajo .php-email-form button[type="submit"]:hover {
            background: #000000;
        }

/*--------------------------------------------------------------
# Cotizaciones
--------------------------------------------------------------*/
.cotizacion .info-box {
    color: #000000;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

    .cotizacion .info-box i {
        font-size: 32px;
        color: #C40404;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #C40404;
    }

    .cotizacion .info-box h3 {
        font-size: 20px;
        color: #000000;
        font-weight: 700;
        margin: 10px 0;
    }

    .cotizacion .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.cotizacion .php-email-form {
    padding-top: 30px;
}

    .cotizacion .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .cotizacion .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #D92929;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .cotizacion .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .cotizacion .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .cotizacion .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .cotizacion .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #D92929;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .cotizacion .php-email-form input, .cotizacion .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0;
    }

        .cotizacion .php-email-form input:focus, .cotizacion .php-email-form textarea:focus {
            border-color: #D92929;
        }

    .cotizacion .php-email-form input {
        padding: 20px 15px;
    }

    .cotizacion .php-email-form textarea {
        padding: 12px 15px;
    }

    .cotizacion .php-email-form button[type="submit"] {
        background: #C40404;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .cotizacion .php-email-form button[type="submit"]:hover {
            background: #000000;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #181715;
    padding: 10px 0 10px 0;
    color: #ffffff;
    font-size: 14px;
    /*background: #f1f6fe;*/
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #f1f6fe;
        text-align: center;
        font-size: 15px;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
            text-align: left;
        }

            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #106eea;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type="submit"]:hover {
                    background: #0d58ba;
                }

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #f6f9fe;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 24px;
                margin: 0 0 15px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

                #footer .footer-top .footer-contact h3 span {
                    color: #C40404;
                }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Poppins", poppins;
                color: #000000;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #000000;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #C40404;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #000000;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #C40404;
                    }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #C40404;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #000000;
                color: #fff;
                text-decoration: none;
            }

    #footer .copyright {
        text-align: center;
        float: left;
    }

    #footer .credits {
        float: right;
        text-align: center;
        font-size: 13px;
        color: #444444;
    }

@media (max-width: 768px) {
    #footer .copyright, #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

.main-timeline {
    font-family: 'Poppins', poppins;
    position: relative;
}

    .main-timeline:after {
        content: '';
        display: block;
        clear: both;
    }

    .main-timeline .timeline {
        width: 50.1%;
        padding: 20px 0 20px 100px;
        float: right;
        position: relative;
        z-index: 1;
    }

        .main-timeline .timeline:before,
        .main-timeline .timeline:after {
            content: '';
            background: #C40404;
            height: 100%;
            width: 28px;
            position: absolute;
            left: -11px;
            top: 0;
        }

        .main-timeline .timeline:after {
            background: #C40404;
            height: 18px;
            width: 200px;
            box-shadow: 0 0 10px -5px #000;
            transform: translateY(-50%);
            top: 50%;
            left: -90px;
        }

    .main-timeline .timeline-content {
        color: #517d82;
        background-color: #C40404;
        padding: 0 0 0 80px;
        box-shadow: 0 0 20px -10px #000;
        border-radius: 10px;
        display: block;
    }

        .main-timeline .timeline-content:hover {
            color: #517d82;
            text-decoration: none;
        }

    .main-timeline .timeline-icon {
        color: #fff;
        background-color: #C40404;
        font-size: 35px;
        text-align: center;
        line-height: 62px;
        height: 60px;
        width: 60px;
        border-radius: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: -100px;
        top: 50%;
        z-index: 1;
    }

    .main-timeline .timeline-year {
        color: #000000;
        background-color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        line-height: 93px;
        height: 113px;
        width: 113px;
        border: 6px solid #C40404;
        box-shadow: 0 0 10px -5px #000;
        border-radius: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: 50px;
        top: 50%;
        z-index: 1;
    }

    .main-timeline .inner-content {
        background-color: #fff;
        padding: 10px;
    }

    .main-timeline .title {
        color: #C40404;
        font-size: 22px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .main-timeline .description {
        font-size: 14px;
        letter-spacing: 1px;
        margin: 0;
    }

    .main-timeline .timeline:nth-child(even) {
        padding: 20px 100px 20px 0;
        float: left;
    }

        .main-timeline .timeline:nth-child(even):before {
            left: auto;
            right: -14.5px;
        }

        .main-timeline .timeline:nth-child(even):after {
            left: auto;
            right: -90px;
        }

        .main-timeline .timeline:nth-child(even) .timeline-content {
            padding: 0 80px 0 0;
        }

        .main-timeline .timeline:nth-child(even) .timeline-icon {
            left: auto;
            right: -100px;
        }

        .main-timeline .timeline:nth-child(even) .timeline-year {
            left: auto;
            right: 50px;
        }

    .main-timeline .timeline:nth-child(4n+2):before,
    .main-timeline .timeline:nth-child(4n+2):after {
        background: #000000;
    }

    .main-timeline .timeline:nth-child(4n+2) .timeline-content,
    .main-timeline .timeline:nth-child(4n+2) .timeline-icon {
        background-color: #000000;
    }

    .main-timeline .timeline:nth-child(4n+2) .timeline-year {
        border-color: #000000;
    }

    .main-timeline .timeline:nth-child(4n+2) .title {
        color: #000000;
    }

    .main-timeline .timeline:nth-child(4n+3):before,
    .main-timeline .timeline:nth-child(4n+3):after {
        background: #C40404;
    }

    .main-timeline .timeline:nth-child(4n+3) .timeline-content,
    .main-timeline .timeline:nth-child(4n+3) .timeline-icon {
        background-color: #C40404;
    }

    .main-timeline .timeline:nth-child(4n+3) .timeline-year {
        border-color: #C40404;
    }

    .main-timeline .timeline:nth-child(4n+3) .title {
        color: #C40404;
    }

    .main-timeline .timeline:nth-child(4n+4):before,
    .main-timeline .timeline:nth-child(4n+4):after {
        background: #000000;
    }

    .main-timeline .timeline:nth-child(4n+4) .timeline-content,
    .main-timeline .timeline:nth-child(4n+4) .timeline-icon {
        background-color: #000000;
    }

    .main-timeline .timeline:nth-child(4n+4) .timeline-year {
        border-color: #000000;
    }

    .main-timeline .timeline:nth-child(4n+4) .title {
        color: #000000;
    }

@media only screen and (max-width:1200px) {
    .main-timeline .timeline:before {
        left: -12.5px;
    }

    .main-timeline .timeline:nth-child(even):before {
        right: -14px;
    }
}

@media only screen and (max-width:990px) {
    .main-timeline .timeline:before {
        left: -12.5px;
    }
}

@media only screen and (max-width:767px) {
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 20px 0 20px 37px;
    }

        .main-timeline .timeline:before {
            left: 0;
        }

        .main-timeline .timeline:nth-child(even):before {
            right: auto;
            left: 0;
        }

        .main-timeline .timeline:after,
        .main-timeline .timeline:nth-child(even) .timeline:after {
            display: none;
        }

        .main-timeline .timeline-icon,
        .main-timeline .timeline:nth-child(even) .timeline-icon {
            left: 0;
            display: none;
        }

        .main-timeline .timeline-year,
        .main-timeline .timeline:nth-child(even) .timeline-year {
            height: 75px;
            width: 75px;
            line-height: 60px;
            font-size: 25px;
            left: 1px;
        }

        .main-timeline .timeline-content,
        .main-timeline .timeline:nth-child(even) .timeline-content {
            padding: 0 0 0 40px;
        }
}

.main-timeline3 {
    overflow: hidden;
    position: relative;
}

    .main-timeline3:before {
        content: "";
        width: 10px;
        height: 100%;
        border: 3px solid #959595;
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-timeline3 .timeline {
        width: 50%;
        padding: 10px 60px 10px 100px;
        float: right;
        position: relative;
    }

        .main-timeline3 .timeline:before {
            content: "";
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #C40404;
            border: 5px solid #fff;
            box-shadow: 0 0 1px 5px #C40404;
            position: absolute;
            top: 42px;
            left: -20px;
        }

    .main-timeline3 .timeline-content {
        display: block;
        background: #e9e9e7;
        padding: 70px 30px 20px;
        box-shadow: 0 0 10px rgba(196,4,4,1) inset;
        position: relative;
    }

        .main-timeline3 .timeline-content:hover {
            text-decoration: none;
        }

    .main-timeline3 .year {
        display: block;
        width: 80%;
        height: 50px;
        background: #C40404;
        padding: 0 0 0 50px;
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        line-height: 50px;
        box-shadow: 0 0 20px rgba(0,0,0,.4) inset;
        border-radius: 10px 10px 10px 0;
        position: absolute;
        top: 20px;
        left: -20px;
    }

        .main-timeline3 .year:before {
            content: "";
            border-top: 40px solid #C40404;
            border-left: 20px solid transparent;
            border-bottom: 20px solid transparent;
            position: absolute;
            bottom: -60px;
            left: 0;
        }

    .main-timeline3 .title {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        color: #4a4a4a;
    }

    .main-timeline3 .description {
        font-size: 14px;
        color: #000000;
        margin: 10px 0 5px;
        text-align: justify;
    }

    .main-timeline3 .timeline:nth-child(2n) {
        padding: 10px 100px 10px 60px;
        text-align: right;
    }

        .main-timeline3 .timeline:nth-child(2n):before {
            left: auto;
            right: -20px;
            background: #000000;
            box-shadow: 0 0 1px 5px #000000;
        }

        .main-timeline3 .timeline:nth-child(2n) .year {
            padding-right: 50px;
            border-radius: 10px 10px 0;
            left: auto;
            right: -20px;
            background: #000000;
        }

            .main-timeline3 .timeline:nth-child(2n) .year:before {
                border-left: none;
                border-right: 20px solid transparent;
                left: auto;
                right: 0;
                border-top-color: #000000;
            }

    .main-timeline3 .timeline:nth-child(2) {
        margin-top: 140px;
    }

    .main-timeline3 .timeline:nth-child(odd) {
        margin: -140px 0 0;
    }

    .main-timeline3 .timeline:nth-child(even) {
        margin-bottom: 60px;
    }

    .main-timeline3 .timeline:first-child, .main-timeline3 .timeline:last-child:nth-child(even) {
        margin: 0;
    }

    .main-timeline3 .timeline:nth-child(3n):before {
        background: #C40404;
        box-shadow: 0 0 1px 5px #C40404;
    }

    .main-timeline3 .timeline:nth-child(3n) .year {
        background: #C40404;
    }

        .main-timeline3 .timeline:nth-child(3n) .year:before {
            border-top-color: #C40404;
        }

    .main-timeline3 .timeline:nth-child(4n):before {
        background: #000000;
        box-shadow: 0 0 1px 5px #000000;
    }

    .main-timeline3 .timeline:nth-child(4n) .year {
        background: #000000;
    }

        .main-timeline3 .timeline:nth-child(4n) .year:before {
            border-top-color: #000000;
        }

@media only screen and (max-width:990px) {
    .main-timeline3:before {
        top: 8%;
    }

    .main-timeline3 .timeline {
        padding: 10px 10px 10px 100px;
    }

        .main-timeline3 .timeline:nth-child(2n) {
            padding: 10px 100px 10px 10px;
        }
}

@media only screen and (max-width:767px) {
    .main-timeline3:before {
        width: 8px;
        top: 0;
        left: 12px;
        transform: translateX(0);
    }

    .main-timeline3 .timeline, .main-timeline3 .timeline:nth-child(even), .main-timeline3 .timeline:nth-child(odd) {
        width: 100%;
        float: none;
        text-align: left;
        padding: 0 0 0 60px;
        margin: 0 0 30px;
    }

        .main-timeline3 .timeline:before, .main-timeline3 .timeline:nth-child(2n):before {
            width: 20px;
            height: 20px;
            border: 3px solid #fff;
            top: 38px;
            left: 6px;
        }

        .main-timeline3 .timeline:nth-child(2n) .year {
            right: auto;
            left: -20px;
            border-radius: 10px 10px 10px 0;
        }

            .main-timeline3 .timeline:nth-child(2n) .year:before {
                border-left: 20px solid transparent;
                border-bottom: 20px solid transparent;
                border-right: none;
                right: auto;
                left: 0;
            }
}

.nav-tabs {
    border-bottom: 3px solid #000000;
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        background-color: #000000;
        font-weight: bold;
    }

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #ffffff;
    }

.nav-link {
    color: #000000;
    font-weight: bold;
    height: 100%;
}

    .nav-link:hover {
        color: #C40404;
    }

.card {
    height: 100%;
}

.card-header {
    background-color: #C40404;
    color: #ffffff;
    font-weight: bold;
}

.card-title {
    color: #C40404;
    font-weight: bold;
}

.card-img, .card-img-top {
    height: 200px;
}

dl, ol, ul {
    color: #000000;
}

.justify-content-center {
    justify-content: center !important;
}

.page-link {
    color: #000000;
    box-shadow: none !important;
}

    .page-link:hover {
        color: #C40404;
    }

.page-item.active .page-link {
    background-color: #C40404;
    border-color: #C40404;
}

.btn-ver-mas {
    font-family: "Poppins", poppins;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #C40404;
}

.modal-header {
    border-bottom: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-container {
    height: 80vh;
}

.swiper-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-slide > .title {
        position: absolute;
        top: 60%;
        color: transparent;
        font-size: 40px;
        font-weight: bold;
    }

.swiper-slide-active > .title {
    animation-name: fade-in;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    color: #ffffff;
    font-weight: bolder;
    text-shadow: 4px 4px rgba(24,23,21,0.7);
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    margin-left: 20px;
    color: #C40404;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    margin-right: 20px;
    color: #C40404;
}

.form-row > .col, .form-row > [class*=col-] {
    padding-right: 20px;
    padding-left: 20px;
}

input[type=radio] {
    accent-color: #D92929;
}

input[type=checkbox] {
    accent-color: #D92929;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #4F4F4F;
    }

.custom {
}

#cuadro {
    background-color: #181715;
    width: 400px;
    padding: 30px;
    position: absolute;
    top: 400px;
    left: 100px;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    #cuadro {
        left: 10px;
        width: 100%;
    }
}

.down:hover {
    opacity: .6;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D92929' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D92929' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next, .carousel-control-prev {
    color: #D92929;
}

    .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
        color: #D92929;
    }

#arrow:hover {
    animation: scale 500ms ease-in-out forwards;
}

@keyframes scale {
    to {
        transform: scale(1.2);
    }
}

@media screen and (max-width: 720px) {
    #containerArrow {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .swiper-container {
        height: 50vh;
    }
}

#permisos .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", poppins;
}

    #permisos .logo img {
        max-height: 100px;
    }
