﻿/* Header */
section[role=header] {
    position: relative;
    border-bottom: 4px solid #E9E9E9;
}

    section[role=header] > div {
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

        section[role=header] > div .head-actions {
            text-align: right;
            display: flex;
            flex-direction: row;
            align-items: normal;
        }

            section[role=header] > div .head-actions .calls {
                display: flex;
                flex-direction: row;
                margin: -7px 0 0 0;
            }

                section[role=header] > div .head-actions .calls > span {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    margin: 5px 0 0 0;
                }

                    section[role=header] > div .head-actions .calls > span span {
                        font-size: 17px;
                        font-weight: 600;
                        font-stretch: normal;
                        font-style: normal;
                        line-height: normal;
                        letter-spacing: 0.11px;
                    }

                section[role=header] > div .head-actions .calls .smartphone {
                    margin: 0px 39px 0px 5px;
                }

        section[role=header] > div #logo {
            background-image: url(../images/logo-terranea.png);
            background-repeat: no-repeat;
            background-size: 100%;
            font: 0/0 arial, sans-serif;
            height: 53px;
            width: 183px;
        }

        section[role=header] > div #menu-btn {
            display: none;
        }

.btn-area-clientes-container {
    width: auto;
}

    .btn-area-clientes-container .btn-area-clientes {
        margin: 0 0 0 0;
        padding: 0 10px 3px 10px;
        max-width: 180px;
        max-height: 52px;
        float: right;
    }

        .btn-area-clientes-container .btn-area-clientes .area-icono {
            margin: 0 10px 0 0;
        }

            .btn-area-clientes-container .btn-area-clientes .area-icono img {
                width: 12px;
                height: 18px;
            }

        .btn-area-clientes-container .btn-area-clientes .area-title {
            font-family: Kanit;
            font-size: 13.9px;
            font-weight: 500;
            font-stretch: normal;
            font-style: normal;
            letter-spacing: 0.12px;
            color: #fff;
            margin: 0 0 -4px 0;
        }

/* Menú */
#main-nav {
    border-bottom: 2px solid #000;
    border-top: 1px solid #CCC;
    box-shadow: 0 3px 0 rgb(204 204 204 / 60%);
}

    #main-nav > ul {
        border-left: 1px solid #CCC;
        border-right: 1px solid #CCC;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        height: 77px;
    }

        #main-nav > ul li {
            position: relative;
            width: 100%;
            height: auto;
            border-right: 1px solid #CCC;
            transition: transform 10ms linear;
        }

            #main-nav > ul li:not(.opened):after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scale(0, 0);
                height: 4px;
                bottom: 0;
                left: 0;
                background-color: #cb0000;
                transform-origin: bottom center;
                transition: transform 0.25s ease-out;
            }

            #main-nav > ul li.opened:after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scale(1, 1);
                height: 4px;
                bottom: 0;
                left: 0;
                background-color: #cb0000;
                transform-origin: bottom center;
            }

            #main-nav > ul li:not(.opened):hover:after {
                transform: scale(1, 1);
            }

            #main-nav > ul li:active {
                transform: translateY(3px);
            }

            #main-nav > ul li a {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: space-evenly;
                align-items: center;
            }

                #main-nav > ul li a img {
                    float: left;
                }

                    #main-nav > ul li a img.menu-ico-spd {
                        content: url("../../assets/images/icons/png/menu-spd.png");
                    }

                        #main-nav > ul li a img.menu-ico-spd.opened {
                            content: url("../../assets/images/icons/png/menu-spd-activo.png");
                        }

                    #main-nav > ul li a img.menu-ico-mascotas {
                        content: url("../../assets/images/icons/png/menu-mascotas.png");
                    }

                        #main-nav > ul li a img.menu-ico-mascotas.opened {
                            content: url("../../assets/images/icons/png/menu-mascotas-activo.png");
                        }

                    #main-nav > ul li a img.menu-ico-coches {
                        content: url("../../assets/images/icons/png/menu-coches.png");
                    }

                        #main-nav > ul li a img.menu-ico-coches.opened {
                            content: url("../../assets/images/icons/png/menu-coches-activo.png");
                        }

                    #main-nav > ul li a img.menu-ico-caballos {
                        content: url("../../assets/images/icons/png/menu-caballos.png");
                    }

                        #main-nav > ul li a img.menu-ico-caballos.opened {
                            content: url("../../assets/images/icons/png/menu-caballos-activo.png");
                        }

                    #main-nav > ul li a img.menu-ico-barcos {
                        content: url("../../assets/images/icons/png/menu-barcos.png");
                    }

                        #main-nav > ul li a img.menu-ico-barcos.opened {
                            content: url("../../assets/images/icons/png/menu-barcos-activo.png");
                        }

                #main-nav > ul li a span {
                    float: right;
                    width: 100px;
                    height: 30px;
                    font-size: 14px;
                    font-weight: normal;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: 1.14;
                    letter-spacing: 0.09px;
                    color: #060606;
                }

                #main-nav > ul li a b {
                    text-transform: uppercase;
                    color: #a5a5a5;
                }

                    #main-nav > ul li a b.opened {
                        color: #cb0000;
                    }

    #main-nav li#see-all {
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

        #main-nav li#see-all > a {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            #main-nav li#see-all > a span {
                font-weight: 600;
                line-height: normal;
                width: auto;
                margin-bottom: -7px;
            }

            #main-nav li#see-all > a img {
                width: 14px;
                height: 8px;
            }

        #main-nav li#see-all.active a {
            position: relative;
        }

            #main-nav li#see-all.active a:after {
                background: #FFF;
                border-right: 1px solid #CCC;
                border-left: 1px solid #CCC;
                bottom: -5px;
                content: ' ';
                height: 12px;
                left: 0px;
                position: absolute;
                right: 0px;
                z-index: 100;
            }

    #main-nav .submenu {
        display: none;
        left: 0;
        padding-top: 3px;
        position: absolute;
        right: 0;
        z-index: 10;
    }

        #main-nav .submenu > div {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            min-height: 325px;
            background: #FFF;
            border: 1px solid #CCC;
            box-shadow: 0 0 4px 2px rgb(180 180 180 / 50%);
            overflow: hidden;
            padding: 20px 0;
        }

            #main-nav .submenu > div > ul {
                border-left: 3px solid #CCC;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                float: left;
                padding: 0 11px;
                width: 25%;
            }

                #main-nav .submenu > div > ul:first-child {
                    border-left: 0;
                }

                #main-nav .submenu > div > ul > .submenu-heading:first-of-type {
                    padding-top: 0;
                    min-height: 145px;
                    padding-bottom: 10px;
                }

                #main-nav .submenu > div > ul > .submenu-heading:not(:first-of-type) {
                    min-height: 64px;
                }

                #main-nav .submenu > div > ul > .submenu-heading > a {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;
                    font-size: 14px;
                    font-weight: 600;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: 1.21;
                    letter-spacing: 0.09px;
                    color: #000;
                }

                    #main-nav .submenu > div > ul > .submenu-heading > a span:first-child {
                        align-self: center;
                    }

                    #main-nav .submenu > div > ul > .submenu-heading > a span:not(:first-child) {
                        margin-left: 5px;
                    }

                        #main-nav .submenu > div > ul > .submenu-heading > a span:not(:first-child) b {
                            color: #cb0000;
                            text-transform: uppercase;
                            text-decoration: underline;
                        }

                #main-nav .submenu > div > ul > .submenu-heading > ul {
                    margin-left: 39px;
                }

                    #main-nav .submenu > div > ul > .submenu-heading > ul > li > a {
                        position: relative;
                        color: #000;
                        font-size: 14px;
                        font-weight: 400;
                        font-stretch: normal;
                        font-style: normal;
                        line-height: normal;
                        letter-spacing: 0.09px;
                    }

                        #main-nav .submenu > div > ul > .submenu-heading > ul > li > a:after {
                            content: '';
                            position: absolute;
                            width: 100%;
                            transform: scale(0, 0);
                            height: 1px;
                            bottom: 0;
                            left: 0;
                            background-color: #cb0000;
                            transform-origin: bottom center;
                            transition: transform 0.25s ease-out;
                        }

                        #main-nav .submenu > div > ul > .submenu-heading > ul > li > a:hover:after {
                            transform: scale(1, 1);
                        }

/* Footer */
section[role=footer] {
    background: #000000;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 353px;
}

    section[role=footer] > div {
        height: 70%;
    }

        section[role=footer] > div .footer-dropdown {
            float: left;
            padding: 16px 10px;
            width: 240px;
            height: 100%;
        }

            section[role=footer] > div .footer-dropdown .f-item {
                cursor: pointer;
                font-size: 14px;
                font-weight: 300;
                font-stretch: normal;
                font-style: normal;
                line-height: normal;
                letter-spacing: 0.09px;
                color: #fff;
            }

                section[role=footer] > div .footer-dropdown .f-item:active {
                    color: #505050;
                }

            section[role=footer] > div .footer-dropdown ul {
                margin: 0;
                padding: 8px 0 0 0;
            }

                section[role=footer] > div .footer-dropdown ul h3 {
                    margin-top: 3px;
                    margin-bottom: 0px;
                    font-weight: normal;
                }

                    section[role=footer] > div .footer-dropdown ul h3 a {
                        font-size: 13px;
                        color: #fff;
                    }

        section[role=footer] > div .footer-area-clientes {
            height: 0%;
        }

    section[role=footer] .other-links {
        float: left;
        width: 240px;
        height: 100%;
    }

        section[role=footer] .other-links .footer-nav {
            padding: 0 10px 0 10px;
        }

            section[role=footer] .other-links .footer-nav ul:first-child {
                height: 50%;
            }

                section[role=footer] .other-links .footer-nav ul:first-child li:first-child {
                    padding-top: 20%;
                }

            section[role=footer] .other-links .footer-nav ul:last-child {
                height: 50%;
            }

                section[role=footer] .other-links .footer-nav ul:last-child li:first-child {
                    padding-top: 24%;
                }

            section[role=footer] .other-links .footer-nav ul li {
                line-height: 22px;
            }

                section[role=footer] .other-links .footer-nav ul li a {
                    color: #fff;
                    font-size: 14px;
                    font-weight: normal;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: normal;
                    letter-spacing: 0.09px;
                }

    section[role=footer] .redes {
        height: 20%;
    }

    section[role=footer] .fine-print {
        height: 10%;
    }

        section[role=footer] .fine-print > ul {
            height: auto;
        }

        section[role=footer] .fine-print:after {
            clear: both;
            content: "";
            display: table;
        }

        section[role=footer] .fine-print > ul li {
            display: inline;
            padding: 0 8px 0 8px;
        }

        section[role=footer] .fine-print > ul a {
            font-size: 11px;
            line-height: 1;
            text-decoration: underline;
            white-space: pre;
        }

    /**********botones redes sociales***************/
    section[role=footer] #divRedes {
        height: 100%;
    }

        section[role=footer] #divRedes #textoRedes {
            margin-bottom: 2px;
            padding-left: 12px;
            font-size: 14px;
            font-weight: 500;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: 0.09px;
        }

        section[role=footer] #divRedes #icosRedes {
            display: flex;
            flex-flow: row nowrap;
            justify-content: left;
            width: 100%;
            min-height: 15px;
            align-items: baseline;
        }

            section[role=footer] #divRedes #icosRedes .iconoRedes {
                padding: 5px 10px;
                font-size: 25px;
                color: #fff;
                margin: auto;
            }

                section[role=footer] #divRedes #icosRedes .iconoRedes:hover, #icosRedes .iconoRedes:active {
                    color: #ca3e2f;
                }

/*icomoon -> fuentes con logos de redes*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?wv6tgf');
    src: url('../fonts/icomoon.eot?wv6tgf#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?wv6tgf') format('truetype'), url('../fonts/icomoon.woff?wv6tgf') format('woff'), url('../fonts/icomoon.svg?wv6tgf#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.iconblog:before {
    content: "Blog";
    font-family: "Kanit", Arial, sans-serif;
    font-weight: bold;
}

.icon-google-plus:before {
    content: "\ea8b";
}

.icon-facebook:before {
    content: "\ea90";
}

.icon-facebook2:before {
    content: "\ea91";
}

.icon-instagram:before {
    content: "\ea92";
}

.icon-twitter:before {
    content: "\ea96";
}

.icon-youtube:before {
    content: "\ea9d";
}

.icon-youtube2:before {
    content: "\ea9e";
}

.icon-wordpress:before {
    content: "\eab4";
}

.icon-wikipedia:before {
    content: "\eac8";
}

.icon-linkedin:before {
    content: "\eac9";
}

.icon-linkedin2:before {
    content: "\eaca";
}

@media only screen and (max-width: 1024px) {
    /* Header */
    section[role=header] > div .head-actions {
        margin-right: 30px;
    }

    section[role=header] > div #logo {
        margin-left: 20px;
    }

    /* Menú */
    #main-nav > ul li {
        padding: 10px 0;
    }

        #main-nav > ul li a {
            justify-content: center;
        }

            #main-nav > ul li a img {
                margin: 0 -7px 0 0;
            }

            #main-nav > ul li a span {
                text-align: center;
            }

    #main-nav li#see-all.active a:after {
        bottom: -15px;
        left: -1px;
        right: -1px;
    }

    /* Footer */
    section[role=footer] > div .footer-dropdown:first-child,
    section[role=footer] .redes,
    section[role=footer] .fine-print {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 850px) {
    /* Menú */
    #main-nav > ul li a img {
        margin: 0 -10px 0 0;
    }

    #main-nav > ul li a span {
        width: 95px;
        height: 25px;
    }

    #main-nav .submenu > div > ul > .submenu-heading > ul > li > a {
        font-size: 11px;
    }
}

@media only screen and (max-width: 767px) {
    /* Header */
    section[role=header] {
        border-bottom: 1px solid #CCC;
        margin-bottom: 0;
    }

        section[role=header] > div {
            border-bottom: solid;
            border-color: #000000;
            margin-bottom: 6px;
            padding: 18px 0 0 0;
        }

            section[role=header] > div .head-actions {
                float: none;
                height: 43px;
                width: auto;
                margin: -6px 6px 0 auto;
                min-height: auto;
            }

                section[role=header] > div .head-actions .calls > span {
                    margin: -3px 0 0 0;
                }

                    section[role=header] > div .head-actions .calls > span span:first-child {
                        margin-bottom: -6px;
                    }

            section[role=header] > div #logo {
                margin: -17px -65px 0 0;
                width: 132px;
                height: 32px;
            }

            section[role=header] > div #menu-btn {
                display: block;
                background-image: url("../images/icons/png/menu-movil.png");
                background-repeat: no-repeat;
                margin: -5px auto 8px 6px;
                width: 29px;
                height: 26px;
                background-size: 100%;
                transition: all .2s ease-out;
                -webkit-tap-highlight-color: rgba(0,0,0,0);
                -webkit-tap-highlight-color: transparent;
            }

                section[role=header] > div #menu-btn.opened {
                    background-image: url("../images/icons/png/cerrar.png");
                }

    .btn-area-clientes-container {
        width: 100%;
    }

        .btn-area-clientes-container .btn-area-clientes {
            margin: 25px 30px 30px auto;
            width: 80%;
            max-width: 376px;
            height: 52px;
            float: none;
            text-transform: uppercase;
        }

            .btn-area-clientes-container .btn-area-clientes .area-title {
                font-size: 17px;
                margin: 0 0 0 0;
            }

    /* Menú */
    #main-nav {
        display: none;
    }

    /* Menú Móvil*/
    #main-nav-mobile {
        position: relative;
        width: 100%;
    }

        #main-nav-mobile #menu-items {
            position: fixed;
            z-index: 10;
            width: 100%;
            height: 0;
            opacity: 0;
            visibility: hidden;
            transition: height 200ms ease-in-out, visibility 400ms linear, opacity 400ms ease-in-out;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

            #main-nav-mobile #menu-items.open {
                height: calc(100vh - 56px);
                opacity: 1;
                visibility: visible;
                transition: height 200ms ease-in-out, visibility 100ms ease-in-out, opacity 100ms ease-in-out;
            }

            #main-nav-mobile #menu-items:last-child {
                padding-bottom: 50px;
                background-color: #000000;
            }

            /* Item de la lista */
            #main-nav-mobile #menu-items .m-item {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                text-align: center;
                align-items: center;
                background-color: #000000;
                margin-bottom: -1px;
            }

                #main-nav-mobile #menu-items .m-item.decorado:after {
                    display: block;
                    width: 80%;
                    content: "";
                    border-bottom: 2px solid #838383;
                }

                #main-nav-mobile #menu-items .m-item.decorado.opened:after {
                    display: block;
                    width: 90%;
                    content: "";
                    border-bottom: 14px solid #cb0000;
                }

                #main-nav-mobile #menu-items .m-item .m-item-btn {
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    height: 65px;
                }

                    #main-nav-mobile #menu-items .m-item .m-item-btn .m-item-title {
                        font-family: Kanit;
                        font-size: 22px;
                        font-weight: 500;
                        font-stretch: normal;
                        font-style: normal;
                        line-height: 1.45;
                        letter-spacing: 0.14px;
                        color: #fff;
                        margin: 15px 0 5px 0;
                    }

                /* Espacios por si no lleva botón o es doble el item */
                #main-nav-mobile #menu-items .m-item.doble .m-item-btn {
                    height: 95px;
                }

                /* Efecto boton item */
                #main-nav-mobile #menu-items .m-item .m-item-btn .m-item-title:active {
                    color: #666666;
                    transform: translateY(3px);
                }

                /* Lista dentro del item */
                #main-nav-mobile #menu-items .m-item .m-item-submenu {
                    position: relative;
                    width: 90%;
                    background-color: #363636;
                    padding: 0;
                    max-height: 0;
                    opacity: 0;
                    visibility: hidden;
                    transition: max-height 200ms ease-in-out, visibility 800ms ease-in-out, opacity 800ms ease-in-out, padding 400ms ease-in-out;
                }

                    #main-nav-mobile #menu-items .m-item .m-item-submenu.open {
                        padding: 55px 20px 8px 20px;
                        max-height: 1000px;
                        opacity: 1;
                        visibility: visible;
                        transition: max-height 200ms ease-in-out, visibility 50ms ease-in-out, opacity 50ms ease-in-out, padding 400ms ease-in-out;
                    }

                /* Si es doble subimos un poco para que el sub-listado se abra mas cerca del titulo */
                #main-nav-mobile #menu-items .m-item.doble .m-item-submenu.open {
                    margin-top: -40px;
                }

                /* Botón atrás (1 por listado dentro del item) */
                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-close {
                    position: absolute;
                    left: -5%;
                    top: 15px;
                    opacity: 0;
                    visibility: hidden;
                    transition: visibility 200ms ease-in-out, opacity 200ms ease-in-out;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu.open .submenu-close {
                    opacity: 1;
                    visibility: visible;
                    transition: visibility 100ms ease-in-out, opacity 100ms ease-in-out;
                }

                /* Efecto boton botón atras */
                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-close:active {
                    transform: translateY(3px);
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-close a {
                    padding: 2px 23px;
                    border-radius: 0 6px 6px 0;
                    box-shadow: 0 3px 0 0 rgb(0 0 0 / 50%);
                    background-color: #e40000;
                    height: 34px;
                }

                    #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-close a span {
                        font-family: Kanit;
                        font-size: 17px;
                        font-weight: 500;
                        font-stretch: normal;
                        font-style: normal;
                        line-height: 1.88;
                        letter-spacing: 0.11px;
                        color: #fff;
                    }

                /* Sub-lista de links */
                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-item {
                    width: 100%;
                    opacity: 0;
                    max-height: 0;
                    visibility: hidden;
                    transition: max-height 200ms ease-in-out, visibility 400ms ease-in-out, opacity 400ms ease-in-out;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu.open .submenu-item {
                    width: 100%;
                    opacity: 1;
                    max-height: 100px;
                    visibility: visible;
                    transition: max-height 200ms ease-in-out, visibility 50ms ease-in-out, opacity 50ms ease-in-out;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-item:after {
                    display: block;
                    content: "";
                    border-bottom: 2px solid #6d6d6d;
                    margin: 6px 0;
                    align-self: center;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-item:last-child:after {
                    display: block;
                    content: "";
                    margin: 0 0 20px 0;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-item span {
                    font-family: Kanit;
                    font-size: 18px;
                    font-weight: 500;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: 1.78;
                    letter-spacing: 0.12px;
                    color: #fff;
                    visibility: hidden;
                    opacity: 0;
                    transition: visibility 100ms ease-in-out, opacity 100ms ease-in-out;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu.open .submenu-item span {
                    visibility: visible;
                    opacity: 1;
                    transition: visibility 100ms ease-in-out, opacity 100ms ease-in-out;
                }

                #main-nav-mobile #menu-items .m-item .m-item-submenu .submenu-item span:active {
                    color: #505050;
                }

                /* Footer del menú */
                #main-nav-mobile #menu-items .m-item .menu-footer {
                    display: flex;
                    flex-direction: column;
                    width: 75%;
                    margin: 35px 0;
                    align-self: center;
                }

                    #main-nav-mobile #menu-items .m-item .menu-footer .menu-footer-item {
                        width: 288px;
                        height: 44px;
                        margin: 4px 0 4px 0;
                        padding: 6px 10px 4px 10px;
                        align-self: center;
                        background-color: #520000;
                    }

                        #main-nav-mobile #menu-items .m-item .menu-footer .menu-footer-item span {
                            font-family: Kanit;
                            font-size: 18px;
                            font-weight: 500;
                            font-stretch: normal;
                            font-style: normal;
                            line-height: 1.78;
                            letter-spacing: 0.12px;
                            text-align: center;
                            color: #fff;
                        }

    /* Footer */
    section[role=footer] {
        height: 500px;
    }

        section[role=footer] > div .footer-dropdown:first-child,
        section[role=footer] .redes,
        section[role=footer] .fine-print {
            margin-left: 0;
        }

        section[role=footer] > div {
            height: 60%;
        }

            section[role=footer] > div .footer-dropdown {
                float: none;
                width: 100%;
                padding: 12px 0 0 0;
                height: 15%;
            }

                section[role=footer] > div .footer-dropdown .f-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    font-size: 20px;
                    font-weight: 500;
                    letter-spacing: 0.13px;
                    color: #a0a0a0;
                }

                    section[role=footer] > div .footer-dropdown .f-item .f-item-title {
                        margin: 5px 0 5px 0;
                    }


                section[role=footer] > div .footer-dropdown ul {
                    display: none;
                }

                section[role=footer] > div .footer-dropdown.opened ul {
                    display: block;
                }

                section[role=footer] > div .footer-dropdown li {
                    background: none;
                    padding: 0 0 8px 0;
                }

            section[role=footer] > div .footer-area-clientes {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                height: 35%;
            }

        section[role=footer] .redes {
            height: 25%;
        }

        section[role=footer] .other-links {
            border-top: 1px solid #979797;
            border-bottom: 1px solid #979797;
            float: none;
            width: 100%;
            height: 35%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            text-align: center;
            text-transform: uppercase;
        }

            section[role=footer] .other-links .footer-nav {
                padding: 7px 10px 7px 10px;
            }

                section[role=footer] .other-links .footer-nav ul:first-child {
                    height: auto;
                }

                    section[role=footer] .other-links .footer-nav ul:first-child li:first-child {
                        padding-top: 0;
                    }

                section[role=footer] .other-links .footer-nav ul li a {
                    font-size: 20px;
                    font-weight: 500;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: normal;
                    letter-spacing: 0.13px;
                    color: #ececec;
                }

        section[role=footer] .fine-print {
            border-top: none;
            clear: none;
            display: block;
            text-align: center;
            height: 15%;
        }

            section[role=footer] .fine-print li {
                padding: 5px;
                display: inline;
            }

        section[role=footer] #divRedes {
            text-align: center;
            margin: 25px 0 0 0;
        }

            section[role=footer] #divRedes #icosRedes {
                min-height: 15px;
                padding: 0;
                justify-content: center;
            }

                section[role=footer] #divRedes #icosRedes #textoRedes {
                    padding: 0;
                    min-width: 100%;
                    margin-bottom: 7px;
                    font-size: 16.8px;
                    font-weight: 500;
                    letter-spacing: 0.11px;
                }
}

@media only screen and (max-width: 375px) {
    section[role=header] > div #logo {
        margin: -4px -55px 0 0;
    }

    section[role=header] > div .head-actions {
        margin: -6px 4px 0 auto;
    }

        section[role=header] > div .head-actions .calls {
            margin: -7px 2px 0 0;
        }

        section[role=header] > div .head-actions .calls > span span {
            font-size: 14px;
        }
}
