/* ESTILOS DE TEXTO */
/* =================================================================================================================== */
/* =================================================================================================================== */

@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css?family=Exo+2:300,400&display=swap');

body {
    font-family: "Nunito", "Opensans", "Roboto", "Helvetica", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1d1d1d;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
}

ul, li {
    list-style: none outside none;
    margin: 0;
}
ul.disco-naranja, ul.disco-naranja li {
    list-style-type: square !important;
}
ul.disco-naranja li::before {
    color: #f1d14f !important;
}

iframe {
    border: none;
}

ul, li {
    list-style: none outside none;
    margin: 0;
}

a {
    color: #EBC336;
    cursor: pointer;
}
a:hover {
    color: #fff;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Exo 2", "Open Sans", "Opensans", "Roboto", "Helvetica", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4 {
    font-weight: 200;
}

p {
    font-size: 1.1rem;
}

/* ESTILOS GENERALES */
/* =================================================================================================================== */
/* =================================================================================================================== */

/* Imágenes de fondo animadas */

.img-bg-anim {
    position: absolute;
    left: 20px;
}

@-webkit-keyframes opacitynine {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}

@-webkit-keyframes zoomrotate {
  0% {
    width: 100%;
    transform: rotate(1deg);
  }
  50% {
    width: 105%;
  }
  100% {
    width: 100%;
    transform: rotate(-1deg);
  }
}
.img-bg-anim img {
    -webkit-animation-name: zoomrotate;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: linear;
}

/* Textos */

.separador-texto-center {
    float: none;
    position: relative;
    display: block;
    margin: 20px auto 35px;
    width: 40px;
    height: 3px;
    background: #FCD33E;
}
.separador-texto-left {
    float: left;
    position: relative;
    display: block;
    margin: 10px 0px 25px;
    width: 40px;
    height: 3px;
    background: #FCD33E;
}

h2.text-right, .section-title.text-right h2 {
    float: right;
    text-align: right !important;
    display: block;
    position: relative !important;
    width: 100% !important;
}

/* Animación del texto */

.typewriter {
    display: inline-block;
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    letter-spacing: 2px;
    animation: typing 5s steps(30, end), blink .75s step-end infinite;
    white-space: nowrap;
    border-right: 4px solid #fcd23e;
    box-sizing: border-box;
}

@keyframes typing {
    from { 
        width: 0% 
    }
    to { 
        width: 100% 
    }
}

@keyframes blink {
    from, to { 
        border-color: transparent 
    }
    50% { 
        border-color: #fcd23e; 
    }
}

/* Animación de las imágenes */

@keyframes blur {
  0%,
  90% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
  }
  50% {
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
  }
}

filter: blur(3px);
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
-o-filter: blur(3px);
-ms-filter: blur(3px);
filter: url(blur.svg#blur);
filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');

image.bluranimation {
    animation: blur 4s ease 0s infinite;
    -webkit-animation: blur 4s ease 0s infinite;
    -moz-animation: blur 4s ease 0s infinite;
}

hr {
    width: 100%;
    position: relative;
    float: left;
    padding: 10px 0px;
    border-top: 1px solid #fff !important;
    margin-top: 10px;
    display: block;
}

/* Espacios */

.space-16 {
    width: 100%;
    position: relative;
    float: left;
    padding: 8px 0px;
    display: block;
}
.space-30 {
    width: 100%;
    position: relative;
    float: left;
    padding: 15px 0px;
    display: block;
}

/* Colores */

.color-corporativo {
    color: #FBD23D;
}

/* SECCIONES */
/* =================================================================================================================== */
/* =================================================================================================================== */

h2.display-4.display-title.home-title.anim-1 {
    font-weight: 300 !important;
}

/* Slider */

@media (max-width: 425px) {
    .display-4.display-title.home-title.anim-1 {
        font-size: 38px;
        line-height: 42px;
    }
}
@media (max-width: 340px) {
    .display-4.display-title.home-title.anim-1 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* HOME */
/* ========================================================================== */

/* Bloque Sobre nosotros */

.seccion-sobre-nosotros {
    opacity: 1;
    background: url(../images/bg-cabeza.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    animation: animatedBackground 10s linear infinite alternate;
}

.seccion-sobre-nosotros h4 {
    color: rgba(241, 209, 78, 1);
}

.seccion-sobre-nosotros h2.display-5.anim-2 {
    text-align: right;
}

.seccion-mision {
    opacity: 0.98;
    background: url(../images/bg-mision.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.seccion-mision h4 {
    color: rgba(241, 209, 78, 1);
}

.seccion-mision h2.display-5.anim-2 {
    text-align: right;
}

.seccion-nosotros {
    opacity: 1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.seccion-nosotros h4 {
    color: rgba(241, 209, 78, 1);
}

.seccion-nosotros h2.display-5.anim-2 {
    text-align: right;
}

.seccion-ventajas {
    opacity: 1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.seccion-ventajas h4 {
    color: rgba(241, 209, 78, 1);
}

.seccion-ventajas h2.display-5.anim-2 {
    text-align: right;
}

#lista-ventajas {

}
#lista-ventajas li {
    list-style-type: none;
}
#lista-ventajas li:before {
    content: '';
    width: 5px;
    height: 5px;
    position: relative;
    float: none;
    display: inline-block;
    margin-right: 10px;
    background: #FBD23D;
    color: #FBD23D;
}

/* Bloque Eventos */

.seccion-eventos {
    opacity: 0.9;
    /*background: rgba(190,40,180,0.8);*/
    background: url(../images/bg-eventos.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.seccion-eventos img {
    opacity: 0.95;
}

.fecha-evento {
    width: auto;
    position: relative;
    display: inline-block;
    color: #f1d14e;
    text-align: left;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

/* Bloque últimas noticias */

.seccion-noticias {
    opacity: 0.92;
    background: url(../images/bg-noticias.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Bloque newsletter y contacto */

.seccion-contacto, .seccion-newsletter {
    opacity: 1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Bloque destacados del mes */

.destacados-del-mes h6 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.destacados-del-mes .nombre-destacado span {
    font-size: 18px;
}
.destacados-del-mes .subtitulo-destacado {
    margin-bottom: 40px;
    color: #cecece;
    font-size: 14px;
}
.destacados-del-mes h6, .destacados-del-mes .nombre-destacado, .destacados-del-mes .subtitulo-destacado {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
}
.destacados-del-mes .contenedor-multimedia {
    float: none;
    display: block;
    margin: 0 auto;
    max-width: 80px !important;
}

/* Botón corporativo */

.btn-outline-corporativo {
    color: #fdd33f;
    border: 1px solid #fdd33f;
    transition: 0.3s background-color;
    background: none;
    line-height: 1.25;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 5px;
}
.btn-transparent {
    background: transparent;
    outline: none;
}
btn-transparent:focus {
    border: none;
    outline: none;
}
.btn-left-hover {
    padding-left: 0;
}
.btn-left-hover:hover {
    background: transparent;
    -webkit-transform: translateX(-5%) rotate(-0deg);
    transform: translateX(-5%) rotate(-0deg);
}
.btn-border-none {
    border: none;
    outline: none;
}
.btn-outline-corporativo.active, .btn-outline-corporativo:active {
    color: #1d1d1d;
    border-color: #1d1d1d;
    background-color: transparent; }
.btn-outline-corporativo:hover, .btn-outline-corporativo:focus {
    background: #fdd33f;
    color: #fff;
    border-color: #fdd33f;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 0, 0, 0.2); }
.btn-outline-corporativo.disabled, .btn-outline-corporativo:disabled {
    color: #ffffff;
    opacity: 0.7;
    background-color: transparent; }


.section-title > p {
    color: #fcd23e;
    opacity: 1 !important;
}

/* Listados de noticias, vídeos, etc. */

.item.row.justify-content-between {
    width: 100%;
}

/* FORMULARIOS */
/* =================================================================================================================== */
/* =================================================================================================================== */

select.form-control-line {
    height: 43px !important;
    min-height: 43px !important;
}
select option {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

label.required:after { 
  content:"*" !important;
  color: #b11111;
  padding-left: 3px;
}

.form-check-input {
    margin-left: 0px;
}

/* LOGIN */
/* =================================================================================================================== */
/* =================================================================================================================== */

.titulo-login {
    padding: 20px;
}

@media (max-width: 1199px) {
    h3.titulo-login {
        text-align: center !important;
    }
}

.navbar-mainmenu {
    z-index: 99999999;
}

.bg-login {
    opacity: 1;
    background: url(../images/bg-login.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* MENÚ */
/* =================================================================================================================== */
/* =================================================================================================================== */

.page-header-alpha .navbar-mainmenu .nav-item {
    font-size: 2rem;
}

a.acceso-soma {
    position: fixed;
    top: 31px;
    right: 120px;
    z-index: 9999999999999;
}

@media (max-width: 767px) {
    a.acceso-soma {
        top: 13px;
        right: 70px;
    }
}
@media (max-width: 380px) {
    .page-header-alpha .navbar-brand .logo img {
        height: auto;
        max-width: 150px;
        padding: 7px 0px;
    }
}
@media (max-width: 334px) {
    .page-header-alpha .navbar-brand .logo img {
        height: auto;
        max-width: 120px;
        padding: 7px 0px;
    }
}

.section-cover-tier {
    background: transparent;
}

@media (max-width: 1199px) {
    .section-cover-tier {
        min-height: 0px;
    }
}

.navbar-mainmenu a:hover {
    color: #FCD23E !important;
}

/* Botones */

.btn {
    border-radius: 6px;
}

.btn-primary {
    background: #FCD23E;
    border: 1px solid #FCD23E;
    color: #222;
}
.btn-primary:hover {
    background: transparent;
    border: 1px solid #FCD23E;
    color: #FCD23E;
}

a.btn-default {
    padding: 10px 15px;
    position: relative;
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    text-decoration: none !important;
}
a.btn-default:hover {
    background-color: transparent;
    color: #FCD23E !important;
    border: 1px solid #FCD23E;
}

@media (max-width: 1200px) {
    .fp-auto-height-responsive {
        height: auto !important;
        padding: 100px 25px;
    }
    .section-footer.scrolldown {
        display: none;
    }
}

.glow-on-hover {
    border: 1px solid #FCD33E;
    outline: none;
    color: #FCD33E;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    text-transform: uppercase;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 17px;
}
.glow-on-hover:hover {
    text-decoration: none;
    color: #FCD33E;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222 !important;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media (max-width: 767px) {
    .glow-on-hover {
        font-size: 12px;
        padding: 5px;
    }
}

/*.partners {
    width: 400px !important;
    display: inline-block;
    position: absolute;
    right: 0px;
    bottom: 20px;
}*/
.partners {
    width: 200px !important;
    display: inline-block;
    position: absolute;
    right: 0px;
    bottom: 20px;
}
.partners-contactanos {
    margin: 100px auto 0;
    float: none;
    width: 550px;
    max-width: 100%;
    position: relative;
    display: block;
}
@media (max-width: 860px) {
    .partners {
        display: none;
    }
}
@media (max-width: 1199px) {
    .partners-contactanos {
        max-width: 100%;
        display: block;
        opacity: 1;
        width: 400px;
        float: none;
        margin: 0 auto;
        padding-top: 40px;
    }
}

/* COOKIES */
/* =================================================================================================================== */
/* =================================================================================================================== */

.tabla-de-cookies td {
    border: 1px solid #fff;
    padding: 10px;
}

/* PÁGINAS ESTÁNDAR */
/* =================================================================================================================== */
/* =================================================================================================================== */

.seccion-estandar .fp-auto-height-responsive {
    padding-top: 0px;
}
.seccion-estandar .page-header.scrolled {
    display: none;
}

.footer-estatico {
    background: #222;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    display: block;
    padding: 20px 40px 0px;
}

.footer-estatico a {
    color: #aaa;
}
.footer-estatico a:hover {
    color: #FBD23D;
}

.footer-estatico .partners {
    width: 400px !important;
    display: inline-block;
    position: relative;
    float: right;
}

@media (max-width: 1024px) {
    .footer-estatico .footer-left-estatico {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        float: left !important;
        text-align: center;
        padding-bottom: 30px;
    }
    .footer-estatico .footer-right-estatico {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        float: left !important;
    }
    .footer-estatico .footer-right-estatico .note {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        float: left !important;
        text-align: center;
    }
    .footer-estatico .footer-right-estatico img {
        width: 50% !important;
        display: block !important;
        position: relative !important;
        float: none;
        margin: 0 auto;
    }
}
@media (max-width: 520px) {
    .footer-estatico .footer-right-estatico img {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        float: none;
        margin: 0 auto;
    }
    .footer-right .note {
        width: 100%;
        right: 0% !important;
    }
    .footer-right .note {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 4800px) {
    .footer-right .note {
        width: 100% !important;
        right: 0%;
        left: 15%;
    }
    .footer-right .note {
        padding: 10px !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* CONTENEDORES MULTIMEDIA */
/* =================================================================================================================== */
/* =================================================================================================================== */

/* Contenedor multimedia estándar */

.contenedor-multimedia {
  box-sizing: border-box;
  margin: 0 auto 10px;
  padding: 3px;
  position: relative;
  text-align: center;
  max-width: 150px;
  width: 150px;
  border: 1px solid #222;
  border-radius: 6px;
  background: #222;
}
.miniatura-multimedia {
  position: relative;
}
.miniatura-multimedia::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbnail-multimedia {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  position: absolute;
}
.centrar-multimedia {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform: translate(50%, 50%);
  width: 100%;
}
.contenedor-multimedia img {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/* Contenedor multimedia notas de prensa */

.contenedor-multimedia-prensa {
  box-sizing: border-box;
  margin: 0 auto 10px;
  padding: 3px;
  position: relative;
  text-align: center;
  max-width: 100%;
  width: 100%;
  border: 1px solid #222;
  border-radius: 6px;
  background: #222;
}
.miniatura-multimedia-prensa {
  position: relative;
}
.miniatura-multimedia-prensa::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.thumbnail-multimedia-prensa {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  position: absolute;
}
.centrar-multimedia-prensa {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform: translate(50%, 50%);
  width: 100%;
}
.contenedor-multimedia-prensa img {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/* Contenedor multimedia eventos */

.contenedor-multimedia-evento {
  box-sizing: border-box;
  margin: 0 auto 10px;
  position: relative;
  text-align: center;
  max-width: 100%;
  width: 350px;
  background: #222;
  border-radius: 6px;
  overflow: hidden;
}
.miniatura-multimedia-evento {
  position: relative;
}
.miniatura-multimedia-evento::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbnail-multimedia-evento {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  position: absolute;
}
.centrar-multimedia-evento {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform: translate(50%, 50%);
  width: 100%;
}
.contenedor-multimedia-evento img {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 100%;
  min-width: 100%;
  max-height: auto;
  opacity: 0.5;
}

/* Contenedor multimedia formador del evento */

.contenedor-multimedia-formador-evento {
  box-sizing: border-box;
  float: left;
  position: relative;
  text-align: center;
  max-width: 120px;
  width: 120px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 10px 15px 0px;
  display: inline-block;
}
.miniatura-multimedia-formador-evento {
  position: relative;
}
.miniatura-multimedia-formador-evento::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbnail-multimedia-formador-evento {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  position: absolute;
}
.centrar-multimedia-formador-evento {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform: translate(50%, 50%);
  width: 100%;
}
.contenedor-multimedia-formador-evento img {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/* EVENTOS */
/* =================================================================================================================== */
/* =================================================================================================================== */

.fecha-evento-listado {
    font-size: 12px;
    text-align: left;
    padding: 0px 0px 20px;
    width: 100%;
    color: #FBD23D;
}
.fecha-evento-listado span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* PÁGINA DE EVENTO */
/* =================================================================================================================== */
/* =================================================================================================================== */

ul#formadores-evento {
    width: 100%;
    float: left;
    position: relative;
    display: block;
    padding-left: 0px;
}
ul#formadores-evento > li {
    width: 100%;
    float: left;
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 5px;
}
ul#formadores-evento .datos-de-formador {
    float: left;
    position: relative;
    display: inline-block;
    padding-top: 10px;
}
ul#formadores-evento .datos-de-formador h5 {
    line-height: 18px;
    margin-bottom: 0px;
}
ul#formadores-evento .datos-de-formador h5 span {
    font-size: 14px;
    font-weight: 400;
}
ul#formadores-evento .datos-de-formador  p.small {
    margin-bottom: 2px;
}

ul#redes-sociales-formador {
    float: left;
    position: relative;
    display: inline-block;
    padding-left: 0px;
    width: 100%;
}
ul#redes-sociales-formador li {
    float: left;
    position: relative;
    display: inline-block;
    padding-right: 10px;
}
ul#redes-sociales-formador li i {
    font-size: 25px;
    color: #fff;
}

@media (max-width: 600px) {

    .contenedor-multimedia-formador-evento {
      float: none;
      margin: 10px auto 15px;
      display: block;
    }

    ul#formadores-evento .datos-de-formador {
        padding-left: 0px;
        padding-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    ul#redes-sociales-formador {
        text-align: center;
    }
    ul#redes-sociales-formador li {
        float: none;
        padding: 0px 5px;
    }
}

/* POSTS */
/* =================================================================================================================== */
/* =================================================================================================================== */

.bg-generico {
    opacity: 1;
    background: url(../images/bg-generico.jpg) !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

/* ALERTS */
/* =================================================================================================================== */
/* =================================================================================================================== */

.form-success-visible {
    color: #415822;
    background-color: #b9db8e;
    border-color: #85a55b;
    margin: 15px 0px;
    padding: 20px 20px 5px;
    border-radius: 6px;
    height: auto !important;
}
.form-danger-visible {
    color: #582722;
    background-color: #e0958d;
    border-color: #9c5750;
    margin: 15px 0px;
    padding: 20px 20px 5px;
    border-radius: 6px;
    height: auto !important;
}

/* TECNOLOGÍAS PÁGINA AGENDA */
/* =================================================================================================================== */
/* =================================================================================================================== */

ul.tecnologias-listado-landing {
    float: left;
    width: 100%;
    position: relative;
    display: block;
}
ul.tecnologias-listado-landing li {
    display: inline-block;
    float: left;
    padding: 5px 20px 5px 0px;
}

/* SECCIÓN ESTÁNDAR LANDING */
/* =================================================================================================================== */
/* =================================================================================================================== */

.body-page.seccion-estandar .section-wrapper.largewidth {
    margin-top: 50px;
}

/* REVISIÓN RESPONSIVE */
/* =================================================================================================================== */
/* =================================================================================================================== */

@media (max-width: 767px) {
    .title-desc h4 {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 25px;
        text-align: center !important;
    }
    .title-desc p, .title-desc h2.display-4.display-title, .section-title {
        text-align: center !important;
    }

    .seccion-mision {
        background: none;
    }

    .section-actividad .section-content > .row {
        margin-left: 0px;
        margin-right: 0px;
    }

    .fp-auto-height-responsive.bg-login {
        padding-top: 25px;
    }
}








