/*
Clase que nos ayuda a darle forma al dropdown para seleccionar el idioma deseado
 */
.languagepicker {
    background-color: #FFF;
    display: inline-block;
    padding: 0;
    height: 40px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 0 50px 10px 0;
    vertical-align: top;
    float: left;
}

.languagepicker:hover {
    /* don't forget the 1px border */
    height: 81px;
    z-index: 9998;
}

.languagepicker a{
    color: #000;
    text-decoration: none;
}

.languagepicker li {
    display: block;
    padding: 0px 20px;
    line-height: 40px;
    border-top: 1px solid #EEE;
    z-index: 9999;
}

.languagepicker li:hover{
    background-color: #EEE;
}

.languagepicker a:first-child li {
    border: none;
    background: #FFF !important;
}

.languagepicker li img {
    margin-right: 5px;
}

.roundborders {
    border-radius: 5px;
}

.large:hover {
    /*
    don't forget the 1px border!
    The first language is 40px heigh,
    the others are 41px
    */
    height: 245px;
}


/* Clase que nos sirve para mantener un contenedores con una altura uniforme*/
.g-height-uniform {
    height: 500px !important;
}

/* Clase que nos sirve para mantener un contenedores con una altura uniforme*/
.g-height-uniform-md {
    height: 300px !important;
}

/* Clase que nos sirve para mantener un contenedores con una altura uniforme*/
.g-height-uniform-xs {
    height: 200px !important;
}

.g-content-bottom{
    position: absolute;
    bottom: 0;
    /*left: 0;*/
}

@media (max-width: 991px) {

    .g-height-uniform {
        height:500px !important;
    }

    .g-height-uniform-md {
        height: 250px !important;
    }

    .g-height-uniform-xs {
        height: 200px !important;
    }
}

@media (max-width: 767px) {

    .g-content-bottom{
        position: relative;
        bottom: auto;
        /*left: 0;*/
    }

    .g-height-uniform {
        height: 550px !important;
    }

    .g-height-uniform-md {
        height: 250px !important;
    }

    .g-height-uniform-xs {
        height: 180px !important;
    }

    #texto-titulo-contacto{
        font-size: 2.81429rem !important;
    }

}



@media (max-width: 479px) {

    .g-height-uniform {
        height: 550px !important;
    }

    .g-height-uniform-md {
        height: 320px !important;
    }
}


