﻿/*:root {
    --background-page: #fff;
    --color: #ccc;
    --inner-blade: #72c02c;
    --outer-blade: white;
    --rotor: #194988;
    --disa-white-a: rgba(255, 255, 255, 0.8);
    --disa-grey: #6d6e71;
    --disa-light-grey: #ededef;
    --disa-yellow: #ffd300;
    --disa-light-yellow: #fddb31;
    --disa-yellow-dark: #a3a030;
    --disa-copper: #796a1e;
    --disa-light-copper: #857500;
    --disa-green: #00a074;
    --disa-colibry-green: #77ac53;
    --disa-blue: #0063ac;
    --disa-light-blue: #35709e;
    --disa-dark-blue: #052c52;
    --disa-gradient-1: #004b87;
    --disa-gradient-2: #23669b;
    --disa-background-colorhint-gradient: linear-gradient( to top, var(--disa-blue), 20%, var(--disa-light-blue) );
    --disa-background-diagonal-gradient: linear-gradient( to bottom right, var(--disa-gradient-1), var(--disa-gradient-2) );
}
*/

:root {
    --background-page: #fff;
    --color: #ccc;
    --inner-blade: #72c02c;
    --outer-blade: white;
    --rotor: #194988;
    --disa-white-a: rgba(255, 255, 255, 0.8);
    --disa-grey: #bdbcbc;
    --disa-light-grey: #ededef;
    --disa-dark-grey: #636363;
    --disa-yellow: #f8e616;
    --disa-light-yellow: #fddb31;
    --disa-dark-yellow: #fbce07;
    --disa-light-copper: #9f8e10;
    --disa-copper: #857500;
    --disa-green: #00a074;
    --disa-light-green: #66cc99;
    --disa-dark-green: #009966;
    --disa-green: #00a074;
    --disa-colibry-green: #77ac53;
    --disa-blue: #0063ac;
    --disa-light-blue: #97d2df;
    --disa-dark-blue: #194988;
    --disa-gradient-1: #004b87;
    --disa-gradient-2: #23669b;
    --disa-background-colorhint-gradient: linear-gradient( to top, var(--disa-blue), 20%, var(--disa-light-blue) );
    --disa-background-diagonal-gradient: linear-gradient( to bottom right, var(--disa-gradient-1), var(--disa-gradient-2) );
}

/*-----------------------------------------------------------------------------*/

.disa_italic {
    font-family: DisaSun-RegularItalic !important;
}


.disa_copper {
    color: #79600D !important;
    font-family: "DisaSun-Regular"
}

.disa_blue {
    color: var(--disa-dark-blue) !important;
    font-family: "DisaSun-Regular"
}

.bg-light-grey-grad {
    background: linear-gradient(0deg, #fff 0%, var(--disa-light-grey) 10%, var(--disa-light-grey) 80%, #fff 100%);
}

.bg-light-grey {
    background-color: var(--disa-light-grey)
} 

.form-check-label a:hover {
    color: #194988;
    text-decoration: underline;
}

footer a, a:hover, span, small {
    color: white;
}

    footer
    {
        font-size:0.9em
    }

.yellow-bar {
    height: 35px;
    background-color: var(--disa-yellow);
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 15%);
}


/*----------------------------------------------------------------------------------------------*/

.secondary-menu {
    z-index: 3;
    color: #fff;
}

.secondary-menu a {
 
    color: #fff;
}


/*----------------------------------------------------------------------------------------------*/

#bannerContainer {
    margin: 6rem 0 3rem 0;
}

@media only screen and (max-width: 768px) {
    #bannerContainer {
        margin: 3rem 0;
    }
    
    #formDesktop{
        margin-top: -1rem;
    }
}


/*----------------------------------------------------------------------------------------------*/
a:hover {
    text-decoration: none;
}

.np {
    padding: 0px;
}

.soluciones {
}

    .soluciones ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        list-style: outside none none;
        padding: 0;
    }

        .soluciones ul li {
            background-color: #eeeeee;
            background-size: cover;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            display: block;
            height: 250px;
            margin: 5px;
            width: 32%;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }

            .soluciones ul li:after {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                background-color: #194988aa;
                transition: all 0.3s;
                mix-blend-mode: multiply;
            }

            .soluciones ul li:nth-child(1) {
                background-image: url('../img/soluciones/1.png');
            }


            .soluciones ul li:nth-child(2) {
                background-image: url('../img/soluciones/2.png');
            }

            .soluciones ul li:nth-child(3) {
                background-image: url('../img/soluciones/3.png');
            }

            .soluciones ul li:nth-child(4) {
                background-image: url('../img/soluciones/4.png');
            }

            .soluciones ul li:nth-child(5) {
                background-image: url('../img/soluciones/5.png');
            }

            .soluciones ul li:nth-child(6) {
                background-image: url('../img/soluciones/6.png');
            }

            .soluciones ul li .soluciones-title {
                left: 50%;
                position: absolute;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 75%;
                z-index: 1;
                transition: all 0.3s;
                text-align: center;
                font-weight: bold;
            }

                .soluciones ul li .soluciones-title h4 {
                    color: #fff;
                    font-size: 28px;
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
                }

                .soluciones ul li .soluciones-title img {
                    width: 15%
                }

            .soluciones ul li .fptext {
                display: none;
                font-size: 16px;
                left: 50%;
                position: absolute;
                text-align: center;
                top: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.3s ease 0s;
                width: 65%;
                z-index: 1;
            }

                .soluciones ul li .fptext p {
                    color: #fff;
                    margin: 0 0 1rem 0;
                    font-weight: 500;
                }

                .soluciones ul li .fptext a {
                    color: #fff;
                    border-color: #fff;
                    background-color: #1949885e;
                }

            .soluciones ul li:hover {
                box-shadow: 0 0 1rem 1rem #1949885e inset;
            }

                .soluciones ul li:hover:after {
                    background-color: rgba(22, 22, 22, 50%);
                }

                .soluciones ul li:hover .soluciones-title {
                    display: none;
                }

                .soluciones ul li:hover .fptext {
                    display: block;
                }


@media only screen and (max-width: 768px) {
    #scroll_soluciones {
        padding: 0 !important;
    }

    .soluciones-content {
        padding: 0 !important;
        width: 100%;
    }
}


/*----------------------------------------------------------------------------------------*/
.ventaja h4, .ventaja p {
    color: var(--disa-dark-blue);
}

.ventaja {
    padding: 1rem;
}

    .ventaja p {
        font-size: 15px;
    }

    .ventaja img {
        height: 7rem;
    }


@media only screen and (max-width: 768px) {

    .ventaja {
        padding: 0rem 1rem;
    }

        .ventaja h4, .ventaja p {
            margin: 0;
        }

    .ventaja-content {
        display: flex;
        margin-bottom: 2rem;
        align-items: center;
    }

    .ventaja-rigth {
        flex-direction: row;
    }

    .ventaja-left {
        flex-direction: row-reverse;
    }
}

/*----------------------------------------------------------------------------------------*/
    #scroll_exitos{
        padding: 0 8rem;

    }


@media only screen and (max-width: 768px) {

    #scroll_exitos {
        padding: 0;
    }

    .swiper-exitos {
        padding: 1rem !important;
    }

}


/*----------------------------------------------------------------------------------------*/
.dropdown {
    border-bottom: 1px solid var(--disa-grey);
    margin-top: 1rem;
}

    .dropdown h5 {
        margin: 0;
        font-weight: 100;
    }

    .dropdown .card-body p {
        margin-bottom: 0.5rem;
    }

.q1-list li {
    list-style: none;
    padding-left: 30px;
    background-image: url('assets/img/icons/icon_check.svg');
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: left top;
}

.q2-list li {
    list-style: none;
    padding-left: 30px;
    background-image: url('assets/img/icons/icon_bombilla.svg');
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: left top;
}

/*----------------------------------------------------------------------------------------*/












