/*
Theme Name: BMSalud Mental
Author: ForeverAlone
Description: Theme base
Version: 1.0

This theme is licensed under the MIT.
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    display: block;
    width: 100%;
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #525252;
}

.bg-color-gray {
    background-color: #e2e2e2;
}

.red-color {
    color: #01D8A9 !important;
}

.red-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content !important;
    height: 45px !important;
    font-size: 16px !important;
    line-height: 45px !important;
    background-color: #01D8A9!important;
    border-radius: 3px !important;
    padding: 0 35px !important;
    transition: 300ms all ease !important;
    color: white !important;
    cursor: pointer !important;
}

.red-button:hover {
    background: #01D8A9 !important;
}


.main-container {
    display: block;
    width: 100%;
}

.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.row {
    display: block;
    width: 100%;
}

.row .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content p {
    font-size: 13px;
    line-height: 1.5em;
}

p a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.content p {
    font-size: 14px;
    color:#545454;
}


.top-menu {
    display: none;
}

.main-logo {
    display: block;
    width: max-content;
    height: max-content;
    padding: 10px 0;
}

.main-logo img {
    display: block;
    height: 100%;
    max-height: 59px;
}

.row:nth-child(2) {
    display: flex;
    max-width: none;
    background-color: #3b4d72;
    margin: 0 -15px;
}

.row:nth-child(2) .content {
    justify-content: space-between;
    padding: 15px;
}

.open-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
}

.open-search svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: white;
}

.open-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
}

.open-menu img {
    display: block;
    width: 40px;
    height: 40px;
}

.menu-container {
    display: block;
    width: 80%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #3b4d72;
    padding: 30px;
    z-index: 99999;
}

.menu-container ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-container ul li.menu-item-has-children {
    position: relative;
}

.menu-container ul li.menu-item-has-children .open-submenu {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-90deg);
    width: 38px;
    height: 38px;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent url(images/chevron-left-solid.svg) no-repeat center center / 10px auto;
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

.menu-container ul li.menu-item-has-children .open-submenu.opened { transform: rotate(0); }

.menu-container .close-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
}

.menu-container .close-menu img {
    display: block;
    width: 30px;
    height: 30px;
}

.menu-container .main-menu {
    display: block;
    margin-top: 50px;
}

.menu-container .main-menu a {
    display: block;
    width: 100%;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 55px 15px 0;
}

.menu-container .main-menu .sub-menu {
    display: none;
    padding-top: 15px;
    opacity: 1;
}

.menu-container .main-menu .sub-menu a {
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px 20px;
}

.search-container {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #99d6ea;
    padding: 10px 15px;
    overflow: hidden;
    width: 100%;
    height: 60px;
}

.search-container form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1130px;
    height: 100%;
}

.search-container input {
    background: none;
    border: none;
    padding: 5px 0;
    outline: none;
    width: calc(100% - 40px);
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.search-container .close-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
}

.search-container .close-search img {
    display: block;
    width: 13px;
    height: 13px;
}

@media (min-width: 768px) {

    .main-logo {
        display: block;
        width: 35%;
        height: auto;
        padding: 15px 0;
    }

    .main-logo img {
        display: block;
        width: auto;
        max-width: 300px;
        height: auto;
    }

    .top-menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 65%;
    }

    .top-menu ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .top-menu ul li {
        list-style: none;
    }

    .top-menu a {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        color: black;
        margin-left: 22px;
    }

    .top-menu ul li.btn-inscripcion{
        background: #01D8A9;
        border-radius: 3px;
        margin-left: 20px;
        padding: 12px 24px;
        transition: 300ms all ease;
    }

    .top-menu ul li.btn-inscripcion:hover{
        background: #3b4d72;
    }

    .top-menu ul li.btn-inscripcion a{
        color: #fff;
        margin-left: 0;
    }

    .row:nth-child(2) .content {
        padding: 0 15px;
    }

    .open-menu {
        display: none;
    }

    #red-top-bar {
        height: 60px;
    }

    #red-top-bar .content {
        background: #3b4d72;
    }

    #red-top-bar .content.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: initial;
        height: 60px;
        padding: 0 30px;
        z-index: 9999;
    }

    .menu-container {
        display: block !important;
        position: initial;
        top: initial;
        right: initial;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .menu-container .main-menu {
        display: flex;
        margin-top: 0;
        width: 100%;
        height: 100%;
    }

    .menu-container .main-menu > div,
    .menu-container .main-menu > div > ul {
        display: flex;
        margin-top: 0;
        width: 100%;
        height: 100%;
    }

    .menu-container .main-menu a {
        font-size: 12px;
        text-align: center;
        width: max-content;
        padding: 15px;
    }

    .menu-container .main-menu .menu-item-has-children a {
        padding: 15px 35px 15px 15px;
    }

    .menu-container .close-menu {
        display: none;
    }

    .menu-container ul li.menu-item-has-children .open-submenu {
        width: 12px;
        height: 12px;
        border: none;
        border-radius: 0;
        background-size: contain;
        top: 25px;
        right: 15px;
    }

    .menu-container ul li.menu-item-has-children:hover .open-submenu { transform: rotate(0); }

    .search-container.fixed {
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 9999;
    }

    .menu-container .main-menu .sub-menu {
        padding: 0;
        height: 70px;
    }

    .menu-container .main-menu .sub-menu.opened {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        transform: translateY(100px);
        width: 100%;
        background: #2c3b5c;
        padding: 15px;
        position: fixed;
        top: 149px;
        left: 0;
    }

    .menu-container .main-menu .sub-menu a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        width: max-content;
        padding: 15px;
        border-left: 1px solid #ccc;
    }

    .menu-container .main-menu .sub-menu a:hover {
        background-color: rgba(0, 0, 0, .1);
    }

    .fixed .menu-container .main-menu .sub-menu {
        top: 60px;
    }

}

/*
 * Slider
 */

.main-slider {
    display: block;
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.main-slider .owl-nav button.owl-prev,
.main-slider .owl-nav button.owl-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5) url('images/chevron-left-solid.svg') no-repeat center center / 10px auto;
    border-radius: 20px;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    transition: background .3s ease-in-out;
}
.main-slider .owl-nav button:hover {
    background-color: #f00024;
}

.main-slider .owl-nav button.owl-next {
    transform: translateY(-50%) rotate(180deg);
}

.main-slider .owl-dots {
    display: none;
}

.main-slider .slide {
    display: block;
    width: 100%;
    position: relative;
}

.main-slider .slide .bg-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.main-slider .slide .slide-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .4);
}

.main-slider .slide .slide-container .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    max-width: 1200px;
    color: white;
    text-align: center;
}

.main-slider .slide .slide-container .content .subtitle {
    margin-bottom: 5px;
}

.main-slider .slide .slide-container .content .title {
    font-size: 30px;
    margin-bottom: 15px;
}

.main-slider .slide .slide-container .content .bajada {
    font-size: 14px;
    line-height: 1.4em;
    padding: 0 15px;
}

.main-slider .slide .slide-container .content{
    justify-content: center;
    align-items: center;
    height:100%;
}

.main-slider .slide .slide-container .content .leer-mas {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #00d9a9;
    padding: 15px 30px;
    text-decoration: none;
    margin: 50px 0;
    transition: transform .3s ease-in-out;
}

.main-slider .slide .slide-container .content .leer-mas:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {

    .main-slider .slide .slide-container {
        justify-content: flex-start;
        padding-top: 50px;
    }

    .main-slider .slide .slide-container .content {
        align-items: flex-start;
    }

    .main-slider .slide .slide-container .content .title {
        font-size: 44px;
    }

    .main-slider .slide .slide-container .content .subtitle {
        font-size: 28px;
    }

    .main-slider .slide .slide-container .content .bajada {
        padding: 0;
        font-size: 16px;
    }

    .main-slider .slide .slide-container .content .leer-mas {
        margin: 30px 0;
    }

    .main-slider .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 1600px;
        height: 100px;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-slider .owl-dots .owl-dot {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 260px;
        height: 100%;
        background: #ff1236;
        opacity: .5;
        border-radius: 10px;
        margin: 15px;
        transition: opacity .3s ease-in-out;
    }

    .main-slider .owl-dots .owl-dot:hover {
        opacity: .95;
    }

    .main-slider .owl-dots .owl-dot button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        background: none;
        border: none;
    }

    .main-slider .owl-dots .owl-dot.active {
        opacity: 1;
    }
}

/*
 * Articles
 */

.articles {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 15px;
 }

.articles .title {
    font-size: 40px;
    font-weight: 700;
    padding: 15px 0;
    text-align: center;
    color:#3b4d72;
}

 .articles .filter {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.articles .filter .cta {
    display: block;
    padding: 15px 0;
    font-size: 20px;
    text-align: center;
    color:#525252;
}

.articles .filter .custom-select {
    margin: 0 auto;
}

.articles .articles-list {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
}

.articles .article {
    display: block;
    width: 100%;
}

.articles .article .thumbnail {
    display: block;
    width: 100%;
    position: relative;
}

.articles .article .thumbnail img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.articles .article .thumbnail .date {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .4);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
}

.articles .article .content {
    display: block;
    width: 100%;
    padding: 15px 0;
}

.articles .article .content .cat-label {
    display: block;
    color: #01D8A9;
    font-weight: 700;
    text-decoration: none;
}

.articles .article .content .title {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    padding-top: 5px;
    line-height: 1.1em;
}

.articles .article .content .excerpt {
    text-align: left;
    font-size: 13px;
    padding-top: 5px;
    line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.articles .article .content .leer-mas {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    border:2px solid #3b4d72 !important;
    color:#3b4d72 !important;
    background-color:#fff !important;
}

.articles .article .content .leer-mas:hover{
    border:2px solid #3b4d72 !important;
    color:#fff !important;
    background-color:#3b4d72 !important;
}

.articles .all-articles, .events .all-events {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px auto 0;
}

@media (min-width: 768px) {

    .articles .filter {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .articles .filter .custom-select {
        margin: 0 15px;
    }

    .articles .articles-list {
        display: grid;
        width: calc(100% - 30px);
        grid-template-columns: 50% 50%;
        grid-row-gap: 50px;
    }

    .articles .article {
        width: calc(100% - 15px);
    }

    .articles .article:nth-child(2n) {
        transform: translateX(15px);
    }

    .articles .article .content .title {
        padding-top: 0;
    }

    .articles .article .content .leer-mas {
        padding-bottom: 0;
    }

    .articles .all-articles {
        margin-top: 70px;
    }
}

@media (min-width: 1080px) {

    .articles .title {
        padding: 15px;
        text-align: left;
    }

    .articles .filter {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .articles .articles-list {
        width: 100%;
    }

    .articles .article {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: initial;
        min-height: 200px;
    }

    .articles .article .thumbnail {
        width: 240px;
        height: 240px;
    }

    .articles .article .content {
        width: calc(100% - 240px);
    }

    .articles .article .thumbnail img {
        width: 100%;
        height: 100%;
    }

    .articles .article .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 0 0 15px;
        height: 100%;
    }


    .articles .article .content .title {
        padding: 0 0 15px 0;
    }

}

/*
 * Events Module
 */

.events {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px;
    background-image: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.4)),url(https://futuramama.banmedica.cl/wp-content/uploads/2021/03/GettyImages-516071104.jpg);
    background-size: cover;
}

.events .title {
    display: block;
    width: 100%;
    max-width: 1140px;
    margin: 60px auto 60px;
    color: white;
    padding: 10px 0 30px;
    font-size: 42px;
    line-height: 1em;
    text-align: center;
}

.events .subtitle {
    display: block;
    width: 100%;
    max-width: 1140px;
    font-family: 'Montserrat';
    font-size: 22px;
    color: #ff1236;
}

.events .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto 70px;
    background: white;
    border-radius: 20px;
    min-height: 100px;
    padding: 45px 25px;
}

.events .container .title {
    color: black;
    margin: 0;
    border-bottom: 1px solid #c9c9c9;
    text-align: left;
    font-size: 32px;
    margin-bottom: 15px;
}

.events .container .inscribete {
    margin-left: auto;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
}

.events .talleres {
    display: block;
    width: 100%;
    padding: 0;
}

.events .talleres .taller {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    margin:  0;
    background: transparent;
}

.events .talleres .taller .title {
    font-size: 24px;
    border: none;
    margin: 0;
    padding: 10px 0;
}

.events .talleres .taller .activity-details.sidebar {
    padding: 15px 0;
    margin: 0;
    box-shadow: none;
}

.events .talleres .taller .activity-details.sidebar .block {
    padding: 15px 0;
    margin: 0;
}

.events .talleres .taller .activity-details.sidebar .block .content {
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {

    .events .title {
        text-align: left;
    }


    .events .container {
        padding: 45px;
    }

    .events .talleres {
        display: flex;
        flex-wrap: initial;
    }

    .events .talleres .taller {
        padding: 15px 15px 0 0;
    }

    .events .talleres .taller .activity-details.sidebar {
        flex-wrap: initial;
        flex-direction: row;
    }

    .events .talleres .taller .activity-details.sidebar .block:first-of-type {
        width: max-content;
    }

    .events .talleres .taller .activity-details.sidebar .block {
        width: max-content;
        padding-right: 5px;
    }

    .events .talleres .taller .activity-details.sidebar .block:last-of-type {
        width: max-content;
        max-width: initial;
    }
}

/*
 * Single Page
 */

.shortcuts {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 120px auto 90px;
}

.shortcuts .shortcut {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    color: black;
    text-decoration: none;
}

.shortcuts .shortcut .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #01D8A9;
    border: 1px solid #01D8A9;
    padding: 10px;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out;
}

.shortcuts .shortcut .icon:hover {
    transform: translateY(-15px);
    opacity: .7;
}

.shortcuts .shortcut .icon svg {
    display: block;
    width: 100%;
}

.shortcuts .shortcut .icon svg * {
    stroke: white;
}

.shortcuts .shortcut .icon .image {
    display: block;
    width: 50%;
}

.shortcuts .shortcut .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 80px);
    height: 150px;
    padding: 0 0 0 15px;
}

.shortcuts .shortcut .content .title {
    display: block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 5px;
    color:#3b4d72;
}

.shortcuts .shortcut .content .cta {
    display: block;
    width: 100%;
    font-size: 14px;
}

.shortcuts .shortcut .content .readmore {
    margin: 10px 0 0 0;
    font-size: 14px;
    font-weight: bold;
    color: #3b4d72;
}


@media (min-width: 960px) {

    .shortcuts {
        flex-direction: row;
    }

    .shortcuts .shortcut .content .title {
        font-size: 18px;
    }

    .shortcuts .shortcut .content .cta {
        font-size: 15px;
    }

}

/*
 * Single Page
 */

.single-page {
    display: block;
    width: 100%;
}

.single-page .page-header {
    display: block;
    width: 100%;
}

.single-page .page-header .bg-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.breadcrumbs {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 15px 37px;
    color: #525252;
    font-weight: 600;
    font-size: 12px;
}

.breadcrumbs a {
    display: inline-block;
    color: #01D8A9;
    margin-right: 7px;
    text-decoration: none;
}

.breadcrumbs span {
    display: inline-block;
    color: #525252;
}

.breadcrumbs a span {
    color: #00d9a9;
}

/*
 * Single Activity
 */

.activity-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: -50px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 1px 1px 15px 0px #d8d8d8;
}

.activity-details.sidebar {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    padding: 25px 20px;
}

.activity-details.min {
    flex-direction: column;
    flex-wrap: initial;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.activity-details .block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0 15px;
}

.activity-details.sidebar .block {
    width: 100%;
    max-width: initial;
}

.activity-details.min .block {
    padding: 0 0 20px;
}

.activity-details .block:last-of-type { width: 100%;  }

.activity-details .block.title {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 1.1;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
}

.activity-details .block .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    border-radius: 50%;
    background: #f00024 url(images/calendar-solid.svg) no-repeat center center / 45% auto;
    border: 1px solid #f00024;
    padding: 10px;
}

.activity-details .block.user .icon {
    background-image: url(images/user-solid.svg);
}

.activity-details .block.hour .icon {
    background-image: url(images/clock-solid.svg);
}

.activity-details .block.location .icon {
    background-image: url(images/location-pin-solid.svg);
}

.activity-details .block.cicles .icon {
    background-image: url(images/comment-solid.svg);
}

.activity-details .block .content {
    width: calc(100% - 54px);
    padding: 0;
}

.activity-details .block .content p {
    font-size: 13px;
    line-height: 1.2em;
}

.activity-details .block .content p a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.activity-details.sidebar .block .content p {
    font-size: 14px;
}

.activity-details .block .scroll-down {
    display: block;
    background-color: #FF1236;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    margin: 15px auto;
    border-radius: 50px;
    font-family: 'Montserrat';
    font-weight: 600;
    width: 160px;
}

.activity-details .block .share {
    display: block;
    background-color: transparent;
    border: none;
    color: #FF1236;
    font-size: 16px;
    padding: 12px 20px;
    margin: 15px auto 0;
    font-family: 'Montserrat';
    font-weight: 600;
    width: 160px;
}

.single-page.activity > .content {
    padding: 15px;
}

.single-page.activity table {
    margin-bottom: 70px;
}

.single-page.activity form {
    padding-left: 0;
    padding-right: 0;
}

.single-page.activity form > p {
    padding: 0;
}

@media (min-width: 768px) {

    .activity-details {
        justify-content: space-around;
    }

    .activity-details .block {
        width: 25%;
        max-width: 160px;
    }

    .activity-details .block:first-of-type {
        width: 250px;
        max-width: initial;
    }

    .activity-details .block:last-of-type {
        width: 200px;
        max-width: initial;
    }

    .single-page.activity form {
        flex-direction: column;
    }

    .single-page.activity form > p {
        width: 100%;
    }

}

@media (min-width: 960px) {

    .activity-details.min {
        flex-direction: row;
    }

    .activity-details.min .block {
        width: 33%;
    }

}

/*
 * Columnas
 */

.columnas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}

.columnas .columna {
    display: block;
    width: 100%;
}

@media (min-width: 960px) {

    .columnas {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .columnas .columna {
        width: 30%;
    }

    .columnas .columna:first-of-type {
        width: calc(70% - 20px);
    }

}

/*
 * Talleres
 */

.talleres {
    display: flex;
    justify-content: center;
    align-items: initial;
    flex-wrap: wrap;
    padding-top: 30px;
}

.talleres .taller {
    display: block;
    width: calc(100% - 30px);
    margin: 0 10px 50px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #ededed;
    border-radius: 15px;
}

.talleres .taller .taller-index {
    color: #ffffff;
    font-weight: 700;
    font-size: 38px;
    background-color: #ff1236;
    width: 50px;
    height: 50px;
    text-align: left;
    border-radius: 50px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talleres .taller .title {
    margin: 15px 0;
}

.talleres .taller .taller-nth {
    font-size: 14px;
    font-weight: 600;
}

.talleres .taller .title {
    line-height: 1.1em;
    color: #000000;
    font-size: 23px;
    font-weight: 700;
}

.talleres .taller .content {
    padding: 0 0 0;
}

.talleres .taller .expositor {
    position: relative;
    width: 100%;
    padding-top: 16px;
    margin-bottom: 0px;
    padding-bottom: 30px;
    border-top-width: 1px;
    border-top-color: #cecece;
    border-top-style: solid;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.talleres .taller .expositor .image {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    transform: translateY(30%);
    background: #cbcbcb;
}

.talleres .taller .expositor .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .talleres .taller {
        width: calc(50% - 30px);
    }
}

/*
 * Tables
 */

.table {
    width: 100%;
    border: 1px solid #cccccc;
}

.table th {
    font-weight: bold;
    background: #eaeaea;
}

.table th, .table td {
    padding: 10px;
    text-align: center;
}

.table tr td:nth-child(1), .table thead {
    font-weight: bold;
    background: #eaeaea;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/*
 * Footer
 */

.big-banner {
    display: block;
    width: 100%;
    background-image: url(images/fondo-banner.jpg);
    background-size: cover;
    color: white;
    background-position: bottom;
}

.big-banner .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.big-banner .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.big-banner .column .title {
    display: block;
    width: 100%;
    margin: 50px auto 15px;
    padding: 0 15px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1em;
}

.big-banner .column .bajada {
    display: block;
    width: 100%;
    padding: 0 15px;
    font-size: 16px;
    text-align: center;
    line-height: 1.2em;
}

.big-banner .column .subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1em;
    background-color:#01D8A9 !important;
    color: #fff;
    border-radius: 3px;
    height: 64px;
    text-decoration: none;
    margin-top: 30px;
}

.big-banner .column .image {
    display: block;
    width: 100%;
}

@media (min-width: 960px) {

    .big-banner .container {
        flex-direction: row;
    }

    .big-banner .column .title {
        margin-top: 0;
        text-align: left;
        padding-left: 30px;
    }

    .big-banner .column .bajada {
        text-align: left;
        padding-left: 30px;
    }

    .big-banner .column .subscribe {
        margin-right: auto;
        margin-left: 30px;
        transition: transform .3s ease-in-out;
    }

    .big-banner .column .subscribe:hover {
        transform: scale(1.1);
    }
}

/*
 * Single Page
 */

.single-page {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.single-page.columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
}

.single-page .column {
    display: block;
    width: 100%;
    padding: 0 15px;
}

.single-page .banner-page {
    display: block;
    width: 100%;
}

.single-page .banner-page img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.single-page .banner-page img.mobile {
    display: block;
}

.single-page .banner-page img.desktop {
    display: none;
}

@media (min-width: 768px) {
    .single-page .banner-page img.mobile {
        display: none;
    }

    .single-page .banner-page img.desktop {
        display: block;
    }
}



.single-page .category {
    display: block;
    width: 100%;
    padding: 30px 0 10px;
}

.single-page .category a {
    color: #01D8A9;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.single-page .title {
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 5px;
    color:#3b4d72;
}

.single-page .date {
    font-size: 13px;
    line-height: 1em;
}

.single-page .content, .page .content {
    padding: 15px 0 50px 0;
}

.single-page .content p, .page .content p {
    padding: 15px 0;
    font-size: 14px;
    line-height: 1.4em;
}

.single-page .content img, .page .content img {
    display: block;
    width: 100%;
    margin: 20px 0 15px;
}

.single-page .content img.responsive, .page .content img.responsive {
    min-height: 240px;
    object-fit: cover;
}

.single-page .content h2, .page .content h2 {
    display: block;
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1em;
    color:#3b4d72;
}

.single-page .content a, .page .content a {
    color: #01D8A9;
    font-weight: 600;
    text-decoration: none;
}

.single-page .content ul, .page .content ul,
.single-page .content ol, .page .content ol {
    padding-inline-start: 40px;
    margin: 15px 0;
}

.single-page .content ul li, .page .content ul li,
.single-page .content ol li, .page .content ol li {
    line-height: 1.6em;
}

.single-page .relacionados {
    width: 100%;
    background-color: #f4f4f4;
    border-radius: 10px;
    text-align: left;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
}

.single-page .relacionados .title {
    width: 100%;
    color: black;
    padding: 5px 0 15px;
    margin: 0;
    font-size: 20px;
}

.single-page .relacionados p {
    margin: 0 0 15px;
}

.single-page .relacionados .buttons .link  {
    width: 100%;
    padding: 10px 0;
}

.single-page .relacionados .buttons .link a {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    text-decoration: none;
}

.single-page .relacionados .ver-todos {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin: 15px auto 15px;
}

.single-page .relacionados .articles {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.single-page .relacionados .articles .article {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: initial;
    height: initial;
    transform: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.single-page .relacionados .articles .article img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
}

.single-page .relacionados .articles .article .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 70px);
    height: 90px;
    padding: 0 0 0 15px;
}

.single-page .relacionados .articles .article .cat-name {
    display: block;
    width: 100%;
    color: #01D8A9;
    font-size: 12px;
    font-weight: 600;
}

.single-page .relacionados .articles .article .cat-name a {
    color: inherit;
    text-decoration: none;
}

.single-page .relacionados .articles .article a {
    text-decoration: none;
}

.single-page .relacionados .articles .article .post-title {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    padding: 3px 0;
    color: #3b4d72;
}

.single-page .relacionados .articles .article .post-date {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: #777;
}

@media (min-width: 960px) {

    .single-page.columns {
        flex-direction: row;
    }

    .single-page .column {
        display: block;
        width: 30%;
    }

    .single-page .column:first-of-type {
        width: 70%;
        padding-right: 0;
    }

    .single-page .content {
        padding: 15px 15px 50px 0;
    }
}

/*
 * Actividades
 */

.page{
    display: block;
    padding: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 15px 15px 50px;
}

.page .header > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}
.page .header .title {
    font-size: 44px;
    line-height: 1.1em;
    font-family: 'Montserrat', sans-serif;
}

.page .header p {
    font-size: 16px;
    line-height: 1.4em;
}

.page .events {
    align-items: stretch;
    grid-template-columns: repeat(1,minmax(200px,1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: grid;
    padding-top: 51px;
    border-top: 1px solid #c6c6c6;
}

.page .events .event {
    display: block;
    width: 100%;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 1px 1px 15px 0 rgb(186 186 186 / 50%);
}

.page .events .event .cicles {
    font-weight: 700;
    color: #4b5657;
    font-size: 16px;
}

.page .events .event .title {
    font-size: 23px;
    line-height: 1em;
    margin-top: 10px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    background: transparent;
    text-align: left;
    text-transform: initial;
    padding: 0;
}

.page .events .event .cicles-list {
    margin-top: 16px;
}

.page .events .event .cicle {
    font-size: 14px;
    color: #000;
    margin-top: 5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.page .events .event .points {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}

.page .events .event .points > div {
    padding: 15px 0;
}

.page .events .event .points .point {
    background: #ff1236  url(images/calendar-solid.svg) no-repeat center center / 34% auto;
    width: 46px;
    height: 46px;
    margin: 15px auto;
    border-radius: 50%;
}

.page .events .event .points .time .point {
    background-image: url('images/clock-solid.svg');
    background-size: 44% auto;
}

.page .events .event .points span {
    font-weight: 700;
    text-align: center;
    line-height: 1;
    font-size: 13px;
    display: block;
    width: 100%;
}

.page .events .event .ver-mas {
    display: block;
    text-decoration: none;
    color: #ff1236;
    font-weight: 700;
    font-size: 19px;
    text-align: center;
    width: 100%;
    margin-top: 14px;
}

@media (min-width: 768px) {
    .page .header {
        flex-direction: row;
    }

    .page .header > div {
        width: 40%;
    }

    .page .header > div:last-of-type {
        width: 60%;
        padding: 15px;
    }

    .page .events {
        align-items: stretch;
        grid-template-columns: repeat(2,minmax(200px,1fr));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        display: grid;
    }
}

@media (min-width: 960px) {

    .page .events {
        align-items: stretch;
        grid-template-columns: repeat(3,minmax(200px,1fr));
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        display: grid;
    }
}

/*
 * Beneficios
 */

.page {
    display: block;
    padding: 15px 15px 50px;
}

.page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 15px 15px 50px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 50px;
}

.page .header > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

.page .header > div > p{
    color:#545454;
}
.page .header .title {
    font-size: 44px;
    line-height: 1.1em;
    color:#3b4d72;
}

.page .header p {
    font-size: 16px;
    line-height: 1.4em;
}

.page .beneficios {
    align-items: stretch;
    grid-template-columns: repeat(1,minmax(200px,1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: grid;
}

.page .beneficios .beneficio {
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: 1px 1px 15px 0 rgb(186 186 186 / 50%);
    overflow: hidden;
    padding-bottom: 30px;
}

.page .beneficios .beneficio .image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
}

.page .beneficios .beneficio .content {
    display: block;
    width: 100%;
    padding: 15px;
}

.page .beneficios .beneficio .category {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    padding: 0;
    color: #f00024;
}

.page .beneficios .beneficio .name {
    color: #000;
    font-weight: 700;
    font-size: 26px;
    text-align: left;
    line-height: 1;
    margin-top: 10px;
}

.page .beneficios .beneficio .excerpt {
    text-align: left;
    font-size: 14px;
    padding-top: 15px;
    line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.page .beneficios .beneficio .ver-mas {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin: 30px auto 0;
}

@media (min-width: 768px) {
    .page .header {
        flex-direction: row;
    }

    .page .header > div {
        width: 40%;
    }

    .page .header > div:last-of-type {
        width: 60%;
        padding: 15px;
    }

    .page .beneficios {
        align-items: stretch;
        grid-template-columns: repeat(2,minmax(200px,1fr));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        display: grid;
    }
}

@media (min-width: 960px) {

    .page .beneficios {
        align-items: stretch;
        grid-template-columns: repeat(3,minmax(200px,1fr));
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        display: grid;
    }
}

/*
 * Footer
 */


.main-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: #dfe7ec;
}

.main-footer .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer .logo {
    display: block;
    width: 60%;
    max-width: 260px;
    margin: 15px 0 5px;
}

.main-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    max-width: 300px;
    margin-bottom: 25px;
}

.main-footer ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    margin: 10px 15px;
}

.main-footer ul.rrss li {
    margin: 0 5px;
}

.main-footer ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #3b4d72;
    text-decoration: none;
}

.main-footer ul li a img {
    display: block;
    width: 30px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin: 0 6px 0 0;
}

.bottom-menu {
    list-style: none;
    display: block;
    width: 100%;
    max-width: 360px;
    padding: 0 30px;
}

.bottom-menu .title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bottom-menu.nav {
    margin-top: 30px;
}

.bottom-menu.contacts .title {
    padding-left: 0;
    margin-bottom: 10px;
}

.bottom-menu.nav ul li {
   padding-left: 15px;
}

.bottom-menu li {
    list-style: none;
    margin-bottom: 20px;
}

.bottom-menu a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.main-footer .black {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    color: white;
    background: #3b4d72;
    text-align: center;
    font-size: 12px;
    padding: 0 20px;
}

.bottom-menu.contacts svg {
    display: block;
    width: 20px;
    fill: white;
    margin-right: 10px;
}

.bottom-menu.contacts .facebook svg {
    width: auto;
    height: 20px;
}

.bottom-menu.contacts .phone,
.bottom-menu.contacts .contact,
.bottom-menu.contacts .facebook {
    display: flex;
}

@media (min-width: 960px) {

    .main-footer .content {
        padding: 15px 0;
    }

    .main-footer ul {
        max-width: 400px;
    }

    .bottom-menu.nav {
        max-width: initial;
        margin-top: 0;
    }

    .bottom-menu.nav .title {
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .bottom-menu.nav ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: 30px;
    }

    .bottom-menu.nav ul li {
        width: 50%;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .bottom-menu.contacts {
        max-width: 260px;
    }
}

/*
 * Accordeon
 */

.accordeon {
    display: block;
    width: 100%;
    margin: 50px 0 0 0;
}

.accordeon .accordeon-item {
    display: block;
    width: 100%;
    height: initial;
    padding: 20px 0;
    border-bottom: 1px solid #bcbcbc;
}

.accordeon .accordeon-item .title {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    margin: 0;
    position: relative;
    cursor: pointer;
}

.accordeon .accordeon-item .title:after {
    content: "+";
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    font-size: 22px;
    font-weight: 300;
    transform: translateY(-50%);
}

.accordeon .accordeon-item.open .title:after {
    content: "\2212";
}

.accordeon .accordeon-item .content {
    display: none;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    overflow: hidden;
    padding: 0;
    box-sizing: initial;
}

.accordeon .accordeon-item.open .content p {
    padding-top: 20px;
    padding-bottom: 0;
}

/*
 * Customs
 */

.custom-select {
    display: block;
    width: max-content;
    height: 45px;
    position: relative;
}

.custom-select .open-list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background:#01D8A9  url('images/caret-down-solid.svg') no-repeat center right 20px / 10px auto;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 50px 15px 25px;
    min-width: 200px;
    font-family: 'Montserrat', sans-serif;
}

.custom-select .list {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    height: fit-content;
    list-style: none;
    overflow: hidden;
    border-radius: 3px;
    background: #dfe7ed;
    z-index: 101;
}

.custom-select .list .item-list {
    display: block;
    width: 100%;
    height: 45px;
}

.custom-select .list .item-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    color: #535353;
    text-decoration: none;
    background-color: #dfe7ed;
    transition: background-color .3s;
}

.custom-select .list .item-list a:hover {
    background-color: #01D8A9!important;
    color:#fff;
}

.shadow-box {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 100;
}

/*
 * Decorations
 */


 .deco-heart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 15px;
}

.deco-heart .line {
    display: block;
    width: calc(50% - 20px);
    height: 2px;
    background: #01D8A9;
}

.deco-heart .heart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin: 0 16px;
}

.navigation{
    max-width: 300px;
    width: 100%;
    padding: 20px 20px;
    margin: 80px auto 0 auto;
}

.navigation ul{
    display: flex;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation ul li {
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    margin: 10px;
    background: white;
    border-radius: 15px;
    border: 1px solid #f00024;
}

.navigation ul li a {
    color: #000;
    text-decoration: none;
}

.navigation ul li.next,.navigation ul li.prev{
    width: 100px;
    background: #fff;
    height: auto;
}

.navigation ul li.next a,.navigation ul li.prev a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #000;
}

.navigation ul li.active{
    background: #f00024;
}

.navigation ul li.active a{
    color: #fff;
    font-weight: bold;
}

@media(min-width: 768px){
    .navigation{
        max-width: 700px;
    }
}

form {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 30px;
    max-width: 960px;
    margin: 30px auto;
}

form > p {
    display: block;
    width: 100%;
}

form .error {
    display: none;
    width: 100%;
    color: #FF1236;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    padding-top: 2px;
}

form label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    float: none;
    line-height: 1.3em;
    margin: 5px 0 20px 0;
    padding: 0;
}

form input {
    display: block;
    width: 100%;
    color: #333;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    line-height: 1.1em;
    padding: 20px 25px;
    border:  1px solid #ddd;
    height: 55px;
    background: #ddd;
    margin-top: 5px;
}

form input.err {
    border-color: #FF1236;
}

form #form-submit, form input[type="submit"] {
    display: block;
    background-color: #FF1236;
    border: none;
    color: #fff;
    font-size: 17px;
    padding: 12px 20px;
    margin: 15px auto;
    border-radius: 50px;
    font-family: 'Montserrat';
    font-weight: 700;
    width: 160px;
    transition: opacity .1s ease-in-out;
}

form #form-submit:disabled {
    cursor: default;
    opacity: .3;
}

.server-response-output {
    width: 100%;
    background: #dfe7ed;
    color: #3b4d72;
    text-align: center;
    font-weight: 600;
    padding: 20px;
    border-radius: 15px;
    margin: 15px auto;
}

#inscription-success {
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#inscription-success .close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background: transparent;
    border:  none;
    cursor: pointer;
}

form #form-submit.loading {
    color: transparent;
    background: #FF1236 url('images/loading.gif') no-repeat center center / 30px auto;
}

@media (min-width: 768px) {

    form > p {
        display: block;
        width: calc(50% - 20px);
        margin: 0 auto;
    }


    form > p:last-of-type { width: 100%; }


}

/* Gutten */
figure.wp-block-image{
    margin: 40px 20px;
}

.wp-block-contact-form-7-contact-form-selector{
    margin: 50px 0 30px 0;
}

.grecaptcha-badge { display: none; }

/* ges */
.ges {
    width: 100%;
}

.programas{
    width: 100%;
}

.programas .programa{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    margin: 40px 0 60px 0;
}

.programas .programa .programa-imagen{
    width: 25%;
    text-align: right;
    position: relative;
}

.programas .programa .programa-imagen .programa-mask{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
}


.programas .programa .programa-bajada{
    width: 68%;
    margin-left: 5%;
    text-align: right;
}

.programas .programa .programa-bajada h3{
    text-align: left;
}

.programas .programa .programa-bajada p{
    text-align: left;
}

a.btn-programa{
    display: inline-block;
    width: 140px;
    height: 20px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background: #FF1236;
    line-height: 20px;
    color: #fff;
}

.content a.btn-programa{
    color: #fff;

}

a.btn-extended{
    display: block;
    width: 80%;
    max-width: 350px;
    margin: 60px auto 10px auto;
}

.programas .programa .programa-icon{
    display: none;
}


@media(min-width: 768px){

    .programas{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 550px;
        margin: 0 auto;
    }

    .programas .programa{
        margin: 20px 0;
    }

    .programas .programa .programa-icon{
        position: absolute;
        top: 10px;
        display: block;
        width: 45px;
        margin: auto;
        left: 10px;
    }

    .programas .programa .programa-imagen{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }



    .programas .programa .programa-imagen .programa-mask{
        width: 130px;
        height: 130px;
    }

    .programas .programa .programa-bajada{

    }

    .programas .programa .programa-bajada h3{

    }

    .programas .programa .programa-bajada p{

    }

    a.btn-programa{

    }

}

@media(min-width: 992px){

    .programas{
        width: 768px;
    }

    .programas .programa{
        margin: 30px 0;
    }

    .programas .programa .programa-icon{
        position: absolute;
        top: 10px;
        display: block;
        width: 45px;
        margin: auto;
        left: 10px;
    }

    .programas .programa .programa-imagen{

    }


    .programas .programa .programa-imagen .programa-mask{
        width: 200px;
        height: 200px;
    }

    .programas .programa .programa-bajada{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }

    .programas .programa .programa-bajada h3{

    }

    .programas .programa .programa-bajada p{
        padding:0;
    }

    a.btn-programa{
        position: absolute;
        bottom: 0;
        right: 0;
        height: 30px;
        line-height: 30px;
    }

    a.btn-extended{
        position: relative;
    }



}

.sanas.page .content img {
    margin-top: 30px;
    margin-bottom: 60px;
}

.sanas.page .content h2 {
    padding-bottom: 15px;
    border-bottom: 2px solid #00d9a9;
    margin-bottom: 15px;
}

.sanas .division {
    display: none;
}

.sanas .inscribete {
    margin: 30px auto;
    font-size: 23px;
    font-weight: 800;
    text-decoration: none;
    height: 60px;
    border-radius: 30px;
}

@media (min-width:  768px) {

    .sanas .fila {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .sanas .fila .columna {
        width: 50%;
        padding: 15px;
    }

    .sanas .fila.reverse {
        flex-direction: row-reverse;
    }

    .sanas .division {
        display: block;
        width: 100%;
        height: 30px;
        position: relative;
        z-index: 0;
    }

    .sanas .division img {
        display: block;
        width: 240px;
        height: 200px;
        transform: translateY(-50%);
        margin: 0 auto;
    }
}

