@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --colorPrincipal: #279ED9;
    --colorSecundario: #FCCE00;
    --colorTercero: #83B23F;
    --colorBorde: rgb(233, 233, 233);
    --colorTexto: #7C7C80;
    --colorWhite: #fff;
    --colorBlack: #000;
    --hoverBoton: #2988bf;
    --fondoGris: #f4f5f6;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Fira Sans Condensed', sans-serif;
}
body p, h1, h2, h3, h4 {
    margin-bottom: 0;|
}
body input, textarea {
    box-shadow: none;
    outline: 0;
}
a {
    color: #000;
    text-decoration: none;
}
.x-azul {
    background-color: var(--colorPrincipal);
}
.x-verde {
    color: var(--colorTercero);
}

/* ------Hover-boton------- */
.btn-global {
    transition: 0.3s;
    background-color: var(--colorSecundario);
    color: var(--colorBlack);
}
.btn-global:hover {
    background-color: var(--colorTercero);
    color: var(--colorWhite);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


/* -------Head-global------ */
.head-global {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.head-global .title-global {
    font-size: 36px;
    font-weight: 700;
    color: var(--colorWhite);
    margin-bottom: 10px;
}
.head-global .title-grey {
    color: var(--colorTexto);
}
.head-global .descrip-global {
    font-size: 24px;
    color: var(--colorWhite);
}
.head-global .descrip-black {
    color: var(--colorBlack);
    width: 100%;
    max-width: 920px;
    margin: auto;
}

/* ---------Header-------- */
.header {
    width: 100%;
    background-color: var(--colorWhite);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.header .content-header {
    width: 100%;
    max-width: 1336px;
    margin: auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-header .left-header {
    display: flex;
    align-items: center;
    gap: 80px;
}
    .left-header .logo-header {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .left-header .logo-header img {
        width: 179px;
    }
    .left-header .logo-header .home {
        font-size: 25px;
        margin-bottom: 0;
        display: flex;
        color: var(--colorTercero);
    }
    .left-header .plus .btn-sumate {
        font-size: 24px;
        font-weight: 700;
        padding: 5px 15px;
        border-radius: 5px;
    }
    .left-header .navigator {
        display: flex;
        align-items: center;
        gap: 44px;
    }
    .left-header .navigator .link-nav {
        font-size: 20px;
        color: var(--colorPrincipal);
    }
    .left-header .navigator .link-nav-sg {
        font-weight: 700;
        color: var(--colorTercero);
    }
    .left-header .navigator .link-nav:hover {
        font-weight: 800;
        text-decoration: underline;
    }
.content-header .mid-header {
    display: flex;
}
.content-header .mid-header img {
    width: 110px;
}
.content-header .right-header {
    display: flex;
}
    .right-header .social-media {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .right-header .social-media .icon-social {
        font-size: 25px;
        color: var(--colorPrincipal);
        transition: 0.3s;
    }
    .right-header .social-media .icon-social:hover {
        color: var(--colorTercero);
    }
    .right-header .menu-mobile {
        font-size: 25px;
        display: flex;
        color: var(--colorTercero);
    }

/* ------Cover------ */
.cover {
    width: 100%;
    height: 550px;
    display: flex;
    position: relative;
}
.cover .back-cover {
    width: 100%;
    height: 100%;
    background-image: url(../img/independientes.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cover .abs-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000088;
    display: flex;
}
    .abs-cover .content-cover {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 0px 20px;
    }
    .content-cover .left-cover .title-cover {
        font-size: 64px;
        font-weight: 700;
        line-height: 64px;
        color: var(--colorWhite);
        margin-bottom: 15px;
    }
    .content-cover .left-cover .descrip-cover {
        font-size: 24px;
        color: var(--colorWhite);
    }
    .content-cover .right-cover {
        text-align: center;
    }
    .content-cover .right-cover img {
        width: 287px;
    }
.cover-single {
    width: 100%;
    height: 600px;
}
.cover-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------Mod-if------- */
.if {
    width: 100%;
}
.if .content-if {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}
.content-if .row-if {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
}
.content-if .row-pad {
    margin-bottom: 50px;
}
    .row-if .left-if {
        width: 100%;
        max-width: 48%;
    }
    .row-if .left-if .form-if {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
        .left-if .form-if .item-form {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
        }
        .left-if .form-if .item-form-two {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
            .left-if input,
            .left-if textarea,
            .left-if .form-select {
                font-size: 20px !important;
                padding: 15px 20px !important;
                font-weight: 300 !important;
                border: none !important;
                box-shadow: none !important;
                border-radius: 10px !important;
            }
            .left-if input {
                background-color: #000;
            }
            .left-if input[type=submit] {
                background-color: var(--colorSecundario) !important;
                font-size: 24px !important;
                color: #000 !important;
                padding-bottom: 10px !important;
                height: auto !important;
                font-weight: 600 !important;
            }
            .left-if input[type=submit]:hover {
                background-color: #000 !important;
                color: #fff !important;
            }

        .left-if .form-if .bot-form {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        .left-if .form-if .bot-form .btn-form {
            font-size: 36px;
            font-weight: 600;
            padding: 10px 40px;
            border-radius: 10px;
        }
        .left-if .text-if {
            width: 100%;
        }
        .left-if .text-if .title-if {
            font-size: 45px;
            font-weight: 600;
            color: var(--colorTexto);
            margin-bottom: 50px;
        }
        .left-if .text-if .paragraph-if {
            font-size: 22px;
            line-height: 32px;
        }
        .left-if .info-if .paragraph-pro {
            font-size: 22px;
            line-height: 32px;
            color: var(--colorWhite);
            text-align: justify;
        }
    .row-if .right-if2 {
        width: 100%;
        /* max-width: 48%; */
    }
    .row-if .right-if {
        width: 100%;
        max-width: 48%;
    }
    .row-if .right-if .vid-ind {
        width: 100%;
    }
        .right-if .vid-ind .video-if {
            width: 100%;
            height: 510px;
            border-radius: 20px;
        }
        .right-if .img-if img {
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
        .right-if .info-if .paragraph-pro {
            font-size: 22px;
            line-height: 32px;
            color: var(--colorWhite);
            text-align: justify;
        }
        .right-if .content-right-if {
            width: 100%;
            display: flex;
        }
            .carousel-img {
                width: 100%;
            }
            .carousel-img .item-img {
                width: 100%;
            }
            .carousel-img .item-img img {
                width: 100%;
                border-radius: 20px;
            }
            .carousel-img .owl-nav.disabled {
                display: inline-flex;
            }
            .carousel-img .owl-prev,
            .carousel-img .owl-next {
                background-color: transparent !important;
                position: absolute;
                top: 250px;
                transition: 0.3s;
            }
            .carousel-img .owl-next {
                right: 15px;
            }
            .carousel-img .owl-prev {
                left: 15px;
            }
            .carousel-img .owl-prev span,
            .carousel-img .owl-next span {
                font-size: 75px;
                width: auto;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--color_4);
                border: 1px solid var(--color_5);
                color: var(--colorWhite) !important;
                background-color: transparent !important;
                border-radius: 10px 0px 0px 10px;
                transition: 0.5s;
                text-shadow: 1px 1px 5px #000;
            }
            .carousel-img .owl-prev span:hover,
            .carousel-img .owl-next span:hover {
                background-color: var(--colorPrimary) !important;
                color: var(--colorWhite) !important;
            }
.content-if .content-comment {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
    .content-comment .item-comment {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 75px;
    }
    .content-comment .item-comment i {
        font-size: 60px;
        color: var(--colorTercero);
    }
    .content-comment .item-comment .line-quote {
        width: 100%;
        height: 1px;
        background-color: var(--colorTercero);
    }
    .content-comment .comment {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        text-align: center;
    }
    .content-comment .comment .descrip-comment {
        font-size: 28px;
    }

/* --------Cards------- */
.cards {
    width: 100%;
}
.cards .content-cards {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px 80px 20px;
}
.content-cards .row-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}
    .row-cards .card-new {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--colorWhite);
        overflow: hidden;
        border-radius: 20px;
        box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
        .card-new .img-card {
            width: 100%;
            height: 185px;
        }
        .card-new .img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-new .text-card {
            width: 100%;
            height: 100%;
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .card-new .text-card .dates-time {
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .card-new .text-card .dates-time .item-date {
            font-size: 16px;
        }
        .card-new .text-card .dates-time i {
            font-size: 5px;
            color: var(--colorPrincipal);
        }
        .card-new .text-card .info-new .title-new {
            font-size: 16px;
            font-weight: 700;
            color: var(--colorPrincipal);
            margin-bottom: 15px;
        }
        .card-new .text-card .info-new .descrip-new {
            font-size: 13px;
            color: var(--colorTexto);
        }
        .card-new .bot-card {
            width: 100%;
            text-align: right;
            margin-top: auto;
        }
        .card-new .bot-card .btn-view {
            font-size: 16px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 10px;
        }
.content-cards .bot-cards {
    width: 100%;
    text-align: right;
}
.content-cards .bot-cards .btn-all {
    font-size: 24px;
    color: var(--colorPrincipal);
}
.content-cards .bot-cards .btn-all:hover {
    font-weight: 800;
    text-decoration: underline;
}

/* -------Galeria------ */
.gallery {
    width: 100%;
}
.gallery .content-gallery {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
}
.content-gallery .row-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 30px;
}
    .row-gallery .img-gallery img {
        width: 100%;
        height: 363px;
        object-fit: cover;
    }
.content-gallery .bot-gallery {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-gallery .bot-gallery .btn-g {
    font-size: 28px;
    color: var(--colorPrincipal);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-gallery .bot-gallery .btn-g:hover {
    font-weight: 800;
    text-decoration: underline;
}
.content-gallery .bot-gallery .btn-g i {
    font-size: 15px;
}

/* ----------News------------ */
.news {
    width: 100%;
}
.news .content-news {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 80px 0px;
}
.content-news .row-news {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
}
    .row-news .box-new {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .row-news .box-new .item-new {
        width: 100%;
        height: 337px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: var(--colorPrincipal);
    }
    .row-news .box-new .item-new img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
    }
    .row-news .box-new .item-new .icon-go {
        position: absolute;
        font-size: 30px;
        color: var(--colorWhite);
        margin-right: 15px;
    }
    .row-news .box-new .item-new .descrip-new {
        width: 100%;
        padding: 45px;
        font-size: 22px;
        line-height: 34px;
        color: var(--colorWhite);
    }
.content-news .bot-news {
    width: 100%;
    text-align: center;
}
.content-news .bot-news .link-more {
    font-size: 28px;
    color: var(--colorPrincipal);
}
.content-news .bot-news .link-more:hover {
    font-weight: 800;
    text-decoration: underline;
}

/* --------Note-------- */
.note {
    width: 100%;
}
.note .content-note {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}
.content-note .head-note {
    width: 100%;
    margin-bottom: 20px;
}
.content-note .head-note .title-note {
    font-size: 40px;
    font-weight: 700;
    color: var(--colorPrincipal);
}
.content-note .dates-note {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.content-note .dates-note .time-tag {
    font-size: 32px;
    font-style: italic;
    color: var(--colorTexto);
    margin-right: 20px;
}
.content-note .dates-note .share-social {
    font-size: 30px;
    color: var(--colorTercero);
}
.content-note .text-note {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
.content-note .text-note p {
    font-size: 22px;
    color: var(--colorBlack);
    text-align: justify;
}
.content-note .text-note ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content-note .text-note ul li {
    font-size: 22px;
    text-align: justify;
}
.content-note .bot-note {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content-note .bot-note .link-page {
    font-size: 28px;
    color: var(--colorPrincipal);
}
.content-note .bot-note .link-page:hover {
    font-weight: 800;
    text-decoration: underline;
}

/* -------------Footer------------ */
.footer {
    width: 100%;
    background-color: var(--colorSecundario);
}
.footer .content-footer {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
    display: flex;
}
.content-footer .col-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
    .col-footer .logo-footer img {
        width: 325px;
    }
    .col-footer .social-footer {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .col-footer .social-footer .icon-footer {
        font-size: 30px;
        color: var(--colorBlack);
        transition: 0.3s;
    }
    .col-footer .social-footer .icon-footer:hover {
        color: var(--colorPrincipal);
    }
    .col-footer .email-footer .email-ind {
        font-size: 25px;
        color: var(--colorBlack);
    }

/* --------Offcanvas-mobile--------- */
.offcanvas.offcanvas-start {
    width: 85%;
}
.offcanvas-header {
    border-bottom: 1px solid #eee;
}
.offcanvas-header .logo-mobile img {
    width: 100px;
}
.offcanvas-body {
    width: 100%;
}
.offcanvas-body .plus-mobile {
    width: 100%;
    margin-bottom: 30px;
}
.offcanvas-body .plus-mobile .btn-mob {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 25px;
    border-radius: 5px;
}
.offcanvas-body .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}
.offcanvas-body .nav-mobile .link-mobile {
    font-size: 20px;
    color: var(--colorPrincipal);
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--colorTercero);
}
.offcanvas-body .nav-mobile .link-mobile:last-child {
    border-bottom: 0;
}
.offcanvas-body .nav-mobile .link-mobile:hover {
    text-decoration: underline;
    font-weight: 600;
}
.bot-canvas {
    width: 100%;
    background-color: var(--colorSecundario);
    text-align: center;
    padding: 20px;
    margin-top: auto;
}
.bot-canvas img {
    width: 200px;
    margin-bottom: 10px;
}
.bot-canvas .social-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.bot-canvas .social-mobile .icon-social {
    font-size: 20px;
    color: var(--colorBlack);
}
.bot-canvas .email-canva {
    font-size: 15px;
}


.nf-field-label,
.nf-form-fields-required {
    display: none;
}
.ninja-forms-field input[type=submit]{
    background-color: red !important;
}



.tituloregistrate {
    color: #fff;
    font-size: 30px;
    width: 100%;
    max-width: 80%;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}
.registrobtn {
    background-color: #25D366;
    color: #fff;
    padding: 7px 50px;
    border-radius: 30px;
    font-size: 23px;
    display: block;
    text-align: center;
    transition: 0.5s;
    width: 100%;
    max-width: 500px;
    margin: auto;
}
.registrobtn:hover {
    background-color: #075E54;
    color: #fff;
}

.right-ifss {
    width: 100%;
    max-width: 100%;
}
.right-ifss .vid-ind {
    width: 100%;
    max-width: 100%;
}


.botonflotante {
    background-color: var(--colorSecundario);
    color: #fff;
    padding: 10px 20px;
    border-left: 10px solid var(--colorPrincipal);
    border-right: 10px solid var(--colorTercero);
    border-radius: 50px;
    font-size: 19px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 300px;
    margin: auto;
    margin-bottom: 20px;
}
.botonflotante:hover {
    background-color: var(--colorTexto);
    color: #fff;
}
.botonflotante:hover a {
    color: #fff;
}