/*
BASE (MOBILE) SIZE

/* GENERAL STYLES */
html {
    height: 100%;
    width: 100%;
    font-size: 16px;
}
body {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  height: 100%;
  width: 100%;
  color: #010101;
  background-color: #fff;
}

/* H1, H2, H3, H4, H5 STYLES */
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5 {
    margin: 0;
    padding: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 120%;
    text-rendering: optimizelegibility;
    color: #0f243f;
}
h1 a,.h1 a,h2 a,.h2 a,h3 a,.h3 a,h4 a,.h4 a,h5 a,.h5 a {
    text-decoration: none;
}
h1,.h1 {
    font-size: 3.5rem;
    font-family: 'Damion', cursive;
}
h2,.h2 {
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-family: 'Damion', cursive;
    color: #006ab0;
}
h3,.h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}
h4,.h4 {
    font-size: 1.5rem;
}
p {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 120%;
}
strong {
    text-rendering: optimizelegibility;
    font-weight: 700;
}
li {
    position: relative;
    margin-bottom: 5px;
    font-size: 1rem;
}
a {
  color: #006ab0;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
a:hover {
  color: #008be6;
}
a:link,
a:visited:link {
  /* this highlights links on iPhones/iPads.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
a.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.9rem;
    color: #006ab0;
    background: #fff;
    border: #006ab0 1px solid;
    border-radius: 32px;
}
a.btn:hover {
    color: #fff;
    background: #006ab0;
}
hr {
    display: block;
    margin: 35px 0;
    width: 100%;
    height: 0;
    border: none;
    border-top: rgba(255,255,255,0.5) 1px solid;
}
img {
    max-width: 100%;
    height: auto;
}
img.alignleft {
    margin-bottom: 20px;
}
img.alignright {
    margin-bottom: 20px;
}

/* Layout */
.wrap {
  position: relative;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}
section {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#container {
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* HEADER SYTLES */
#scroll-top {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 10px;
    color: #fff;
    background: #323232;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 75px;
    padding: 0;
    background: #323232;
    transition: 0.2s;
}
.header .wrap,
.menu-top .wrap {
    max-width: 1720px;
}
.header .logo {
    display: inline-block;
    padding: 18px 0 0;
}
.header .logo img {
    margin-right: 20px;
    height: 40px;
    transition: 0.3s;
}

/* Menu top */
.menu-top {
    display: none;
}

/* Menu main */
.menu-wrap {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    padding-bottom: 100px;
    text-align: center;
    background-color: #424141;
    overflow: scroll;
    transition: 0.5s;
}
.menu-wrap.active {
    right: 0;
}

ul.nav {
    display: block;
    text-align: left;
}
ul.nav>li {
    position: relative;
    display: block;
    padding: 25px 0;
    border-bottom: #777 1px solid;
}
ul.nav>li h3 {
    display: none;
}
ul.nav>li a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
}
ul.nav>li>a {
    margin-bottom: 10px;
}
ul.nav>li>a br {
    display: none;
}
ul.nav>li>ul>li>a {
    font-size: 1.2rem;
    color: #ccc;
}
ul.nav>li a:hover {
    color: #ccc;
}

#menu-main {
    width: 100%;
    padding: 0 10px;
}

/* Nav pull */
.header .nav-pull {
    display: block;
    position: absolute;
    top: 25px;
    right: 0;
    z-index: 5000;
    width: 30px;
    height: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.header .nav-pull span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.header.frontpage .nav-pull span,
.header .nav-pull.active span {
    background: #fff;
} {
    background: #fff;
}
.header .nav-pull span:nth-child(1) {
    top: 0px;
}
.header .nav-pull span:nth-child(2), .header .nav-pull span:nth-child(3) {
    top: 10px;
}
.header .nav-pull span:nth-child(4) {
    top: 20px;
}
.header .nav-pull.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}
.header .nav-pull.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header .nav-pull.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header .nav-pull.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Search */
.header .btn-search {
    display: block;
    padding: 28px 10px 20px;
    color: #fff;
}
.header.frontpage .btn-search {
    display: none;
}
.search-box {
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 500;
    padding: 0;
    background: rgba(0,0,0,0.6);
    transition: 0.3s;
    overflow: hidden;
}
.search-box.active {
    padding: 95px 0 20px;
    height: 175px;
}
.search-box.frontpage.active {
    padding: 155px 0 20px;
    height: 225px;
}
.search-input {
    position: relative;
    margin: 0 40px;
    max-width: none !important;
}
.search-input input {
    margin: 0 !important;
    padding: 15px 60px 15px 0 !important;
    color: #fff !important;
    border: none !important;
    border-bottom: rgba(255,255,255,0.5) 1px solid !important;
    border-radius: 0 !important;
    background: none !important;
}
.search-input input:focus,
.search-input input:focus-visible {
    outline: none;
}
.search-input button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    font-size: 1.8rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    background: #006ab0;
}
.search-box .close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}

/* General */


/* Home banner */
.home-banner {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-banner .cuna {
    position: absolute;
    left: -2%;
    bottom: -80px;
    width: 105%;
    height: 200px;
    background: #f1f1f1;
    border-top: #006ab0 50px solid;
    transform: rotate(3.5deg);
}

.banner-wrapper {
    position: relative;
}
.banner-slider {
    overflow: hidden;
}
.banner-item {
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-item .shade {
    position: relative;
    background: rgba(0,0,0,0.5);
}
.banner-item .shade .wrap {
    max-width: 1000px;
    height: 750px;
    display: flex;
    align-items: center;
}

.banner-item h1,
.banner-item h2 {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}
.banner-item p {
    font-size: 1rem;
    color: #fff;
}
.banner-item a.btn {
    margin-top: 20px;
    color: #000;
    background: #fff;
    border: #fff 1px solid;
}
.banner-item a.btn:hover {
    color: #fff;
    background: none;
}

.btn-prev,
.btn-next {
    position: absolute;
    top: calc(50% - 20px);
    left: 2%;
    z-index: 100;
    display: inline-block;
    width: 50px;
    height: 50px;
    padding-top: 12px;
    font-size: 1.4rem;
    color: #fff;
    background: none;
    border: #fff 1px solid;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s
}
.btn-next {
    left: auto;
    right: 2%;
}
.btn-prev:hover,
.btn-next:hover {
    color: #000;
    background: #fff;
}
.home-banner .btn-prev,
.home-banner .btn-next {
    display: none !important;
}

/* Home recursos */
.home-recursos {
    padding-bottom: 250px;
    position: relative;
    background: #f1f1f1;
}
.home-recursos .cuna {
    position: absolute;
    left: -2%;
    bottom: -80px;
    width: 105%;
    height: 150px;
    background: #fff;
    transform: rotate(3.5deg);
}

.home-recursos h2 {
    position: relative;
    text-align: center;
}
.home-recursos h2 span {
    position: relative;
    padding: 0 20px;
    background: #f1f1f1;
}
.home-recursos h2:before {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    content: '';
    width: 97%;
    height: 0;
    border-top: #006ab0 2px solid;
    transform: rotate(3.5deg);
}
.recursos-wrapper {
    position: relative;
    width: 100%;
}
.recursos-wrapper .slider-hide {
    display: none;
}
.recursos-slider {
    overflow: hidden;
}
.recursos-item {
    float: left;
    width: 100%;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.recursos-item .shade {
    padding: 50px 35px;
    height: 410px;
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}
.recursos-item .shade:hover {
    background: rgba(0,0,0,0.7);
}
.recursos-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    height: 90px;
    color: #fff;
    font-weight: 700;
}
.recursos-item i {
    display: block;
    margin: 40px 0;
    font-size: 3.5rem;
    font-weight: 100;
    color: #fff;
}
.recursos-item a.btn {
    color: #fff;
    background: none;
    border: #fff 1px solid;
}
.recursos-item a.btn:hover {
    color: #000;
    background: #fff;
}

.home-recursos .slider-nav {
    position: relative;
    width: 97%;
}
.home-recursos .btn-prev,
.home-recursos .btn-next {
    top: 40px;
    left: 0;
    color: #000;
    border-color: #000;
}
.home-recursos .btn-next {
    left: auto;
    right: 0;
}
.home-recursos .btn-prev:hover,
.home-recursos .btn-next:hover {
    color: #f1f1f1;
    background: #000;
}

/* Home videos */
.home-videos {
    position: relative;
    padding-bottom: 150px;
}
.home-videos .cuna {
    position: absolute;
    left: -2%;
    bottom: -80px;
    width: 105%;
    height: 150px;
    background: #f1f1f1;
    transform: rotate(3.5deg);
}
.home-videos h2 {
    margin-bottom: 40px;
    font-size: 2.6rem;
    color: #000;
}

.home-playlist .multimedia-item {
    display: inline-block;
    width: 47%;
    height: 220px;
    margin: 0 1%;
    padding: 0;
    vertical-align: top;
}
.home-playlist .multimedia-item:before {
    display: none;
}
.home-playlist .multimedia-item:first-child {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 10px;
}
.home-playlist .multimedia-item a {
    display: block;
    width: 100%;
    height: 150px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-playlist .multimedia-item:first-child a {
    height: 370px;
}
.home-playlist .multimedia-item .shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    transition: 0.5s;
}
.home-playlist .multimedia-item a:hover .shade {
    background: rgba(0,0,0,0.5);
}
.home-playlist .multimedia-item .shade i {
    font-size: 3rem;
    color: #fff;
}
.home-playlist .multimedia-item:first-child .shade i {
    font-size: 5rem;
}
.home-playlist .multimedia-item h3 {
    padding: 10px 0;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
}
.home-playlist .multimedia-item:first-child h3 {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Home novedades */
.home-novedades {
    padding-bottom: 150px;
    background: #f1f1f1;
}
.home-novedades h2 {
    text-align: center;
}
.home-novedades h2 span {
    position: relative;
    padding: 0 20px;
    background: #f1f1f1;
}
.home-novedades h2:before {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    content: '';
    width: 97%;
    height: 0;
    border-top: #006ab0 2px solid;
    transform: rotate(3.5deg);
}
.novedades-wrapper {
    position: relative;
    width: 100%;
}
.novedades-wrapper .slider-hide {
    display: none;
}
.novedades-slider {
    overflow: hidden;
}
.novedades-item {
    float: left;
    width: 93%;
    height: 320px;
    margin-right: 40px;
    padding: 50px 35px;
    background: #fff;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.novedades-item h4 {
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #006ab0;
    font-weight: 700;
}
.novedades-item h4 i {
    margin-right: 5px;
}
.novedades-item h3 {
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000;
    font-weight: 700;
}
.novedades-item a:hover h3 {
    color: #555;
}
.novedades-item p {
    margin-bottom: 5px;
    font-size: 0.8rem;
}
.novedades-files {
    margin-top: 20px;
    
}
.novedades-files a {
    font-size: 0.8rem;
}

.home-novedades .slider-nav {
    position: relative;
    width: 97%;
}
.home-novedades .btn-prev,
.home-novedades .btn-next {
    top: 40px;
    left: 0;
    color: #000;
    border-color: #000;
}
.home-novedades .btn-next {
    left: auto;
    right: 0;
}
.home-novedades .btn-prev:hover,
.home-novedades .btn-next:hover {
    color: #f1f1f1;
    background: #000;
}

/* Nosotros */
.page-nosotros {
    padding: 70px 0 0;
    background-color: #f2f2f2;
}

/* Paginas ***********************************************************/
.page-banner {
    position: relative;
    background: #00253d;
}
.page-banner-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-banner .shade-wrapper {
    padding: 150px 0 180px;
}
.page-banner .shade {
    background: rgba(0,0,0,0.5);
}
.page-banner h1 {
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}
.page-banner p {
    color: #fff;
}
.page-banner .cuna {
    position: absolute;
    left: -2%;
    bottom: -60px;
    width: 105%;
    height: 150px;
    background: #f8f8f8;
    border-top: #006ab0 20px solid;
    transform: rotate(-3.5deg);
}
.no-heading {
    padding-top: 75px;
}

.page-body {
    padding-bottom: 100px;
    background: #f8f8f8;
}
.page-body .breadcrumb {
    
}
.page-content {
    padding: 20px 0;
}
.page-content h1,
.page-content h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #000;
}
.page-content h1:after,
.page-content h2:after {
    display: block;
    content: '';
    width: 50%;
    height: 0;
    margin-top: 15px;
    border-top: #006ab0 3px solid;
    transform: rotate(-3.5deg);
}
.page-content h3 {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #000;
}
.page-content h4 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
    color: #000;
}
.page-content p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 150%;
}
.page-content ul {
    margin: 0 0 40px;
}
.page-content li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    font-size: 0.9rem;
}
.page-content li:before {
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    color: #006ab0;
}
.page-content blockquote {
    
}
.page-content table {
    width: 100%;
    margin: 25px 0 40px;
}
.page-content table th,
.page-content table td {
    padding: 15px 7px;
    font-size: 0.9rem;
    border-bottom: rgba(0,106,176,0.2) 1px solid;
}
.page-content table th {
    text-align: left;
    color: #fff;
    font-weight: 300;
    background: #006ab0;
}

/* Aplicaciones **********************************************************************/
.aplicacion-lst {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 50px 0 20px;
}
.aplicacion-item {
    width: 110px;
    margin-bottom: 30px;
    text-align: center;
    transition: 0.5s;
}
.aplicacion-item .icon {
    display: block;
    margin: 0 auto 20px;
    padding-top: 10px;
    width: 94px;
    height: 94px;
    font-size: 3rem;
    color: #006ab0;
    border: #006ab0 2px solid;
    border-radius: 50%;
}
a.aplicacion-item:hover .icon,
.aplicacion-content a.aplicacion-item .icon {
    color: #555;
    border-color: #555;
}
a.aplicacion-item.active .icon {
    color: #006ab0;
    border-color: #006ab0;
}
.aplicacion-item h2 {
    margin: 0;
    font-family: 'Damion', cursive;
    text-align: center;
    font-size: 1.4rem;
    line-height: 100%;
    color: #006ab0;
}
.aplicacion-item h2:after {
    display: none;
}
a.aplicacion-item:hover h2,
.aplicacion-content a.aplicacion-item h2 {
    color: #555;
}
a.aplicacion-item.active h2 {
    color: #006ab0;
}

.aplicacion-heading {
    padding: 50px 0 0;
    background: #f8f8f8;
}
.aplicacion-single {
    padding: 40px 0;
}
.aplicacion-single .aplicacion-item {
    width: 180px;
}
.aplicacion-single .aplicacion-item .icon {
    margin: 0 auto 20px;
    padding-top: 15px;
    width: 180px;
    height: 180px;
    font-size: 6rem;
}
.aplicacion-single .aplicacion-item h1 {
    margin: 0;
    font-family: 'Damion', cursive;
    text-align: center;
    font-size: 2.3rem;
    line-height: 100%;
    color: #006ab0;
}
.aplicacion-single .aplicacion-item h1:after {
    display: none;
}

.aplicacion-content .aplicacion-lst {
    display: none;
}

/* Cursos ****************************************************************************/
.cursos-lst {
    padding: 20px 0 40px;
}
.cursos-lst br {
    display: none;
}
.cursos-lst a,
.curso-item {
    display: block;
    width: 100%;
    max-width: 600px;
    font-size: 0.9rem;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: rgba(0,106,176,0.4) 1px solid;
}
.curso-item i {
    margin-right: 5px;
}

/* Experiencias ****************************************************************************/
.experiencia-lst {
    padding: 20px 0 40px;
}
.experiencia-item {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: rgba(0,106,176,0.5) 1px solid;
}
.experiencia-item .thumb {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    max-width: 220px;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.experiencia-item h3 {
    margin: 0 0 20px;
    font-size: 1rem;
    color: #006ab0;
}
.experiencia-item p {
    font-size: 0.8rem;
}
.experiencia-item a.file {
    font-size: 0.9rem;
}

/* Publicaciones ****************************************************************************/
.publicacion-lst {
    margin: 40px 0;
}
.publicacion-item {
    margin: 0 0 20px;
    padding: 30px 35px;
    background: #fff;
    border: #ddd 1px solid;
}
.publicacion-item img {
    display: block;
    margin: 0 0 20px;
    border: #ccc 1px solid;
}
.publicacion-item h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}
.publicacion-item p {
    font-size: 0.9rem;
}
.publicacion-item a.btn {
    margin-top: 30px;
    padding: 15px 45px;
}

/* Equipo ****************************************************************************/
.equipo-lst .equipo-item {
    margin-bottom: 100px;
}
.equipo-lst .equipo-item:after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    margin-top: 30px;
    border-top: #d1d1d1 1px solid;
    transform: rotate(-3.5deg);
}
.equipo-item .thumb {
    display: block;
    margin: 0 0 20px;
    width: 144px;
    height: 144px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: #fff 5px solid;
    border-radius: 50%;
}
.equipo-lst .equipo-item .thumb {
    margin: 0 30px 30px 0;
}
.equipo-lst .equipo-item h3,
.equipo-item h1 {
    margin: 0 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #006ab0;
}
.equipo-lst .equipo-item h4,
.equipo-item h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #006ab0;
}
.equipo-lst .equipo-item p {
    margin: 20px 0;
    font-size: 0.8rem;
}
.equipo-lst .equipo-item a {
    font-size: 0.8rem;
}
.equipo-datos {
    margin: 40px 0 60px;
}
.equipo-datos i {
    margin-right: 5px;
}
.equipo-datos p {
    font-size: 0.8rem;
}

.tab-wrapper {
    margin: 0 0 20px;
    border: #ccc 1px solid;
}
.tab-wrapper.active {
    border-color: #006ab0;
    background: #fff;
}
.tab-wrapper h3 {
    position: relative;
    margin: 0;
    padding: 25px 35px;
    font-size: 1rem;
    text-transform: none;
    font-weight: 300;
    color: #006ab0;
    cursor: pointer;
}
.tab-wrapper h3:after {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    content: '\f067';
    font-family: 'Font Awesome 6 Pro';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
}
.tab-wrapper .tab-body {
    padding: 0 35px 35px;
}
.tab-wrapper .tab-body h4 {
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-size: 1rem;
    text-transform: none;
    font-weight: 300;
    color: #000;
    border-bottom: rgba(0,0,0,0.5) 1px solid;
}
.tab-wrapper .tab-body p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 150%;
}
.tab-wrapper .tab-body ul {
    margin: 0 0 40px;
}
.tab-wrapper .tab-body li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 20px;
    font-size: 0.9rem;
}
.tab-wrapper .tab-body li:before {
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    color: #000;
}

/* Actualidad ****************************************************************/
.news-item {
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    background: #fff;
}
.datecol {
    position: relative;
    float: left;
    width: 15%;
}
.titlecol {
    position: relative;
    float: right;
    margin-left: 5%;
    width: 80%;
}
.news-item .date,
.news-item .day,
.news-item .month,
.news-item .year {
    display: block;
    text-align: center;
    text-transform: uppercase;
    line-height: 95%;
    color: #006ab0;
}
.news-item .day {
    font-size: 2.6rem;
    font-weight: 700;
}
.news-item .month,
.news-item .year {
    font-size: 1.2rem;
}
.news-item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #006ab0;
}
.news-item p {
    margin: 0 0 10px;
    font-size: 0.8rem;
}
.news-item a {
    font-size: 0.8rem;
}

/* Search *****************************************************************/
.search-item {
    padding: 25px 0;
    border-bottom: #ccc 1px solid;
}
.search-item h4,
.search-item h5 {
    margin: 5px 0 0;
}
.search-item p,
.search-item a {
    display: block;
    margin: 10px 0 0;
    font-size: 0.9rem;
}

/* Sitemap ****************************************************************/
.page-sitemap h3 {
    margin: 0 0 5px;
    padding-left: 30px;
    font-size: 1.2rem;
    font-weight: 300;
}
.page-sitemap h3.page-parent {
    margin: 20px 0 10px;
    padding-top: 20px;
    padding-left: 0;
    font-size: 1.4rem;
    border-top: rgba(0,106,176,0.4) 1px solid;
}
.page-sitemap h3.page-parent:first-of-type  {
    border: none;
}
.page-sitemap h4 {
    margin: 0 0 5px;
    padding-left: 60px;
    font-size: 1.1rem;
    font-weight: 300;
}

/* forms */
form {
    max-width: 600px;
}
form br {
    display: none;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
    display: block;
    padding: 20px 15px;
    margin: 10px 0 5px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 1rem;
    border: #ccc 1px solid;
    border-radius: 3px;
    background: #f6f6f6;
}
textarea {
    margin-bottom: 30px !important;
    height: 140px;
}
input[type="submit"] {
    display: block;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    background: #006ab0;
    border: #006ab0 1px solid;
    border-radius: 32px;
    transition: 0.5s;
}
input[type="submit"]:hover {
    color: #006ab0;
    background: #fff;
}
.wpcf7-list-item {
    margin: 0 0 20px 0 !important;
}
.wpcf7-list-item label, .wpcf7-list-item label a {
    font-size: 0.8rem;
}
input[type="checkbox"] {
    margin-right: 7px;
}

/* Paginacion */
.page-navigation {
	display: block;
	margin: 15px 0 35px;
	text-align: center;
}

.page-navigation li {
	display: inline-block;
	text-align: center;
	margin: 5px 10px 5px 0;
}
.page-navigation li span.current {
	display: inline-block;
}
.page-navigation li.current,
.page-navigation li span.current,
.page-navigation a {
	padding: 7px 0 0;
	height: 40px;
	width: 40px;
	text-align: center;
	color: #FFF;
	background-color: #282828;
	border: #282828 1px solid;
	border-radius: 50%;
}
.page-navigation a {
	display: block;
	color: #282828;
	background: none;
	border: #282828 1px solid;
}
.page-navigation a:hover {
    color: #fff;
	background: #282828;
}
.page-navigation li,.page-navigation a {
	text-transform: uppercase;
	font-size: 1em;
}
.page-navigation .first-page-link a,.last-page-link a {
	padding: 7px 0 0;
}

/* FOOTER STYLES */
.footer {
    z-index: 30;
    padding: 40px 0 20px;
    text-align: center;
    color: #fff;
    background: #282828;
}
.footer img {
    margin: 0 20px;
    height: 40px;
}
.footer hr {
    border-top: #fff 2px solid;
}
.footer ul.nav {
    display: block;
    margin: 0 0 20px;
    text-align: center;
}
.footer ul.nav>li {
    display: inline-block;
    padding: 0 5px;
    margin: 0 5px;
    height: auto;
    line-height: 100%;
    vertical-align: top;
}
.footer ul.nav>li a {
    padding: 0;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 100%;
    text-transform: none;
    color: #fff;
    white-space: nowrap;
}
.footer ul.nav>li a br {
    display: none;
}

.footer .nav-main {
    display: none;
}

.footer .nav-sn a {
    display: inline-block;
    margin: 0 5px 20px;
    font-size: 1.4rem;
}
.footer p {
    font-size: 0.7rem;
}
.footer a {
    color: #fff;
}
.footer a:hover {
    color: #ccc;
}

/* helpers */
.mobile-hide {
    display: none;
}