/*GALERIAS*/
.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    justify-items: center;
    justify-self: center;
}

.foto-item {
    border: 2px solid #4f4d4d;
    padding: 5px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

    .foto-item img {
        width: 200px;
        height: 110px;
        object-fit: cover;
        display: block;
    }

#visor {
    z-index: 100;
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
    padding-top: 50px;
}

    #visor img {
        max-width: 90%;
        max-height: 90%;
        border: 5px solid white;
    }


/*GALERIAS*/



div, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Klik-Light';
}

html {
    height: 100%;
    font-size: 14px;
}

body {
    position: relative;
    min-height: 100%;
    background: #2F3032;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(0, 0, 0, 0.08);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
    letter-spacing: 4px;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

    p highlight {
        font-weight: 600;
        color: #ff9460;
    }

    p:last-child {
        margin-bottom: 0px;
    }

code {
    font-size: 0.875rem;
}
/** LLAVE color barra top*/
nav.navbar {
    height: 110px;
    border: none;
    will-change: transform;
    padding-top: 0px;
    margin-top: 0px;
    background-color: #ff9461;
    transition: ease-out .2s all;
}

    nav.navbar.show-color {
        height: 70px;
        padding: 10px;
        background-color: rgba(0,0,0,0.90);
        transition: ease-out .2s all;
    }

        nav.navbar.show-color li a {
            margin-top: 0px;
            transition: ease-out .2s all;
        }

    nav.navbar.mover_menu li a {
        padding-top: 10px;
        transition: ease-out .2s all;
    }
/** LLAVE fondo menu en mobil y scroll abajo*/
.navbar-home {
    visibility: visible;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    height: auto;
    width: auto;
    background-color: transparent;
}

    .navbar-home:hover {
        text-decoration: none;
    }


    /*** LLAVE imagen logo menu mobil y scroll abajo*/
    .navbar-home svg {
        width: 30px;
        height: 10px;
        fill: #BDC4D0;
        background-color: #b2a5e5;
    }

.logotipo_visible {
    display: block;
}

.logotipo_negro {
    filter: invert(0%);
    animation: fadeIn .2s both;
}

.logotipo_blanco {
    filter: invert(100%);
    animation: fadeIn .2s both;
}



.navbar-brand {
    position: relative;
    height: 70px;
    padding: 0 28px 0 15px;
    padding: 0 28px 0 45px;
    font-size: 20px;
    font-weight: 300;
    line-height: 80px;
    letter-spacing: 1px;
    color: #e7e6f1;
    vertical-align: middle;
}

    .navbar-brand:before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0px;
        height: 44px;
        width: 128px;
        background: none;
        border: 2px solid white;
        border-radius: 16px;
        -webkit-transform: translate(0, -50%);
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate(0, -50%);
        transform: translate3d(0, -50%, 0);
    }

    .navbar-brand:hover, .navbar-brand:focus {
        color: white;
    }

    .navbar-brand i.material-icons {
        position: absolute;
        top: 50%;
        right: 0px;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

/* LLAVE menu en mobil abierto*/
.navbar-toggle {
    height: 50px;
    margin: 0px 0px 0px 0px;
    padding: 10px;
    color: black;
    border: none;
    background-color: #fff;
    transition: ease-in .5s all;
}
    /* LLAVE menu en mobil cerrado*/
    .navbar-toggle.collapsed {
        color: #fff;
        padding: 10px;
        background-color: black;
        border: solid 0px #fff;
        transition: ease-in .5s all;
    }


/** LLAVE fondo menu abierto en mobil*/
ul.navbar-nav {
    color: #ec8700;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 500;
}

    /*LLAVE FONDO TEXTO MENU TOP*/
    ul.navbar-nav > li > a {
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 1px;
        font-family: 'Aretha Light';
        margin-top: 5px;
        background: rgba(0, 0, 0, 0.0);
    }

        ul.navbar-nav > li > a:hover {
            background: rgba(0, 0, 0, 0.0);
        }

        ul.navbar-nav > li > a:focus {
            background: rgba(0, 0, 0, 0.0);
        }

    /**LLAVE COLOR TEXTO MENU Y SUBRAYADO*/

    ul.navbar-nav > li.active > a:hover, ul.navbar-nav > li.active > a:focus {
        background: none;
    }

section {
    position: relative;
    padding: 5px 0px 20px 0px;
    background: white;
}

    section:last-of-type {
        min-height: 20vh;
    }

    section.focus .page-header {
        color: #0099cc;
    }

        section.focus .page-header:after {
            visibility: visible;
            opacity: 1;
        }
/*LLAVE SUBRAYADO DETITULOS*/
.section-header {
    position: relative;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 400;
    color: #333;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1px;
}

    .section-header:after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100px;
        height: 2px;
        background: #0099cc;
        -webkit-transform: translate(-50%, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0);
    }

.section-sub-header {
    position: relative;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1px;
}


a.tutorials-link {
    display: inline-block;
    position: relative;
    font-size: 3.5vmin;
    margin: 5px auto 0px;
    padding: 2px 10px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    color: #002d48;
    background-color: rgb(255, 255, 255, 0.62);
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px 8px 8px 8px;
    animation: flipInY .9s both;
}

    a.tutorials-link:hover {
        color: #e7e6f1;
        background: #333;
    }

#home {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
    height: 20vh;
    padding: 560px 0px 110px 0px;
    /* Layering due to Psuedo overlay */
}

    #home:before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        background-image: url("../img/img_aci_04.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        will-change: transform;
        z-index: 0;
        filter: blur(0px);
        animation: zoomIn 100S both;
    }

    #home:after {
        content: "";
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(#ffffffe0);
        z-index: 0;
    }

    #home .container {
        z-index: 1;
    }

    #home h1 {
        text-align: center;
        color: #fff;
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
        border: 0px solid #fff;
        z-index: 2;
        padding: 1px;
        text-align: center;
        font-size: 110%;
        text-shadow: 0px 0px 10px #333;
    }

    #home p {
        text-align: center;
        color: #fff;
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
        border: 0px solid #fff;
        margin: 0;
        padding: 2px 0;
        text-shadow: 0px 0px 10px #333;
    }

    #home h4 {
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #0099cc;
    }

#about p {
    text-align: center;
    color: #333;
}

#nosotros {
    background: #F3F4F8;
    font-family: 'Klik-Light';
    text-align: justify;
    line-height: 24px;
}

    #nosotros h4 {
        margin-bottom: 20px;
        margin-left: 0px;
        font-size: 0.875rem;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 24px;
        letter-spacing: 0.5px;
        color: #BDC4D0;
    }

#servicios {
    padding-bottom: 0;
    color: #333;
}

    #servicios .feature-container {
        margin-bottom: 80px;
    }

    #servicios .feature {
        padding: 20px 0;
    }

        #servicios .feature svg {
            width: 40px;
            height: 40px;
            margin-bottom: 15px;
            fill: currentColor;
        }

        #servicios .feature h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 24px;
            letter-spacing: 2px;
            color: #0099cc;
        }

        #servicios .feature p {
            font-size: 14px;
            font-weight: 300;
            color: #BDC4D0;
            letter-spacing: 1px;
        }

    #servicios .animated-scroll {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        position: relative;
        width: 80%;
        max-width: 450px;
        height: 315px;
        margin: 0 auto;
        border: 4px solid #826dd5;
        border-bottom-color: transparent;
        border-radius: 6px;
        overflow: hidden;
    }

        #servicios .animated-scroll .scroll-header {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            flex-direction: row;
            -webkit-box-flex: 0;
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 60px;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            background: #826dd5;
        }

            #servicios .animated-scroll .scroll-header .scroll-nav {
                width: 15%;
                height: 8px;
                margin-right: 5%;
                border-radius: 4px;
            }

            #servicios .animated-scroll .scroll-header .sn-1 {
                -webkit-animation-name: scrollColor-1;
                animation-name: scrollColor-1;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 5s;
                animation-duration: 5s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

            #servicios .animated-scroll .scroll-header .sn-2 {
                -webkit-animation-name: scrollColor-2;
                animation-name: scrollColor-2;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 5s;
                animation-duration: 5s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

            #servicios .animated-scroll .scroll-header .sn-3 {
                margin-right: 0;
                -webkit-animation-name: scrollColor-3;
                animation-name: scrollColor-3;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 5s;
                animation-duration: 5s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

            #servicios .animated-scroll .scroll-header svg.cursor {
                position: absolute;
                top: 28px;
                left: 50%;
                width: 20%;
                height: 20px;
                -webkit-animation-name: scrollCursor;
                animation-name: scrollCursor;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 5s;
                animation-duration: 5s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
                z-index: 2;
            }

        #servicios .animated-scroll .scroll-body {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            -webkit-box-flex: 1;
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: auto;
            padding-top: 20px;
            overflow: hidden;
        }

        #servicios .animated-scroll .scroll-child {
            -webkit-box-flex: 0;
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 150px;
            width: 90%;
            margin: 0 auto 20px;
            fill: #404040;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            -webkit-animation-name: scrollDemo;
            animation-name: scrollDemo;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-duration: 5s;
            animation-duration: 5s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }

        #servicios .animated-scroll .sc-back-to-top {
            flex-basis: 40px;
            width: 40px;
            margin: 0 auto;
            border-radius: 100%;
            -webkit-animation-name: scrollBackToTop;
            animation-name: scrollBackToTop;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-duration: 5s;
            animation-duration: 5s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            z-index: 0;
        }

    #servicios .focus-events {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        position: relative;
        width: 80%;
        max-width: 450px;
        height: 315px;
        margin: 0 auto;
        border: 4px solid #e6e8f0;
        border-bottom-color: transparent;
        border-radius: 6px;
        overflow: hidden;
    }

        #servicios .focus-events .scroll-header {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            flex-direction: row;
            -webkit-box-flex: 0;
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 60px;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            background: #e6e8f0;
        }

            #servicios .focus-events .scroll-header .scroll-nav {
                width: 15%;
                height: 8px;
                margin-right: 5%;
                border-radius: 4px;
            }

            #servicios .focus-events .scroll-header .sn-1 {
                -webkit-animation-name: focusColor-1;
                animation-name: focusColor-1;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 4s;
                animation-duration: 4s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

            #servicios .focus-events .scroll-header .sn-2 {
                -webkit-animation-name: focusColor-2;
                animation-name: focusColor-2;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 4s;
                animation-duration: 4s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

            #servicios .focus-events .scroll-header svg.cursor {
                position: absolute;
                top: 28px;
                left: 50%;
                width: 20%;
                height: 20px;
                -webkit-animation-name: focusCursor;
                animation-name: focusCursor;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-duration: 4s;
                animation-duration: 4s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
                z-index: 2;
            }

        #servicios .focus-events .scroll-body {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            -webkit-box-flex: 1;
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: auto;
            padding-top: 20px;
            overflow: hidden;
        }

        #servicios .focus-events .scroll-child {
            -webkit-box-flex: 0;
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 150px;
            width: 90%;
            margin: 0 auto 20px;
            padding: 10% 5%;
            background: rgba(0, 0, 0, 0.05);
            background: #edeef4;
            border-radius: 4px;
            -webkit-animation-name: focusDemo;
            animation-name: focusDemo;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            -webkit-animation-duration: 4s;
            animation-duration: 4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }

            #servicios .focus-events .scroll-child .header {
                height: 14px;
                width: 50%;
                margin: 0 auto 8px;
                border-radius: 8px;
                background: #dcdfeb;
            }

            #servicios .focus-events .scroll-child .sub-header {
                height: 10px;
                width: 40%;
                margin: 0 auto 22px;
                border-radius: 6px;
                background: #e3e5ef;
            }

            #servicios .focus-events .scroll-child .body {
                width: 70%;
                height: 8px;
                margin: 0 auto 8px;
                background: #e0e2ed;
            }

        #servicios .focus-events .sc-2 .header {
            -webkit-animation-name: focusHeaderColor;
            animation-name: focusHeaderColor;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-duration: 4s;
            animation-duration: 4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }


.highlight {
    padding: 9px 14px;
    margin-bottom: 14px;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
}

    .highlight pre {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
        word-break: normal;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
    }

        .highlight pre code {
            font-size: inherit;
            color: #333;
        }

            .highlight pre code:first-child {
                display: inline-block;
                padding-right: 45px;
            }

.invertir_color_logo {
    filter: invert(100%);
}

/**LLAVE ESTILO SERVICIOS*/

a {
    text-decoration: none !important;
}

.center-text {
    text-align: center;
    font-weight: 400;
    font-size: 162px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

    .center-text.colored {
        color: #C7E5FF;
    }

    .center-text p {
        margin-bottom: 30px;
    }

.boton_menu {
    text-align: left;
    background-color: transparent;
    border: none;
    color: #004572;
    font-family: 'Klik-Light';
    border-bottom: 1px solid rgba(0, 0, 0, 0.0);
}

    .boton_menu:hover {
        background-color: rgba(0,0,0,.055);
        border-bottom: 1px solid #f4f4f4;
    }

/* Override UGG site */
#main {
    width: 100%;
    padding: 0;
}

.content-asset p {
    margin: 0 auto;
}

.breadcrumb {
    display: none;
}

/* Helpers */
/**************************/
.margin-top-10 {
    padding: 0px;
    text-align: justify;
}

.margin-bot-10 {
    padding-bottom: 10px;
}



#parallax-world-of-ugg {
    text-align: center;
    margin-top: 30px;
    background-color: rgba(255, 255, 2555, 0.94);
}
    /* Typography */
    /**************************/
    #parallax-world-of-ugg h1 {
        font-family: 'Klik-Light';
        font-size: 24px;
        font-weight: 400;
        text-transform: uppercase;
        color: black;
        padding: 0;
        margin: 0;
    }

    #parallax-world-of-ugg h2 {
        font-family: 'Klik-Light';
        font-size: 70px;
        letter-spacing: 10px;
        text-align: center;
        color: white;
        font-weight: 400;
        text-transform: uppercase;
        z-index: 1;
        opacity: .9;
    }

    #parallax-world-of-ugg h3 {
        font-family: 'Klik-Light';
        font-size: 14px;
        line-height: 0;
        font-weight: 400;
        letter-spacing: 8px;
        text-transform: uppercase;
        color: black;
    }

    #parallax-world-of-ugg p {
        font-family: 'Klik-Light';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
    }


/* Section - Block */
/**************************/
#parallax-world-of-ugg .block {
    background: #F3F4F8;
    padding: 0px 50px 30px 60px;
    width: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: auto;
    margin-left: auto;
    text-align: justify;
    min-height: 20vh;
    margin-left: 16.66666667%;
    margin-right: 16.66666667%;
}

    #parallax-world-of-ugg .block p1 {
        text-indent: 15px;
        text-align: justify;
    }

#parallax-world-of-ugg .block-gray {
    background: #f2f2f2;
    padding: 40px;
}

#parallax-world-of-ugg .block .lista_justificado {
    margin-left: 7px;
    text-indent: 10px;
}

.lista_justificado {
    margin-left: 7px;
    text-indent: 10px;
}

#parallax-world-of-ugg .block .subtitulos {
    font-weight: 800;
    margin-left: 7px;
    text-indent: 10px;
    margin-bottom: 0px;
}

#parallax-world-of-ugg .section-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.70;
}


/* Section - Parallax */
/**************************/
#parallax-world-of-ugg .parallax-titulo_primario_one {
    overflow: hidden;
    width: 100%;
    background-image: url('../img/img09.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin: -6px 0px 0px 0px;
    border-top: 4px solid black;
    animation: fadeIn .8s both;
}

    #parallax-world-of-ugg .parallax-titulo_primario_one h1 {
        font-size: 35px;
        letter-spacing: 8px;
        font-weight: 600;
        color: #051819;
        background-color: rgba(255, 255, 255, .6);
        margin: 20px 0px 0px 0px;
    }

#parallax-world-of-ugg .parallax-titulo_primario_four {
    overflow: hidden;
    width: 100%;
    background-image: url('../img/img30.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: top center;
    margin: -6px 0px 0px 0px;
    border-top: 4px solid black;
    animation: fadeIn .8s both;
}

    #parallax-world-of-ugg .parallax-titulo_primario_four h1 {
        font-size: 35px;
        letter-spacing: 8px;
        font-weight: 600;
        color: #051819;
        background-color: rgba(255, 255, 255, .6);
        margin: 20px 0px 0px 0px;
    }

#parallax-world-of-ugg .parallax-titulo_primario_eight {
    overflow: hidden;
    width: 100%;
    background-image: url('../img/img47.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: top center;
    margin: -6px 0px 0px 0px;
    border-top: 4px solid black;
    animation: fadeIn .8s both;
}

    #parallax-world-of-ugg .parallax-titulo_primario_eight h1 {
        font-size: 35px;
        letter-spacing: 8px;
        font-weight: 600;
        color: #051819;
        background-color: rgba(255, 255, 255, .6);
        margin: 20px 0px 0px 0px;
    }



#parallax-world-of-ugg .parallax-one {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img09.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
    margin-top: -25px;
}

    #parallax-world-of-ugg .parallax-one h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-two {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img34.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-two h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-three {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img30.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-three h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }


#parallax-world-of-ugg .parallax-four {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img30.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
    margin-top: -25px;
}

    #parallax-world-of-ugg .parallax-four h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }


#parallax-world-of-ugg .parallax-five {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img08.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-five h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-six {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img12.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-six h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-seven {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img31.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-seven h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-eight {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img47.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
    margin-top: -25px;
}

    #parallax-world-of-ugg .parallax-eight h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-nine {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img46.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-nine h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-teen {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img37.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-teen h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

#parallax-world-of-ugg .parallax-eleven {
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/img30.jpg');
    background-attachment: fixed;
    background-size: cover;
    
    
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: #000 1px 1px 0px;
    animation: fadeIn 2.5s both;
}

    #parallax-world-of-ugg .parallax-eleven h2 {
        animation: fadeIn 1s both;
        font-weight: 700;
        margin: 20px 0px 10px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }




/* Extras */
/**************************/


.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    min-height: 400px;
    height: 60vh;
    z-index: 0;
    filter: blur(6px);
    -webkit-filter: blur(6px);
    animation: fadeIn 1s both;
}

.hero {
    position: relative;
    text-align: center;
    font-family: 'Klik-Light';
    font-variant: small-caps;
    padding-top: 5px;
    padding-bottom: 60px;
    margin-top: -30px;
    background-color: rgba(0, 0, 0, 0.4);
}

    .hero h1 {
        font-family: 'Klik-Light';
        font-size: 20px;
        line-height: .8;
        font-variant: small-caps;
    }

        .hero h1 span {
            font-family: 'Klik-Light';
            font-variant: small-caps;
            border-bottom: 2px solid #0099cc;
            color: #fff;
            line-height: 1.3;
            font-size: 20px;
            font-weight: 100;
            letter-spacing: 7px;
        }

.titulo_2_asecoint {
    font-family: 'Klik-Light';
    font-variant: small-caps;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 7px;
}
/**INICIO FOOTER**/

#contacto {
    background-color: #0f0f11;
    color: #111;
    z-index:1;
}

    #contacto .container {
        width: 100%;
    }

.logo_footer{
    width: 230px;
}

.caja_mapa {
    padding-top: 1px;
}

.mapa {
    width: 100%;
    height: 240px;
}

.caja_servicios {
    padding: 5px;
    margin: 5px;
    border: none;
    border-bottom: solid 1px #d3d6e5;
    text-align: center;
}

.caja_servicios_footer {
    padding: 5px;
    margin: 5px;
    border: none;
    text-align: left;
    font-size: 20px;
}

    .caja_servicios_footer a {
        display: block;
    }

.titulos_footer {
    color: #ebebeb;
    font-size: 2vmin;
    font-family: 'Louis George Cafe';
    margin-top: 15px;
}

.texto_iconos_social {
    margin-top: 4px;
    margin-bottom: 10px;
    margin-left: 35px;
    margin-right: 0;
    font-size: 3vmin;
    color: #ebebeb;
    font-family: 'Louis George Cafe';
    letter-spacing: 1px;
    font-weight: 100;
}

.icono_sociales {
    width: 30px;
    height: 30px;
    fill: #002d48;
    position: absolute;
}

.caja_texto_servicios {
    text-align: center;
    height: auto;
    padding-bottom: 10px;
    word-wrap: break-word
}

.titulo_servicios {
    font-weight: 300;
    font-size: 5.3vmin;
    font-family: 'Louis George Cafe';
    color: #002d48;
    margin-left: 13px;
}

.texto_servicios {
    margin: -30px;
    margin-left: 0px;
    font-weight: 600;
    font-size: 3.8vmin;
    font-family: 'Louis George Cafe';
    color: #002d48;
    padding: 0px 20px 0px 10px;
}

.titulo_resultados {
    font-weight: 400;
    font-size: 6.2vmin;
    color: #002d48;
}

.texto_footer_map {
    color: #ededed;
    font-size: 2vmin;
}

    .texto_footer_map a {
        color: #ededed;
        font-size: 2.2vmin;
        font-family: 'Louis George Cafe';
    }


.menu_footer{
    font-size: 13px;
}

/**FIN FOOTER**/

.iconos_valores {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(94%) saturate(2276%) hue-rotate(343deg) brightness(106%) contrast(98%);
}


.contenedor_iconos_sociales_top {
    width: 100%;
}

.iconos_sociales_menu_whatsapp {
    font-size: 19px;
    background-image: url(/img/icons8-whatsapp-96.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 6px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}


.iconos_sociales_menu_youtube {
    font-size: 17px;
    background-image: url(/img/youtube-color-svgrepo-com.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 6px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}

.iconos_sociales_menu_tiktok {
    font-size: 17px;
    background-image: url(/img/tiktok-svgrepo-com.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 8px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}

.iconos_sociales_menu_facebook {
    font-size: 12px;
    background-image: url(/img/facebook-svgrepo-com.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 6px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}

.iconos_sociales_menu_instagram {
    font-size: 17px;
    background-image: url(/img/instagram-2016-logo-svgrepo-com.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 6px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}

.iconos_sociales_menu_maps {
    font-size: 17px;
    background-image: url(/img/mapas-de-google.svg);
    height: 40px;
    width: auto;
    background-size: 35px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 6px 50px 10px 40px;
    color: #002d48;
    margin: 10px;
}

/***LLAVE PARALLAX PARA TITULOS HOME*/

.parallax-home {
    text-align: center;
    margin-top: 30px;


}
    /* Typography */
    /**************************/
    .parallax-home h1 {
        font-family: 'Klik-Light';
        font-size: 12px;
        padding: 0;
        margin: 0;
        
    }

    .parallax-home h3 {
        font-family: 'Klik-Light';
        font-size: 11px;
        line-height: 0;
        font-weight: 400;
        letter-spacing: 8px;
        text-transform: uppercase;
        color: black;
    }

    .parallax-home p {
        font-family: 'Klik-Light';
        font-weight: 400;
        font-size: 21px;
        line-height: 30px;
        color: #fff;
        text-align: left;
        max-width: 700px;
        display: flex;
        justify-content: center;
    }
.contenedor_texto_home {
    background-color: #1a1a1ae7;
    box-shadow: rgba(0, 0, 0, 1) 1px 4px 5px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    max-width: 800px;
    padding: 30px;
    justify-content: center;
    justify-self: center;
}




.parallax-nosotros {
    padding-top: 320px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen02.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
    
}

    .parallax-nosotros h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

    .parallax-nosotros h2 {
        animation: fadeIn 1s both;
        margin: 0px 0px 30px 0px;
        font-size: 4vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgb(253 82 48);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }


.parallax-porquelohacemos {
    padding-top: 320px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen03.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
}

    .parallax-porquelohacemos h1 {
        animation: fadeIn 1s both;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

    .parallax-porquelohacemos h2 {
        animation: fadeIn 1s both;
        margin: 0px 0px 30px 0px;
        font-size: 4vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: #2472d1be;
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

.parallax-sumatealcambio {
    padding-top: 320px;
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen01.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;

}

    .parallax-sumatealcambio h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

.contenedor_texto_sumatealcambio {
    background-color: #1a1a1ae7;
    box-shadow: rgba(0, 0, 0, 1) 1px 4px 5px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    font-family: 'Klik-Light';
    max-width: 100%;
    padding: 20px;
    color: #fff;
    font-size: 21px;
    text-align: left;
    justify-content: center;
    justify-self: center;
}

.contenedor_texto_sumatealcambio_donativo {
    max-width: 500px;
    background-color: rgb(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
    color: #000;

}


.parallax-galeria_01 {
    padding-top: 30px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen06.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
}

    .parallax-galeria_01 h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgb(237, 97, 16, 0.50);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }


.parallax-galeria_02 {
    padding-top: 30px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen10.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
}

    .parallax-galeria_02 h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgb(237, 97, 16, 0.50);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

.parallax-galeria_03 {
    padding-top: 30px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen11.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
}

    .parallax-galeria_03 h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgb(237, 97, 16, 0.50);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

.parallax-galeria_04 {
    padding-top: 30px;
    padding-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/imagen15.jpg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Klik-Light';
    background-repeat: no-repeat;
    background-position: top center;
    animation: fadeIn 2.5s both;
}

    .parallax-galeria_04 h1 {
        animation: fadeIn 1s both;
        font-weight: 300;
        margin: 0px 0px 30px 0px;
        font-size: 5vmin;
        letter-spacing: 8px;
        font-weight: 800;
        color: #fff;
        background-color: rgb(237, 97, 16, 0.50);
        padding: 2px;
        text-shadow: #000 1px 1px 0px;
    }

    .parallax-contacto {
        padding-top: 20px;
        padding-bottom: 0px;
        overflow: hidden;
        position: relative;
        width: 100%;
        background-image: url('../img/img33.jpg');
        background-attachment: fixed;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        animation: fadeIn 2.5s both;
    }

        .parallax-contacto h1 {
            animation: fadeIn 1s both;
            font-weight: 700;
            margin: 20px 0px 10px 0px;
            font-size: 6vmin;
            letter-spacing: 8px;
            font-weight: 800;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 2px;
            text-shadow: #000 1px 1px 0px;
        }

#sumate p {
    font-size: 30px;
}

.line-break {
    border-bottom: 1px solid #d3d6e5;
    width: 29vmin;
    margin: 15px auto;
}

.boton_sabermas_whatsapp {
    background-image: url(/img/icons8-whatsapp-96.svg);
    background-size: 40px;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #5f5f5fa1;
    flex-grow: 1;
    flex-basis: 200;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 15px 50px 15px 10px;
    margin: 30px;
    font-size: 2vh;
    color: #fff;
    border: solid 2px #22cc13
}
    .boton_sabermas_whatsapp:hover {
        color: #fff;
    }



    /**INICIO FOOTER**/
    #contacto {
        background-color: #fff;
    }

    #contacto .container {
        width: 100%;
    }

.caja_mapa {
    padding-top: 1px;
}

.mapa {
    width: 100%;
    height: 240px;
}


.fondo_footer{
    display: flex;
    position: relative;
}
.caja_servicios {
    padding: 5px;
    margin: 5px;
    border-right: solid 1px #d3d6e5;
    text-align: center;
}

.caja_servicios_footer {
    padding: 5px;
    margin: 5px;
    border: none;
    border-right: solid 1px #d3d6e5;
    text-align: left;
}

    .caja_servicios_footer a {

    }

.texto_iconos_social {
    margin-top: 3px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 0;
    font-size: 2.4vmin;
    color: #002d48;
    font-family: 'Klik-Light';
    letter-spacing: 1px;
}

.icono_sociales {
    width: 30px;
    height: 30px;
    fill: #002d48;
    position: absolute;
}

.caja_texto_servicios {
    text-align: justify;
    height: auto;
    padding-bottom: 25px;
    word-wrap: break-word;
    width: 90%;
}

.titulo_servicios {
    font-weight: 600;
    font-size: 3vmin;
    font-family: 'Klik-Light';
    color: #002d48;
    padding-bottom: 10px;
}

.texto_servicios {
    margin: -25px;
    margin-left: -40px;
    font-weight: 600;
    font-size: 2.3vmin;
    font-family: 'Klik-Light';
    color: #002d48;
    padding: 0px 0px 20px 5px;
}

.titulos_footer {
    color: #002d48;
    font-size: 2vmin;
    font-weight: 600;
    font-family: 'Klik-Light';
}

.texto_iconos_social {
    margin-top: 3px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 0;
    font-size: 2.5vmin;
    color: #002d48;
    font-family: 'Klik-Light';
    letter-spacing: 1px;
}

/**FIN FOOTER**/


.boton_mas_informacion {
    margin: 0px;
    padding: 10px 15px 10px 15px;
    border: solid 1px #2c4f64;
    background-color: #fff;
    color: #002d48;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .boton_mas_informacion:hover {
        margin: 20px;
        padding: 10px 15px 10px 15px;
        border: solid 1px #fff;
        background-color: #002d48;
        color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

.iconos_servicios {
    fill: #3B566E;
    width: 70px;
    height: 70px;
    min-height: 100px;
    min-width: 90px;
    margin: 4px;
}

.texto_footer {
    color: #7697a2;
    font-size: 1.7vmin;
    font-family: 'Klik-Light';
}

    .texto_footer a {
        color: #7697a2;
        font-size: 1.7vmin;
    }

.texto_footer_map {
    color: #ededed;
    font-size: 2vmin;
}

    .texto_footer_map a {
        color: #ededed;
        font-size: 2.2vmin;
        font-family: 'Klik-Light';
    }

.logotipo_blanco_footer {
    filter: invert(100%);
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    width: 80px;
}

.logotipo_footer {
    fill: #002d48;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    width: 100px;
    fill: #002d48;
    float: left;
}


/*****************************************INICIA KEYFRAMES**********************************************/
/**********************************INICIA LLAVE ANIMACION DE TITULO PRINCIPAL************************/
@keyframes showTopText {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes showBottomText {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.animated-title {
    font-family: 'Klik-Light';
    height: 50vmin;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #000;
    letter-spacing: 2px;
    
}

    .animated-title > div {
        height: 50%;
        overflow: hidden;
        position: absolute;
        width: 100%;
        font-family: 'Klik-Light';
    }

        .animated-title > div div {
            position: absolute;
            font-family: 'Klik-Light';
            width: 100%;
        }
            /**texto titulo en pantalla escritorio*/
            .animated-title > div div span {
                display: block;
                font-size: 11vmin;

            }

        /**texto titulo en pantalla escritorio*/
        .animated-title > div.text-top {
            border-bottom: .4vmin solid #ff9460;
            top: -30px;
            animation: fadeIn 2.4s both;
        }

            .animated-title > div.text-top div {
                animation: showTopText .5s;
                animation-delay: .4s;
                animation-fill-mode: forwards;
                bottom: -14px;
                transform: translate(0, 100%);
                background-color: transparent;
                
            }

                .animated-title > div.text-top div span:first-child {
                    background-color: transparent;
                    
                }

        .animated-title > div.text-bottom {
            bottom: 20px;
            background-color: transparent;
            font-size: 5vmin;
            animation: fadeIn 2.4s both;
        }

            .animated-title > div.text-bottom div {
                animation: showBottomText .5s;
                animation-delay: .8s;
                animation-fill-mode: forwards;
                top: -10px;
                transform: translate(0, -100%);
                background-color: transparent;
            }

/**********************************FIN LLAVE ANIMACION DE TITULO PRINCIPAL************************/














/* Media Queries */
/**************************/


@media (min-width: 768px) {



    ul.navbar-nav {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        float: none;
        text-align: center;
        color: #BDC4D0;
        
    }

        ul.navbar-nav > li.active {
            color: white;
            background: rgba(0, 0, 0, 0.0);
            box-shadow: inset 0 -4px 0 0 #f46800;
            transition: all 1s;
        }
}

@media screen and (max-width: 767px) {
    .animated-title {
        font-family: 'Klik-Light';
        height: 33vmin;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        color: #BDC4D0;
        letter-spacing: 1px;
    }

        .animated-title > div {
            height: 50%;
            overflow: hidden;
            position: absolute;
            width: 100%;
            font-family: 'Klik-Light';
            color: #BDC4D0;
        }

            .animated-title > div div {
                position: absolute;
                font-family: 'Klik-Light';
                color: #fff;
                width: 100%;
            }


    a.tutorials-link {
        font-size: 4vmin;
    }

    .contenedor_texto_sumatealcambio {
        font-size: 18px;
    }

    /**texto titulo en pantalla movil*/
    .animated-title > div div span {
        display: block;
        color: #fff;
        font-size: 10vmin;
    }

    /**animacion titulo principal movil*/
            .animated-title > div.text-top {
                border-bottom: .4vmin solid #ff9461;
                top: -160px;
                animation: fadeIn 2.4s both;
            }

        .animated-title > div.text-top div {
            animation: showTopText .5s;
            animation-delay: .4s;
            animation-fill-mode: forwards;
            bottom: 10px;
            transform: translate(0, 100%);
            color: #BDC4D0;
            background-color: transparent;
        }

            .animated-title > div.text-top div span:first-child {
                color: #000;
                background-color: transparent;
            }

    .animated-title > div.text-bottom {
        bottom: 145px;
        background-color: transparent;
        font-size: 6vmin;
        animation: fadeIn 2.4s both;

    }

        .animated-title > div.text-bottom div {
            animation: showBottomText .5s;
            animation-delay: .8s;
            animation-fill-mode: forwards;
            top: 0px;
            transform: translate(0, -100%);
            background-color: transparent;
            color: #000;
        }






    h1 {
        font-size: 2.375rem;
        line-height: 2.75rem;
    }

    

    #home {
        height: 80vh;
        min-height: 640px;
    }

        #home:before {
            height: 90vh;
            min-height: 640px;
        }

    #servicios .feature {
        padding: 50px 0;
    }

    #servicios .feature-container {
        margin-bottom: 80px;
    }

    #servicios .feature svg {
        width: 60px;
        height: 60px;
    }


    /**tamaņo y texto consultores de menu top movil*/
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.80);
    }

    nav.navbar {
        height: 92px;
        border: none;
        will-change: transform;
        padding: 30px;
        background-color: #ff9461;
        animation: fadeIn 2s both;
        transition: ease-out .3s all;
    }

    .hero {
        position: relative;
        text-align: center;
        font-family: 'Klik-Light';
        font-variant: small-caps;
        padding-top: 27px;
        padding-bottom: 27px;
        margin-top: -30px;
        background-color: rgba(0, 0, 0, 0.4);
    }

        .hero h1 {
            font-family: 'Klik-Light';
            line-height: 0;
            font-variant: small-caps;
        }

            .hero h1 span {
                font-family: 'Klik-Light';
                font-variant: small-caps;
                border-bottom: 2px solid;
                color: #fff;
                line-height: 1.6;
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 3px;
            }

    .titulo_2_asecoint {
        font-family: 'Klik-Light';
        font-variant: small-caps;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 7px;
    }

    .parallax-home .parallax-nosotros {
        padding-top: 140px;
        padding-bottom: 0px;
    }

    .parallax-home .parallax-porquelohacemos {
        padding-top: 140px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg h2 {
        font-size: 30px;
    }

    #parallax-world-of-ugg .block {
        padding: 10px;
        width: 100%;
        margin-left: 0%;
        padding-top: 10px;
        padding-right: 30px;
        padding-left: 30px;
        padding-bottom: 10px;
    }

        #parallax-world-of-ugg .block .subtitulos {
            font-weight: 800;
            margin-left: 20px;
            text-indent: 25px;
        }

        #parallax-world-of-ugg .block .lista_justificado {
            margin-left: 7px;
            text-indent: 10px;
        }

    .lista_justificado {
        margin-left: 7px;
        text-indent: 10px;
    }


    #parallax-world-of-ugg .parallax-titulo_primario_one {
    }

        #parallax-world-of-ugg .parallax-titulo_primario_one h1 {
            font-size: 24px;
            letter-spacing: 1px;
            font-weight: 700;
            color: #051819;
            background-color: rgba(255, 255, 255, .6);
            margin: 20px 0px 10px 0px;
        }

    #parallax-world-of-ugg .parallax-titulo_primario_four {
    }

        #parallax-world-of-ugg .parallax-titulo_primario_four h1 {
            font-size: 24px;
            letter-spacing: 1px;
            font-weight: 700;
            color: #051819;
            background-color: rgba(255, 255, 255, .6);
            margin: 20px 0px 10px 0px;
        }

    #parallax-world-of-ugg .parallax-titulo_primario_eight {
    }

        #parallax-world-of-ugg .parallax-titulo_primario_eight h1 {
            font-size: 24px;
            letter-spacing: 1px;
            font-weight: 700;
            color: #051819;
            background-color: rgba(255, 255, 255, .6);
            margin: 20px 0px 10px 0px;
        }

    #parallax-world-of-ugg .parallax-one {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-two {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-three {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-four {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-five {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-six {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-seven {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-eight {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-nine {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-teen {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    #parallax-world-of-ugg .parallax-eleven {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .boton_mas_informacion {
        margin: 0px;
        padding: 10px 15px 10px 15px;
        border: solid 1px #2c4f64;
        background-color: #fff;
        color: #002d48;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

        .boton_mas_informacion:hover {
            margin: 20px;
            padding: 10px 15px 10px 15px;
            border: solid 1px #fff;
            background-color: #002d48;
            color: #fff;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

    .iconos_servicios {
        fill: #3B566E;
        width: 60px;
        height: 60px;
        min-height: 90px;
        min-width: 80px;
        margin: 5px;
    }

    /**INICIO FOOTER**/

    #contacto {
        background-color: #fff;
    }

        #contacto .container {
            width: 100%;
        }

    .caja_mapa {
        padding-top: 1px;
    }

    .mapa {
        width: 100%;
        height: 240px;
    }

    .caja_servicios {
        padding: 5px;
        margin: 5px;
        border: none;
        border-bottom: solid 1px #d3d6e5;
        text-align: center;
    }

    .caja_servicios_footer {
        padding: 5px;
        margin: 5px;
        border: none;
        text-align: left;
    }

        .caja_servicios_footer a {
            display: block;
        }

    .titulos_footer {
        color: #002d48;
        font-size: 3.7vmin;
        font-family: 'Klik-Light';
        margin-top: 15px;
    }

    .texto_iconos_social {
        margin-top: 4px;
        margin-bottom: 10px;
        margin-left: 35px;
        margin-right: 0;
        font-size: 3.6vmin;
        color: #002d48;
        font-family: 'Klik-Light';
        letter-spacing: 1px;
    }

    .icono_sociales {
        width: 30px;
        height: 30px;
        fill: #002d48;
        position: absolute;
    }

    .caja_texto_servicios {
        text-align: center;
        height: auto;
        padding-bottom: 25px;
        word-wrap: break-word
    }

    .titulo_servicios {
        font-weight: 600;
        font-size: 5.3vmin;
        font-family: 'Klik-Light';
        color: #002d48;
        margin-left: 13px;
    }

    .texto_servicios {
        margin: -30px;
        margin-left: 0px;
        font-weight: 600;
        font-size: 3.8vmin;
        font-family: 'Klik-Light';
        color: #002d48;
        padding: 0px 20px 0px 10px;
    }

    .texto_footer_map {
        color: #ededed;
        font-size: 2vmin;
    }

        .texto_footer_map a {
            color: #ededed;
            font-size: 2.2vmin;
            font-family: 'Klik-Light';
        }

    /**FIN FOOTER**/

}







@-webkit-keyframes focusDemo {
    from, 30% {
        -webkit-transform: translate(0, 0px);
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate(0, 0px);
        transform: translate3d(0, 0px, 0);
    }

    40%, to {
        -webkit-transform: translate(0, -170px);
        -webkit-transform: translate3d(0, -170px, 0);
        transform: translate(0, -170px);
        transform: translate3d(0, -170px, 0);
    }
}

@keyframes focusDemo {
    from, 30% {
        -webkit-transform: translate(0, 0px);
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate(0, 0px);
        transform: translate3d(0, 0px, 0);
    }

    40%, to {
        -webkit-transform: translate(0, -170px);
        -webkit-transform: translate3d(0, -170px, 0);
        transform: translate(0, -170px);
        transform: translate3d(0, -170px, 0);
    }
}

@-webkit-keyframes focusColor-1 {
    from, 39.9% {
        background: #d3d6e5;
    }

    40%, to {
        background: #F3F4F8;
    }
}

@keyframes focusColor-1 {
    from, 39.9% {
        background: #d3d6e5;
    }

    40%, to {
        background: #F3F4F8;
    }
}

@-webkit-keyframes focusColor-2 {
    from, 24% {
        background: #F3F4F8;
    }

    24.2%, 28% {
        background: #dcdfeb;
    }

    28.2%, 40% {
        background: #F3F4F8;
    }

    40.1%, to {
        background: #d3d6e5;
    }
}

@keyframes focusColor-2 {
    from, 24% {
        background: #F3F4F8;
    }

    24.2%, 28% {
        background: #dcdfeb;
    }

    28.2%, 40% {
        background: #F3F4F8;
    }

    40.1%, to {
        background: #d3d6e5;
    }
}

@-webkit-keyframes focusHeaderColor {
    from, 40% {
        background: #dcdfeb;
    }

    40.2%, 70% {
        background: #0099cc;
    }

    75%, to {
        background: #dcdfeb;
    }
}

@keyframes focusHeaderColor {
    from, 40% {
        background: #dcdfeb;
    }

    40.2%, 70% {
        background: #0099cc;
    }

    75%, to {
        background: #dcdfeb;
    }
}

@-webkit-keyframes focusCursor {
    from {
        -webkit-transform: translate(-50%, 200px);
        -webkit-transform: translate3d(-50%, 200px, 0);
        transform: translate(-50%, 200px);
        transform: translate3d(-50%, 200px, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    15%, 30% {
        opacity: 1;
        -webkit-transform: translate(-10%, 0);
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate(-10%, 0);
        transform: translate3d(-10%, 0, 0);
    }

    45%, to {
        opacity: 0;
    }
}

@keyframes focusCursor {
    from {
        -webkit-transform: translate(-50%, 200px);
        -webkit-transform: translate3d(-50%, 200px, 0);
        transform: translate(-50%, 200px);
        transform: translate3d(-50%, 200px, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    15%, 30% {
        opacity: 1;
        -webkit-transform: translate(-10%, 0);
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate(-10%, 0);
        transform: translate3d(-10%, 0, 0);
    }

    45%, to {
        opacity: 0;
    }
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*****************************************FINAL KEYFRAMES**********************************************/


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}