@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-1: #8212F3;
    --primary-2: #E5CEFD;
    --primary-3: #330561;
    
    --secondary-1: #23DBA2;
    --secondary-2: #D3F8ED;
    --secondary-3: #0E5841;
    
    --tertiary-1: #E6007C;
    --tertiary-2: #FFCCE7;
    --tertiary-3: #660037;
    
    --dark: #000000;
    --light: #FFFFFF;
    
    --gray-1: #121212;
    --gray-2: #242424;
    --gray-3: #363636;
    --gray-4: #4A4A4A;
    --gray-5: #7A7A7A;
    --gray-6: #B5B5B5;
    --gray-7: #DBDBDB;
    --gray-8: #EDEDED;
    --gray-9: #F5F5F5;
    --gray-10: #FFFEFE;
    
    --marineblue: #1B2136;
}

/*
Font mapping:
100: Thin
200: Extra Light
300: Light
400: Normal
500: Medium
600: Semi Bold
700: Bold
800: Extra Bold
900: Black 
*/

/* 00 - GLOBAL */
body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    font-weight: 400;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .25s ease;
}

a:hover
{
    opacity: .7;
}

/* 01 - COMMON */
.text-titulo-h0
{
    font-size: 28px;
    line-height: 40px;
    font-weight: 500;
}

.text-titulo-h1
{
    font-size: 36px;
    line-height: 48px;
    font-weight: 500;
}

.text-destacado
{
    font-size: 28px;
    font-weight: 500;
}

.text-subtitulo
{
    font-size: 22px;
    font-weight: 400;
}

.text
{
    font-size: 14px;
    line-height: 160%;
}

.text-epigrafe
{
    font-size: 12px;
}

.text-etiqueta
{
    font-size: 12px;
    line-height: 160%;
}

/* Colors */
.color-primary-1{ color: var(--primary-1); }
.color-primary-2{ color: var(--primary-2); }
.color-primary-3{ color: var(--primary-3); }

.color-secondary-1{ color: var(--secondary-1); }
.color-secondary-2{ color: var(--secondary-2); }
.color-secondary-3{ color: var(--secondary-3); }

.color-tertiary-1{ color: var(--tertiary-1); }
.color-tertiary-2{ color: var(--tertiary-2); }
.color-tertiary-3{ color: var(--tertiary-3); }

.color-dark{ color: var(--dark); }
.color-light{ color: var(--light); }
.color-marineblue{ color: var(--marineblue); }

.color-gray-1{ color: var(--gray-1); }
.color-gray-2{ color: var(--gray-2); }
.color-gray-3{ color: var(--gray-3); }
.color-gray-4{ color: var(--gray-4); }
.color-gray-5{ color: var(--gray-5); }
.color-gray-6{ color: var(--gray-6); }
.color-gray-7{ color: var(--gray-7); }
.color-gray-8{ color: var(--gray-8); }
.color-gray-9{ color: var(--gray-9); }
.color-gray-10{ color: var(--gray-10); }

/* Backgrounds */
.bg-primary-1{ background-color: var(--primary-1); }
.bg-primary-2{ background-color: var(--primary-2); }
.bg-primary-3{ background-color: var(--primary-3); }

.bg-secondary-1{ background-color: var(--secondary-1); }
.bg-secondary-2{ background-color: var(--secondary-2); }
.bg-secondary-3{ background-color: var(--secondary-3); }

.bg-tertiary-1{ background-color: var(--tertiary-1); }
.bg-tertiary-2{ background-color: var(--tertiary-2); }
.bg-tertiary-3{ background-color: var(--tertiary-3); }

.bg-dark{ background-color: var(--dark); }
.bg-light{ background-color: var(--light) !important; }
.bg-marineblue{ background-color: var(--marineblue); }

.bg-gray-1{ background-color: var(--gray-1); }
.bg-gray-2{ background-color: var(--gray-2); }
.bg-gray-3{ background-color: var(--gray-3); }
.bg-gray-4{ background-color: var(--gray-4); }
.bg-gray-5{ background-color: var(--gray-5); }
.bg-gray-6{ background-color: var(--gray-6); }
.bg-gray-7{ background-color: var(--gray-7); }
.bg-gray-8{ background-color: var(--gray-8); }
.bg-gray-9{ background-color: var(--gray-9); }
.bg-gray-10{ background-color: var(--gray-10); }

.bg-gradiente{
    background: #330561;
    background: linear-gradient(270deg,rgba(51, 5, 97, 1) 0%, rgba(180, 9, 143, 1) 100%);
}

/* Botones */
.btn-hia
{
    border-radius: 30px;
    padding: 10px 20px;
    color: var(--light);
    transition: all .2s ease;
}

.btn-hia-big
{
    padding: 15px 30px;
}

.btn-hia-mw
{
    min-width: 150px;
}

.btn-hia.btn-light, .btn-hia.btn-secondary-1
{
    color: var(--dark);    
}

.btn-hia.btn-light
{
    border-color: var(--gray-4);
}

.btn-primary-1, .btn-primary-1:hover{ background-color: var(--primary-1); }
.btn-primary-2, .btn-primary-2:hover{ background-color: var(--primary-2); }
.btn-primary-3, .btn-primary-3:hover{ background-color: var(--primary-3); }

.btn-secondary-1, .btn-secondary-1:hover{ background-color: var(--secondary-1); }
.btn-secondary-2, .btn-secondary-2:hover{ background-color: var(--secondary-2); }
.btn-secondary-3, .btn-secondary-3:hover{ background-color: var(--secondary-3); }

.btn-tertiary-1, .btn-tertiary-1:hover{ background-color: var(--tertiary-1); }
.btn-tertiary-2, .btn-tertiary-2:hover{ background-color: var(--tertiary-2); }
.btn-tertiary-3, .btn-tertiary-3:hover{ background-color: var(--tertiary-3); }

.btn-dark, .btn-dark:hover{ background-color: var(--dark); }
.btn-light, .btn-light:hover{ background-color: var(--light); }
.btn-marineblue, .btn-marineblue:hover{ background-color: var(--marineblue); }

.btn-hia:hover
{
    color: var(--light);
}

.btn-hia.btn-light:hover, .btn-hia.btn-secondary-1:hover
{
    color: var(--dark);
}

.fw200
{
    font-weight: 200;
}
.fw300
{
    font-weight: 300;
}
.fw400
{
    font-weight: 400;
}
.fw500
{
    font-weight: 600;
}
.fw600
{
    font-weight: 600;
}
.fw800
{
    font-weight: 800;
}

.pictureContener {
    overflow: hidden;
}

.pictureObject {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--ec-border-radius);
    display: block;
}

.pictureObjectContain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--ec-border-radius);
    display: block;
}

.arrow
{
    background-image: url(../img/arrow.svg);
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.arrow-left
{
    transform: rotate(-180deg);
    margin-right: 10px;
}

.page-numbers
{
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50px;
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
}

.page-numbers.current
{
    background-color: var(--primary-3);
    color: var(--light);
}

.paginador
{
    margin-top: 30px;
}

.menuTransparent .showOnNoTransparent
{
    display: none;
}

.showOnTransparent
{
    display: none;
}

.menuTransparent .showOnTransparent
{
    display: block;
}

/* 02 - Menú & Estructura general */

.menuGradientContainer
{
    --radius: 9px;
    --border: 1px;
    --bg: var(--light);

    position: relative;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: var(--border) solid transparent;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;

    color: var(--primary-3);
}

.contenedorGradiente
{
    --radius: 9px;
    --border: 1px;
    --bg: var(--light);

    position: relative;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: var(--border) solid transparent;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;
}

.menuTransparent
{
    --bg: rgba(255,255,255,.5);

    border-color: #B4098F;
    border-top-color: #7F38F0;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box;
}

.navbar-brand img
{
    height: 40px;
}

.absolute-top
{
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
}

.navbar-nav li
{
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-nav a
{
    color: var(--primary-3);
}

.menuTransparent .navbar-nav a
{
    color: var(--light);
}

footer
{
    background-color: var(--gray-8);
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer
{
    background-color: var(--marineblue);
    border-radius: 15px;
    background-image: url(../img/footer.png);
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    color: var(--light);
}

.footer hr
{
    border-top: 1px solid var(--primary-1);
    opacity: .7;
    margin-top: 50px;
    margin-bottom: 50px;
}

.rrsslink
{
    background-image: url(../img/border.svg);
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    margin-left: 8px;
    margin-right: 8px;
	margin-top:10px;
}

.menu-footer ul
{
    padding-left: 0;
    list-style-type: none;
}

.menu-footer ul li
{
    margin-bottom: 8px;
}

.menu-footer ul li a
{
    font-weight: 400;
}

/* 
    03 - BLOQUES
*/

/* 03 - BLOQUES - HERO BANNER */
.swiper {
    width: 100%;
    height: 650px;
}

.smallBanner .swiper {
    height: 550px;
}

.slide {
    width: 100%;
    position: relative;
    height: 100%;
    background-color: #3C3C3C;
}

.mascara {
    background-color: #3C3C3C;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.mascara_desgradado_amarillo
{
    background: #FFB500;
    background: linear-gradient(270deg, rgba(255, 181, 0, 0.31) 0%, rgba(6, 6, 6, 0.94) 100%);
}

.mascara_desgradado_azul
{
    background: rgba(23,57,97,.6);
}

.mascara_desgradado_black
{
    background: #060606;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.25) 0%, rgba(6, 6, 6, 0.94) 80%);
}

.mascara-z0
{
    z-index: 0;
}

.bghiaGradient
{
    background: #330561;
    background: linear-gradient(270deg,rgba(51, 5, 97, 1) 0%, rgba(180, 9, 143, 1) 100%);
}

.ovalContener
{
    position: absolute;
    right: 0;
    top: 0;
    background-color: red;
    height: 95%;
    width: 40%;
}

.ovalMask {
    -webkit-mask: url(../img/ovalmask.png) right/contain no-repeat;
    mask: url(../img/ovalmask.png) right/contain no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    top: -50px;
}

.ovalMask img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillsMask
{
    background-image: url(../img/pills.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:60%;
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.mascara_curvas
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url(../img/curves.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.slideBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.slideLogo
{
    max-height: 120px;
}

.slideBackground video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slideContent {
    position: relative;
    z-index: 2;
    height: 100%;
    color: #FFF;
}

.slideContent .btn-hia
{
    padding: 15px 30px;
    font-weight: 500;
}

.slideContent label {
    background-color: #FFF;
    color: #4C5249;
    letter-spacing: 3px;
    font-weight: 600;
    line-height: 22px;
    font-size: 16px;
    padding: 5px 15px;
    padding-top: 8px;
    margin-bottom: 15px;
}

.swiperLogos .slide
{
    background: transparent;
}

.swiper.swiperLogos
{
    height: 300px;
}

.logo-contener
{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 70%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #FFF;
    opacity: .5;
    margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 15px;
}

/* 03 - BLOQUES - LOGOS */
.bloque_logos img
{
    max-height: 150px;
    /*max-width: 150px;
    max-height: 100px;*/
}

/* 03 - BLOQUES - BLOQUE CABECERA */
.bloque_cabecera_pagina
{
    padding-top: 180px;
    padding-bottom: 45px;
    margin-bottom: 65px;
}

/* 03 - BLOQUES - BLOQUE FAQ */
.faqContainer
{
    padding: 50px;
    padding-bottom: 30px;
    border-radius: 15px;
    min-height: 150px;
}

.faqNumber
{
    width: 35px;
}

.faqContainer .parrafo
{
    position: relative;
}

.faqContainer .parrafo
{
    line-height: 21px !important;
}

.faqContainer .parrafo.text-subtitulo p
{
    font-size: 24px;
    line-height: 120%;
    font-weight: 400;
}

.faqContainer .parrafo::before
{
    content: "";
    position: absolute;
    background-image: url(../img/star.svg);
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: -35px;
    top: 5px;
}

/* 03 - BLOQUES - BLOQUE CALUGAS */
.caluga
{
    --radius: 9px;
    --border: 1px;
    --bg: var(--marineblue);

    position: relative;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: var(--border) solid transparent;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;

    padding: 25px;
}

.circuloGradiente
{
    --radius: 9px;
    --border: 1px;
    --bg: var(--marineblue);

    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: var(--border) solid transparent;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;

    overflow: hidden;
    text-align: center;
}

.bloque_calugas_iconos .caluga
{
    min-height: 350px;
}

.bloque_calugas_iconos .caluga .circuloGradiente
{
    position: absolute;
    bottom: 25px;
}

.circuloGradiente img
{
    width: 70%;
    margin-top: 15%;
}

.caluga hr
{
    border-top: 1px solid var(--primary-1);
    opacity: .7;
}

/* 03 - BLOQUES - BLOQUE CURSOS */
.grid {
  padding-left: 5px;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .element-item ---- */

.element-item {
  position: relative;
  float: left;
  width: 31%;
  margin: 12px;
  min-height: 500px;
}

.element-item > * {
  margin: 0;
  padding: 0;
}

.boxCurso
{
    text-align: left;
    height: 100%;
}

.boxCurso h3
{
    opacity: .9;
}

.boxCurso .contenedorGradiente
{
    background-color: var(--marineblue);
    --bg: var(--marineblue);
    padding: 20px;
    border-radius: 15px;
    min-height: 500px;
    height: 100%;

    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;

}

.cursoPic
{
    overflow: hidden;
    height: 200px;
    border-radius: 15px;
    color: var(--light);
    position: relative;
}

.cursoPic img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hiaTabs li
{
    display: inline-block;
}

.hiaTabs .btn-hia
{
    border-radius: 30px !important;
    min-width: 180px;
    border: 1px solid var(--gray-4);
}

.nav-pills.hiaTabs .nav-link.active, .nav-pills .show>.nav-link
{
    background-color: var(--primary-1);
    border-color: var(--primary-1);
}

.nav-pills.hiaTabs .nav-link.active.btn-hia.btn-light:hover
{
    color: var(--light);
}

/* 03 - BLOQUES - BLOQUE CALUGAS PASO A PASO */
.calugaPaso
{
    padding: 30px 20px;
    border-radius: 15px;
    color: var(--light);
}
.calugaNumber
{
    background-color: var(--tertiary-1);
    color: var(--light);
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 24px;
}

.calugaPaso .circuloGradiente
{
    height: 70px;
    width: 70px;
}

/* 03 - BLOQUES - BLOQUE FRANJAS */
.bloqueFranja
{
    padding: 20px 20px;
    border-radius: 15px;
    color: var(--light);    
}

.bloqueFranja .pictureContener
{
    border-radius: 15px;
    position: relative;
}

.bloqueFranja .pictureContener .patron
{
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.bloqueFranja .text-subtitulo p
{
    font-size: 24px !important;
}

.bloqueFranja .text-subtitulo li
{
    margin-bottom: 10px;
}

.bloqueFranja ul {
    list-style-image: url('../img/star.svg');
}

/* 04 - NOTICIAS */
.noticia
{
    border-radius: 15px;
    border: 1px solid var(--primary-3);
    padding: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 410px;
}

.mascara-noticia
{
    background: #000000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 15px;
}

.postCategory
{
    border: 1px solid var(--light);
    border-radius: 30px;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    color: var(--light);
    font-size: 12px;
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px 25px;
}

.enlaceNoticia
{
    color: var(--light);
    padding: 15px;
    position: absolute;
    bottom: 0;
}

.enlaceNoticia .extracto
{
    overflow: hidden;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    height: calc(var(--line-height) * 3);
    line-height: var(--line-height);
    --line-height: 1.25em;
}

.enlaceNoticia .text-subtitulo
{
    line-height: 120%;
    margin-bottom: 10px;
    margin-top: 5px;
}

.calugaColumna .circuloGradiente
{
    width: 80px;
    height: 80px;
}

.calugaBadge
{
    position: relative;
    left: 0;
    padding: 8px 15px;
    margin-top: 30px;
    top: 0;
    border-color: rgba(255,255,255,.5);
}

.calugaTestimonio
{
    position: relative;
}

.bottomTestimonio
{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 45px;
}

.bottomTestimonio .text-subtitulo
{
    line-height: 125%;
    font-weight: 300;
}

.autorName
{
    position: relative;
}

.autorName .line
{
    height: 1px;
    background-color: #FFF;
    width: 100%;
    position: absolute;
    top: 12px;
}

.autorName span
{
    background-color: var(--marineblue);
    padding-right: 25px;
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.calugaLateral
{
    height: calc(50% - 0.5rem);
}

.calugaTestimonio .cursoPic
{
    height: 250px;
}

.bottomAbsolute
{
    position: absolute;
    bottom: 0;
    width: calc(100% - 2rem);
}

.bloqueCTA
{
    border-radius: 16px;
}

.bloqueCTA .pictureContener
{
    border-radius: 0 16px 16px 0;
}

.bloque_col2_enlaces .contenedorGradiente
{
    background:
    linear-gradient(var(--marineblue), var(--marineblue)) padding-box,
    linear-gradient(180deg,rgba(127, 56, 240, 1) 0%, rgba(180, 9, 143, 1) 100%) border-box;
    
    padding: 0
}

.bloque_col2_enlaces .pictureContener
{
    border-radius: 9px 9px 0 0;
    height: 280px;
}

.bloque_col2_enlaces .pictureContener .pictureObject
{
    object-position: center;
}

.bloqueEnlace
{
    padding: 30px;
    padding-top: 40px;
    color: var(--light)
}

#singleNoticia h1,
#singleNoticia h2,
#singleNoticia h3,
#singleNoticia h4,
#singleNoticia h5,
#singleNoticia h6
{
    color: var(--primary-3);
}

.iframeContener iframe
{
    border: 0;
    width: 100%;
    height: 500px;
}

#comeback
{
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    opacity: 0;
    transition: all .2s ease-out;
}

#comeback.scrolled
{
    opacity: 1;
}

#comeback img
{
    width: 50px;
    height: 50px;
}

#singleNoticia .rrsslink
{
    color: var(--primary-3);
}

.lineaLlonatan
{
    border-top: 1px solid var(--primary-1);
    opacity: 1;
}

.swiperLogos .swiper-pagination-bullet
{
    background-color: var(--primary-3)
}

@media (max-width: 768px) {
    .mascara_curvas, .ovalMask, .pillsMask
    {
        display: none;
    }

    .slideContent
    {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .slideContent .text-titulo-h1
    {
        text-align: left;
    }

    .text-titulo-h1 {
        font-size: 30px;
        line-height: 35px;
        font-weight: 500;
    }

    .text-titulo-h0 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    .slideLogo
    {
        max-height: 150px;
        margin-bottom: 30px !important;
        margin-top: 30px !important;
    }

    #menuPrincipal
    {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .menuTransparent {
        --bg: rgba(255, 255, 255, .2);
        border-color: #B4098F;
        border-top-color: #7F38F0;
        background: linear-gradient(var(--bg), var(--bg)) padding-box;
    }

    .bloque_columnas_iconos, .bloque_calugas_iconos
    {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .bloque_columnas_iconos .text-titulo-h1 br
    {
        display: none;
    }

    .bloque_col2
    {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .bloqueCTA .pictureContener {
        border-radius: 16px
    }

    footer
    {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .logofoot
    {
        margin-bottom: 40px;
        max-width: 50% !important;
    }

    .menu-footer
    {
        margin-top: 15px;
    }

    .rrsslink
    {
        margin-left: 0;
        margin-right: 15px;
    }

    .rrssGroup
    {
        margin-top: 30px;
    }

    .footer hr
    {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .bloque_cabecera_pagina
    {
        text-align: center;
        padding-top: 120px;
    }

    .bloqueFranja .pictureContener
    {
        display: none;
    }

    .text-subtitulo {
        font-size: 20px;
        font-weight: 400;
    }

    .bloque_cabecera_pagina .text-titulo-h1 br
    {
        display: none;
    }

    .calugaNumber
    {
        margin-bottom: 15px;
    }

    .calugaPaso .text-titulo-h0, .calugaPaso .text-subtitulo
    {
        margin-bottom: 15px;
    }

    .calugaPaso
    {
        padding: 30px;
    }

    .calugaPaso .circuloGradiente
    {
        margin-top: 15px;
    }

    .hiaTabs .btn-hia
    {
        min-width: 150px;
    }

    .boxCurso .contenedorGradiente
    {
        padding: 15px;
    }

    .iconolateral
    {
        display: none;
    }

    .faqContainer
    {
        padding: 30px 30px;
    }

    .text-destacado {
        font-size: 26px;
        font-weight: 500;
    }

    .faqContainer .parrafo.text-subtitulo p
    {
        font-size: 18px;
        line-height: 24px;
    }

    .faqContainer .parrafo
    {
        padding-left: 20px !important;
    }

    .faqContainer .parrafo::before
    {
        left: 0px;        
    }
    
    .faqContainer .text-destacado
    {
        margin-bottom: 20px;
    }

    .bloque_cabecera_pagina .parrafo.text
    {
        text-align: left;
    }
    
    .footer
    {
        background-image: url(../img/footer-mobile.png);
    }
    
    .bloque_calugas_iconos .swiper
    {
        height: auto;
    }
    
    .swiperCalugas .slide
    {
        background: transparent;
    } 
    
    .bloque_calugas_iconos .caluga
    {
        padding: 25px 35px;
        height: 320px !important;
        margin-bottom: 45px;
    }
    
    .caluga hr {
        border-top: 1px solid var(--light);
        opacity: .7;
    }
    
    .swiperCalugas .swiper-pagination-bullet
    {
        background-color: var(--primary-3)
    }
    
    .swiperCalugas .swiper-horizontal>.swiper-pagination-bullets, .swiperCalugas .swiper-pagination-bullets.swiper-pagination-horizontal
    {
        bottom: 0;
    }
    
    .bloque_col2_enlaces
    {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .bloque_col2_enlaces .pictureContener
    {
        height: 215px;
    }
    
    .bloque_col2_enlaces .col-lg-6
    {
        margin-bottom: 30px;
    }
    
    .bloque_col2_enlaces .col-lg-6:last-child
    {
        margin-bottom: 0;
    }
    
    .calugaTestimonio
    {
        padding: 0px !important;
    }
    
    .cursoPic
    {
        border-radius: 9px 9px 0 0;
    }
    
    .bloque_calugas_testimonios .caluga
    {
        padding: 25px 35px;
        min-height: 600px !important;
        height: auto !important;
        margin-bottom: 45px;
    }
    
    .calugaBadge
    {
        margin-top: 0;
    }
    
    .bottomTestimonio
    {
        padding-top: 15px;
    }
    
    .navbar-toggler
    {
        border: 0;
        padding: 0;
    }
    
    .menuTransparent .navbar-toggler-icon
    {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
    }
    
    .navbar-toggler:focus
    {
        box-shadow: none;
    }
 
    .navbar-collapse .btn-hia
    {
        display: none;
    }   
    
    .navbar-toggler-icon
    {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,33,37, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
    }
    
    .navbar-nav a
    {
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    
    .navbar-nav li
    {
        padding-left: 15px;
    }
    
    .noticia
    {
        min-height: 310px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    #page-noticias .btn-hia-mw
    {
        min-width: 180px !important;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    
}