/*
Theme Name: Al-Andalus Web
Author: Aluxion
Version: 1.0.0
Text Domain: alandalus
*/


@font-face {
  font-family: 'CabinetGrotesk-Variable';
  src: url('assets/fonts/CabinetGrotesk-Variable.ttf') format('truetype');
       font-weight: 300 800;
       font-display: swap;
       font-style: normal;
}


:root {
    --dark-color: #000000;
    --semidark-color: #1E1E1E;
    --golden-color: #CFA846;
    --grey-color: #999999;
    --light-grey-color: #e2e8f0;
    --container-width: 1280px;
    --header-height: 96px;
    --mobile-header-height: 60px;
    --mobile-margin: 20px;
}

html,
body {
    overflow-x: hidden;
}

body {
    background-color: #B9B9B922;
    font-family: 'CabinetGrotesk-Variable', sans-serif;;
    font-weight: 400;
    font-size: 16px;
    /* line-height: 130%; */
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 120%;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

strong,
b {
    font-weight: 700;
}


/* Botones y links */
.button,
input[type=button],
input[type=submit] {
    display: inline-block;
    background-color: var(--golden-color);
    border: 1px solid var(--golden-color);
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

.button[disabled],
input[type=button][disabled],
input[type=submit][disabled] {
    opacity: .5;
    cursor: initial;
}

.button:not(.white):not(.dark):not(.cancel):not([disabled]):hover,
input[type=button]:not([disabled]):hover,
input[type=submit]:not([disabled]):hover {
    background-color: var(--dark-color);
    color: var(--golden-color);
}

.button.white {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.button.white:not([disabled]):hover {
    background-color: var(--semidark-color);
    color: #FFFFFF;
}

.button.white.with-border {
    border: 1px solid #DFDFDF;
}

.button.dark {
    background-color: var(--semidark-color);
    border: 1px solid var(--semidark-color);
    color: #FFFFFF;
}

.button.dark:not([disabled]):hover {
    background-color: #FFFFFF;
    color: var(--semidark-color);
}

.button.small {
    padding: 6px 24px;
}

.button.with-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.button.with-arrow:after {
    content: "";
    background-image: url('assets/images/button-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 18px;
    height: 16px;
    margin-left: 8px;
}

.button.with-arrow.dark:after {
    background-image: url('assets/images/button-arrow-white.svg');
}

.button.with-arrow.dark:hover:after {
    background-image: url('assets/images/button-arrow.svg');
}

.button.with-arrow.white:hover:after {
    background-image: url('assets/images/button-arrow-white.svg');
}

.button.with-arrow:not(.dark):not(.white):hover:after {
    background-image: url('assets/images/button-arrow-golden.svg');
}

.button.small-1 {
    padding: 6px 12px;
}

.button.small-2 {
    padding: 9px 16px;
}

.button.small-3 {
    padding: 12px 16px;
}

.golden-link {
    display: inline-block;
    font-weight: 500;
    color: var(--golden-color);
    cursor: pointer;
}


/* Formularios */
input:not([type=checkbox]):not([type=submit]):not([type=file]),
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    background-color: #FFFFFF;
    border: 1px solid #989898;
    box-sizing: border-box;
    padding: 8px 16px;
    width: 100%;
}

select {
    cursor: pointer;
}

.form-container label {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.16px;
    color: var(--semidark-color);
    margin-bottom: 12px;
}

.form-container select {
    color: #777777;
}

.form-container select option:not(:first-child) {
    color: var(--dark-color);
}

.form-container .form-row:not(.full) {
    display: flex;
    column-gap: 24px;
}

.form-container .form-row:not(:last-child) {
    margin-bottom: 32px;
}

.form-container .form-row:not(.full) .form-field:not(.form-button-field) {
    width: calc(50% - 12px);
}

.form-container .form-row.full .form-field:not(.form-button-field):not(.form-file-field) {
    width: 100%;
}

.form-container .form-field.form-file-field {
    display: flex;
    align-items: center;
    column-gap: 16px;
    background-color: #FAF8ED;
    padding: 24px;
}

.form-container .form-field.form-file-field .icon {
    position: relative;
    background-image: url('assets/images/icon-upload.svg');
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: all .3s;
    cursor: pointer;
}

.form-container .form-field.form-file-field .icon:hover {
    top: -1px;
}

.form-container .form-field.form-file-field label {
    margin-bottom: 0;
}

.form-container .form-field.form-file-field .caption {
    font-weight: 400;
    font-size: 16px;
    color: #4B4B4B;
    margin-top: 8px;
}

.form-container .form-field.form-file-field input {
    display: none;
}

.form-container.contact-form-container .button,
.form-container.quick-contact-form-container .button {
    width: 100%;
}

.form-container.newsletter-form-container label {
    color: #FFFFFF;
}

.form-container.quick-newsletter-form-container .form-row {
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
}

.form-container.quick-newsletter-form-container .form-row:not(.full) .form-field:not(.form-button-field) {
    width: 60%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 24px 0;
    padding: 8px 12px;
}


/* Contenedores */
.site-container:not(.none) {
    width: var(--container-width);
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}

.site-half-container {
    width: calc(var(--container-width) / 2);
    max-width: 100%;
}

.site-half-container.left {
    margin-left: calc((100vw - var(--container-width)) / 2);
}

.site-half-container.right {
    margin-right: calc((100vw - var(--container-width)) / 2);
}


/* Menús */
ul.menu {
    display: flex;
}

.site-header ul.menu {
    align-items: center;
}

.site-header ul.menu > li:not(:last-child) {
    margin-right: 35px;
}

.site-header ul.menu > li:not(.button) a:hover {
    text-decoration: underline;
}

.site-header .main-menu-container {
    font-weight: 700;
    letter-spacing: -0.16px;
}

.site-header .main-menu-container li:not(.button).current-menu-item a {
    color: var(--golden-color);
    text-decoration: underline;
}

.site-header .main-mobile-menu-container {
    display: none;
    position: absolute;
    top: calc(var(--mobile-header-height) - 12px);
    left: -20px;
    background-color: var(--dark-color);
    padding: 40px 20px;
    width: 100%;
    height: 100vh;
}

.site-header .main-mobile-menu-container li {
    font-size: 20px;
    line-height: 24px;
}

.site-header .main-mobile-menu-container li:not(:last-child) {
    border-bottom: 1px solid #686868;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.site-header .main-mobile-menu-container li.menu-item-button {
    margin-top: 40px;
}

.site-footer ul.menu {
    flex-direction: column;
}

.site-footer ul.menu > li:not(:last-child) {
    margin-bottom: 8px;
}

body.mobile-menu-opened {
    position: fixed;
    overflow: hidden;
}

body.mobile-menu-opened .site-header .main-mobile-menu-container {
    display: block;
}

body.mobile-menu-opened .site-header .main-mobile-menu-container ul.menu {
    display: block;
}


/* Header */
.site-header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--dark-color);
    color: #FFFFFF;
    height: var(--header-height);
    transition: all .3s;
    z-index: 99999;
}

.site-header .main-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .left-bar {
    display: flex;
    align-items: center;
}

.site-header .right-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.site-header .site-description {
    font-size: 20px;
    margin-left: 16px;
}

.site-header .site-logo img {
    display: block;
    max-width: 180px;
    transition: all .3s;
}

.site-header .site-logo img:hover {
    transform: scale(1.06);
}


/* Contenido general */
.site-content {
    padding-top: var(--header-height);
}

.site-content ul:not(.menu) {
    list-style: initial;
    margin: 0 0 1em 1em;
}

.site-content ul:not(.menu) li:not(:last-child) {
    margin-bottom: 8px;
}

.site-content p:not(:last-child) {
    padding-bottom: 1em;
}

.alert-message {
    font-weight: 500;
    padding: 10px 0 30px;
}

.alert-message.error {
    color: #FF0000;
}

.alert-message.restricted-content {
    padding: 200px 0;
    text-align: center;
}

.bold {
    font-weight: 500;
}

.bolder {
    font-weight: 600;
}

.golden {
    color: var(--golden-color);
}

.flex-vcenter {
    align-items: center;
}

.text-hright {
    text-align: right;
}

.capitalize {
    text-transform: capitalize;
}

.hidden {
    display: none;
}


/* Single Participante */
body.single-participant article {
    background-color: #FFFFFF;
    padding: 120px 0;
}

body.single-participant .entry-body {
    display: flex;
    column-gap: 80px;
}

body.single-participant .entry-body .image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 380px;
    height: 380px;
}

body.single-participant .entry-body .title {
    margin-bottom: 8px;
}

body.single-participant .entry-body .company {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
}

body.single-participant .entry-body .bio {
    font-size: 20px;
    line-height: 150%;
    color: #4B4B4B;
}


/* Single Blog */
body.single-post .entry-header {
    padding-top: 120px;
    padding-bottom: 80px;
}

body.single-post .entry-header .title {
    margin-bottom: 24px;
}

body.single-post .entry-header .excerpt {
    font-weight: 700;
    font-size: 24px;
}

body.single-post .entry-body {
    display: flex;
    column-gap: 64px;
}

body.single-post .entry-body > div:first-child {
    width: 75%;
}

body.single-post .entry-body > div:last-child {
    width: 25%;
}

body.single-post .entry-body .image-container {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 600px;
}

body.single-post .entry-body .content {
    background-color: #FFFFFF;
    line-height: 150%;
    margin-top: 40px;
    padding: 64px;
}

body.single-post .entry-body .content .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

body.single-post .entry-body .content .author-container {
    display: flex;
    align-items: center;
    column-gap: 24px;
    font-weight: 700;
}

body.single-post .entry-body .content .author-container .entry-date {
    font-size: 14px;
    color: #707070;
}

body.single-post .entry-body .content .author-container .author-name {
    font-size: 24px;
}

body.single-post .entry-body .content .author-container .author-image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 72px;
    height: 72px;
}

body.single-post .entry-body .content .share {
    position: relative;
    background-image: url('assets/images/icon-share.svg');
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

body.single-post .entry-body .content .share:not(.active) .share-popup {
    display: none;
}

body.single-post .entry-body .content .share.active .share-popup {
    position: absolute;
    top: 22px;
    right: 0;
    display: flex;
    column-gap: 20px;
    background-color: #FFFFFF;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 12px;
    padding: 10px 18px;
    z-index: 999;
}

body.single-post .entry-body .content .share .share-popup a {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all .3s;
}

body.single-post .entry-body .content .share .share-popup a:not(:hover) {
    filter: grayscale(1);
}

body.single-post .entry-body .content .share .share-popup a.facebook {
    background-image: url('assets/images/facebook-logo.png');
}

body.single-post .entry-body .content .share .share-popup a.linkedin {
    background-image: url('assets/images/linkedin-logo.png');
}

body.single-post .entry-body .content .share .share-popup a.twitter {
    background-image: url('assets/images/x-logo.png');
}

body.single-post .entry-body .content h1 {
    font-size: 30px;
}

body.single-post .entry-body .content h2 {
    font-size: 28px;
}

body.single-post .entry-body .content h3 {
    font-size: 24px;
}

body.single-post .entry-body .content h4,
body.single-post .entry-body .content h5,
body.single-post .entry-body .content h6 {
    font-size: 20px;
}

body.single-post .entry-body .sidebar .block-header {
    border-bottom: 1px solid #B9B9B9;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

body.single-post .entry-body .sidebar .block-title {
    font-size: 24px;
}


/* Single Taller */
body.single-workshop {
    background-color: #FFFFFF;
}

body.single-workshop .entry-header {
    position: relative;
    background-color: #FAF6ED;
    background-image: url('assets/images/workshop-background.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    padding: 80px 0;
}

body.single-workshop .entry-header .title {
    font-size: 48px;
    text-align: center;
    width: 620px;
    margin: 0 auto 12px auto;
    max-width: 100%;
}

body.single-workshop .entry-header .data {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: var(--semidark-color);
    text-align: center;
}

body.single-workshop .entry-header .data .date {
    text-transform: capitalize;
}

body.single-workshop .entry-body {
    padding: 80px 0;
}

body.single-workshop .entry-body .title {
    margin-bottom: 40px;
}

body.single-workshop .entry-body .content {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--semidark-color);
}

body.single-workshop .entry-body .wp-block-heading {
    margin-bottom: .2em;
}

body.single-workshop .entry-footer {
    padding: 80px 0;
}

body.single-workshop .entry-footer .title {
    margin-bottom: 32px;
}

body.single-workshop .participants {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

body.single-workshop .participants .participant .item-inner {
    display: flex;
    align-items: center;
    column-gap: 32px;
}

body.single-workshop .participants .participant .info-container {
    line-height: 180%;
}

body.single-workshop .participants .participant .name {
    font-weight: 700;
    font-size: 30px;
    color: var(--semidark-color);
}

body.single-workshop .participants .participant .company,
body.single-workshop .participants .participant .position {
    font-weight: 700;
    font-size: 20px;
    color: #707070;
}

body.single-workshop .participants .participant .link {
    display: none;
}

body.single-workshop .participants .participant .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    width: 160px;
    height: 160px;
}

body.single-workshop .participants .participant:hover .image-container {
    transform: scale(1.01);
}


/* Blocks general */
.block {
    position: relative;
}

.block.dark-background {
    background-color: var(--dark-color);
    color: #FFFFFF;
}


/* Block WP editor */
.block.block-wp-editor {
    background-color: #FFFFFF;
    padding: 80px 0;
    line-height: 150%;
}

.block.block-wp-editor .wp-block-heading {
    margin-bottom: .3em;
}


/* Block WP editor: Hero de Entradas */
.block.block-wp-editor.tickets-hero {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding-bottom: 30px;
}

.block.block-wp-editor.tickets-hero .wp-block-heading {
    font-weight: 400;
    margin-bottom: 0;
}

.block.block-wp-editor.tickets-hero .wp-block-group .wp-block-group:first-child {
    margin-bottom: 60px;
}

.block.block-wp-editor.tickets-hero .wp-block-group .wp-block-group:first-child .wp-block-heading {
    font-size: 100px;
    line-height: 100%;
}

.block.block-wp-editor.tickets-hero .wp-block-group .wp-block-group:nth-child(2) .wp-block-heading {
    font-size: 80px;
}

.block.block-wp-editor.tickets-hero .wp-block-columns {
    font-weight: 300;
    font-size: 24px;
    margin-top: 70px;
}

.block.block-wp-editor.tickets-hero .wp-block-columns .wp-block-image {
    margin-bottom: 20px;
}


/* Block Hero */
.block.block-hero {
    background-color: var(--dark-color);
}

.block.block-hero .items {
    position: relative;
}

.block.block-hero .hero {
    position: relative;
}

.block.block-hero.layout-default .hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.block.block-hero.layout-default .hero > div {
    width: 50%;
}

.block.block-hero.layout-full .hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.block.block-hero.layout-full .hero .info-wrapper {
    position: absolute;
    bottom: 72px;
    max-width: 50%;
}

.block.block-hero.layout-default .hero .info-wrapper {
    padding-right: 70px;
}

.block.block-hero .title {
    color: #FFFFFF;
    margin-bottom: 32px;
}

.block.block-hero.layout-full .title {
    margin-bottom: 16px;
}

.block.block-hero .intro {
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
}

.block.block-hero.layout-full .intro {
    font-size: 36px;
}

.block.block-hero .button {
    margin-top: 48px;
}

.block.block-hero:not(.layout-simple) .image-container {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: calc(93vh - var(--header-height));
}

.block.block-hero.layout-simple {
    background-color: #F5F5F5;
    padding: 120px 0;
}

.block.block-hero.layout-simple .title {
    color: var(--dark-color);
    margin-bottom: 0;
    text-align: center;
}

.block.block-hero .slick-dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    list-style: none;
    width: 100%;
}

.block.block-hero .slick-dots li {
    background-color: #FFFFFF;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.block.block-hero .slick-dots li:not(:last-child) {
    margin-right: 10px;
}

.block.block-hero .slick-dots li.slick-active {
    background-color: var(--golden-color);
    border-radius: 7px;
    width: 22px;
}

.block.block-hero .slick-dots li button {
    display: none;
}



/* Block Gallery */
.block.block-gallery .items:not(.is-slider) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.block.block-gallery .items:not(.is-slider) .item {
    width: 33.33%;
}

.block.block-gallery .image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
}

.block.block-gallery .slick-slide {
    margin: 0 15px;
}

.block.block-gallery .slick-list {
    margin: 0 -15px;
}


/* Block Video */
.block.block-video {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 120px 0;
}

.block.block-video .block-title {
    margin-bottom: 40px;
}

.block.block-video iframe {
    width: 100%;
    height: 650px;
}


/* Block Contact */
.block.block-contact.layout-full .box {
    display: flex;
}

.block.block-contact.layout-full .box > div {
    width: 50%;
}

.block.block-contact.layout-full .box > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--dark-color);
    color: var(--golden-color);
    padding-top: 80px;
}

.block.block-contact.layout-full .box > div:last-child {
    background-color: #98989820;
}

.block.block-contact.layout-full .box .title {
    margin-bottom: 40px;
}

/*
.block.block-contact.layout-full .box .form-container {
    padding: 80px 0 80px 80px;
}
*/

.block.block-contact.layout-full .box .wpcf7 {
    background-color: #FFFFFF;
    margin: 80px 0 0 80px;
    padding: 40px;
}

.block.block-contact.layout-full .box .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
}

.block.block-contact.layout-only-form {
    padding: 80px 28%;
}

.block.block-contact.layout-only-form .wpcf7 {
    background-color: #FFFFFF;
    padding: 40px;
}

.block.block-contact.layout-only-form .title {
    font-size: 36px;
    margin-bottom: 8px;
    text-align: center;
}

.block.block-contact.layout-only-form .intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

.block.block-contact.layout-only-form-dark {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 60px 0;
    z-index: 0;
}

.block.block-contact.layout-only-form-dark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #D6B54E1A;
    filter: blur(130px);
    width: 30%;
    height: 100%;
    z-index: -1;
}

.block.block-contact.layout-only-form-dark:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: #D6B54E1A;
    filter: blur(130px);
    width: 30%;
    height: 100%;
    z-index: -1;
}

.block.block-contact.layout-only-form-dark .title {
    color: var(--golden-color);
    line-height: 150%;
}

.block.block-contact.layout-only-form-dark .wpcf7 {
    padding: 30px 10%;
}

.block.block-contact.layout-only-form-dark .wpcf7 form {
    position: relative;
    background-color: var(--dark-color);
    padding: 40px;
}

.block.block-contact.layout-only-form-dark .form-container label {
    color: #FFFFFF;
}

.block.block-contact.layout-only-form-dark .form-container input:not([type=checkbox]):not([type=submit]):not([type=file]), 
.block.block-contact.layout-only-form-dark .form-container select, 
.block.block-contact.layout-only-form-dark .form-container textarea {
    background-color: var(--dark-color);
    color: #FFFFFF;
    border: 1px solid #4D4D4D;
}


/* Block Newsletter */
.block.block-newsletter.layout-full .box {
    display: flex;
}

.block.block-newsletter.layout-full .box > div {
    width: 50%;
}

.block.block-newsletter.layout-full .box > div:first-child {
    background-color: var(--dark-color);
    color: #FFFFFF;
}

.block.block-newsletter.layout-full .box .inner-box {
    padding: 80px 80px 80px 0;
}

.block.block-newsletter.layout-full .box .block-title {
    margin-bottom: 16px;
}

.block.block-newsletter.layout-full .box .intro {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 40px;
}

.block.block-newsletter.layout-full .box .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.block.block-newsletter.layout-widget {
    background-color: #FFFFFF;
    padding: 32px;
    margin-left: -32px;
    margin-right: -32px;
}

.block.block-newsletter.layout-widget .block-title {
    margin-bottom: 24px;
}

.block.block-newsletter.layout-widget .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    width: 100%;
    height: 200px;
}

.block.block-newsletter.layout-widget label {
    color: var(--semidark-color);
    white-space: nowrap;
}

.block.block-newsletter.layout-widget .wpcf7-spinner {
    display: none;
}


/* Block Editions */
.block.block-editions {
    padding: 80px 0;
}

.block.block-editions.layout-grid {
    background-color: #FFFFFF;
}

.block.block-editions.layout-grid .block-header {
    margin-bottom: 56px;
}

.block.block-editions.layout-column .block-header {
    margin-bottom: 32px;
}

.block.block-editions .items {
    display: flex;
    flex-wrap: wrap;
}

.block.block-editions.layout-grid .items {
    gap: 40px;
}

.block.block-editions.layout-column .items {
    gap: 32px;
}

.block.block-editions.layout-grid .item {
    position: relative;
    width: calc(50% - 20px);
}

.block.block-editions.layout-column .item {
    position: relative;
    width: 100%;
}

.block.block-editions .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.block.block-editions.layout-grid .item .info-container {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.block.block-editions.layout-column .item .info-container {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 48px);
}

.block.block-editions .item .title {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.block.block-editions .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.block.block-editions.layout-grid .image-container {
    height: 440px;
}

.block.block-editions.layout-column .image-container {
    height: 200px;
}


/* Block Edition */
.block.block-edition {
    padding: 80px 0;
}

.block.block-edition .block-header {
    margin-bottom: 80px;
}

.block.block-edition.layout-card .item {
    display: flex;
    column-gap: 96px;
}

.block.block-edition.layout-card .image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 35%;
    height: 300px;
}

.block.block-edition.layout-card .image-container .block-header {
    margin-top: 32px;
}

.block.block-edition.layout-card .info-container {
    font-weight: 500;
    font-size: 20px;
    color: #232323;
    line-height: 150%;
}

.block.block-edition.layout-card .info-container:before {
    display: block;
    content: "";
    border-top: 3px solid var(--golden-color);
    width: 100px;
    height: 3px;
    margin-bottom: 32px;
}

.block.block-edition.layout-only-figures .figures {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 96px;
}

.block.block-edition.layout-only-figures .figures .figure {
    width: calc(25% - 30px);
}

.block.block-edition.layout-only-figures .info-container {
    border-top: 1px solid #DFDFDF;
    padding: 32px;
}

.block.block-edition.layout-only-figures .info-container .value {
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 8px;
}

.block.block-edition.layout-only-figures .info-container .label {
    font-weight: 700;
    font-size: 24px;
}


/* Block Stands */
.block.block-stands {
    padding: 120px 0;
}

.block.block-stands .items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 100px;
}

.block.block-stands .item {
    width: calc(33.33% - 27px);
}

.block.block-stands .item .title {
    font-size: 36px;
    margin-bottom: 24px;
}

.block.block-stands .item .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 360px;
    margin-bottom: 24px;
}

.block.block-stands .item .description {
    font-size: 18px;
    color: var(--semidark-color);
}


/* Block Blog entries */
.block.block-blog-entries {
    padding: 80px 0;
}

.block.block-blog-entries.layout-full,
.block.block-blog-entries.layout-summary {
    background-color: #FFFFFF;
}

.block.block-blog-entries .block-header {
    margin-bottom: 80px;
}

.block.block-blog-entries.layout-full .block-title {
    margin-bottom: 40px;
}

.block.block-blog-entries.layout-full .subtitle {
    margin: 56px 0 40px 0;
}

.block.block-blog-entries .items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.block.block-blog-entries.layout-summary .items-group:first-child {
    width: calc(35% - 20px);
    height: 100%;
}

.block.block-blog-entries.layout-summary .items-group:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: calc(65% - 20px);
}

.block.block-blog-entries .item {
    position: relative;
}

.block.block-blog-entries.layout-summary .items-group:last-child .item:first-child {
    width: 100%;
}

.block.block-blog-entries.layout-summary .items-group:last-child .item:not(:first-child) {
    width: calc(50% - 20px);
}

.block.block-blog-entries.layout-full .item,
.block.block-blog-entries.layout-related .item {
    width: calc(33.34% - 27px);
}

.block.block-blog-entries.layout-full .items.featured .item {
    width: 100%;
}

.block.block-blog-entries.layout-full .item:nth-child(5n-1),
.block.block-blog-entries.layout-full .item:nth-child(5n),
.block.block-blog-entries.layout-related .item:nth-child(5n-1),
.block.block-blog-entries.layout-related .item:nth-child(5n) {
    width: calc(50% - 20px);
}

.block.block-blog-entries.layout-row .item {
    width: calc(33.34% - 27px);
}

.block.block-blog-entries .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.block.block-blog-entries .item .date {
    font-weight: 700;
    font-size: 20px;
    color: #989898;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.block.block-blog-entries.layout-row .item .date,
.block.block-blog-entries.layout-full .item .date,
.block.block-blog-entries.layout-summary .items-group:last-child .item .date {
    display: none;
}

.block.block-blog-entries .item .title {
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.block.block-blog-entries.layout-full .items.featured .item .title {
    font-size: 36px;
}

.block.block-blog-entries.layout-row .item .title,
.block.block-blog-entries.layout-full .items:not(.featured) .item .title {
    font-size: 20px;
}

.block.block-blog-entries.layout-summary .items-group:last-child .item .title {
    font-size: 16px;
    letter-spacing: -0.16px;
}

.block.block-blog-entries .item .info-container {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding-right: 40px;
}

.block.block-blog-entries .item .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 440px;
}

.block.block-blog-entries.layout-full .items.featured .item .image-container {
    height: 640px;
}

.block.block-blog-entries.layout-summary .items-group:first-child .item .image-container {
    height: 800px;
}

.block.block-blog-entries.layout-summary .items-group:last-child .item:first-child .image-container {
    height: 320px;
}

.block.block-blog-entries .view-all-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 80px;
}

.block.block-blog-entries .pagination {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    font-weight: 700;
    font-size: 20px;
}

.block.block-blog-entries .pagination > .page-numbers:not(:last-child) {
    margin-right: 10px;
}

.block.block-blog-entries .pagination > .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.25px solid #B9B9B9;
    width: 48px;
    height: 48px;
}

.block.block-blog-entries .pagination > .page-numbers:not(.current):hover {
    background-color: #EEEEEE;
}

.block.block-blog-entries .pagination > .page-numbers.current {
    background-color: var(--golden-color);
    color: #FFFFFF;
}

.block.block-blog-entries .pagination .page-numbers.next,
.block.block-blog-entries .pagination .page-numbers.prev {
    background-image: url('assets/images/pagination-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.block.block-blog-entries .pagination .page-numbers.prev {
    transform: rotate(180deg);
}


/* Block Participants */
.block.block-participants .item:not(.company) .ext-link {
    pointer-events: none;
}

.block.block-participants.layout-slider {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 80px 0;
}

.block.block-participants.layout-slider .block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.block.block-participants.layout-slider .item .name {
    margin-bottom: 8px;
}

.block.block-participants.layout-slider .item .company,
.block.block-participants.layout-slider .item .position {
    font-weight: 700;
    font-size: 24px;
    color: #707070;
}

.block.block-participants.layout-slider .link {
    display: none;
}

.block.block-participants.layout-slider .slider-arrows {
    display: flex;
    height: 56px;
}

.block.block-participants.layout-slider .slider-arrows .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B1B1B;
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all .3s;
}

.block.block-participants.layout-slider .slider-arrows .arrow svg {
    transition: all .3s;
}

.block.block-participants.layout-slider .slider-arrows .arrow svg path {
    stroke: #FFFFFF;
}

.block.block-participants.layout-slider .slider-arrows .arrow.prev {
    transform: scaleX(-1);
    margin-right: 10px;
}

.block.block-participants.layout-slider .slider-arrows .arrow:hover {
    background-color: #E9E9E9;
}

.block.block-participants.layout-slider .slider-arrows .arrow:hover svg path {
    stroke: var(--semidark-color);
}

.block.block-participants.layout-slider .slick-dots {
    display: flex;
    list-style: none;
    margin: 20px 0 0 0;
}

.block.block-participants.layout-slider .view-all-link {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-top: 80px;
}

.block.block-participants.layout-slider .view-all-link a:hover {
    text-decoration: underline;
}

.block.block-participants.layout-grid {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.block.block-participants.layout-grid .block-header {
    margin-bottom: 100px;
}

.block.block-participants.layout-grid .items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 100px;
}

.block.block-participants.layout-grid .item {
    width: calc(25% - 30px);
}

.block.block-participants.layout-grid .item .item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.block.block-participants.layout-grid .item .name {
    font-size: 24px;
    margin-bottom: 8px;
}

.block.block-participants.layout-grid .item .company,
.block.block-participants.layout-grid .item .position {
    font-weight: 700;
    font-size: 20px;
    color: #707070;
}

.block.block-participants.layout-grid .item .link {
    margin-top: 24px;
}

.block.block-participants .item .image-container {
    background-repeat: no-repeat;
    background-position: center;
    width: 290px;
    height: 290px;
    transition: all .3s;
}

.block.block-participants .item.participant .image-container {
    background-size: cover;
    border-radius: 50%;
}

.block.block-participants.layout-grid .item .image-container,
.block.block-participants.layout-slider .item .image-container {
    margin-bottom: 24px;
}

.block.block-participants .item.participant:hover .image-container {
    transform: scale(1.01);
}

.block.block-participants.layout-column .block-header {
    margin-bottom: 24px;
}

.block.block-participants.layout-column .item {
    margin-bottom: 12px;
}

.block.block-participants.layout-column .view-all-link {
    margin-top: 32px;
}

.block.block-participants.layout-column .item .item-inner {
    display: flex;
    column-gap: 24px;
    align-items: center;
}

.block.block-participants.layout-column .item .image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 72px;
    height: 72px;
}

.block.block-participants.layout-column .item .info-container .name {
    font-weight: 700;
    font-size: 24px;
    color: var(--semidark-color);
}

.block.block-participants.layout-column .item .info-container .company,
.block.block-participants.layout-column .item .info-container .position {
    font-weight: 500;
    font-size: 16px;
    color: #707070;
}

.block.block-participants.layout-company {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.block.block-participants.layout-company .block-header {
    margin-bottom: 80px;
}

.block.block-participants.layout-company .items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.block.block-participants.layout-company .item {
    position: relative;
    width: calc(25% - 30px);
    box-sizing: border-box;
}

.block.block-participants.layout-company .item .item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #B9B9B9;
}

.block.block-participants.layout-company .item .image-container {
    background-size: 160px;
}

.block.block-participants.layout-company-slider {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.block.block-participants.layout-company-slider .block-wrapper {
    position: relative;
}

.block.block-participants.layout-company-slider .block-header {
    margin-bottom: 60px;
}

.block.block-participants.layout-company-slider .item {
    position: relative;
    margin-bottom: 20px;
}

.block.block-participants.layout-company-slider .item .item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #B9B9B9;
    margin: 0 10px;
}

.block.block-participants.layout-company-slider .item .image-container {
    background-size: 160px;
}

.block.block-participants .item.company .hover {
    display: none;
}

.block.block-participants .item.company .ext-link:hover .hover {
    position: absolute;
    top: 0;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--golden-color);
    border: 1px solid var(--golden-color);
    width: calc(100% - 20px);
    height: 100%;
}

.block.block-participants.layout-company .item.company .ext-link:hover .hover {
    left: 0;
    width: 100%;
}

.block.block-participants.layout-company-slider .slider-arrows .arrow {
    position: absolute;
    top: 57%;
    right: -56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--golden-color);
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all .3s;
}

.block.block-participants.layout-company-slider .slider-arrows .arrow svg {
    transition: all .3s;
}

.block.block-participants.layout-company-slider .slider-arrows .arrow svg path {
    stroke: #000000;
}

.block.block-participants.layout-company-slider .slider-arrows .arrow.prev {
    left: -56px;
    transform: scaleX(-1);
}

.block.block-participants.layout-company-slider .slider-arrows .arrow:hover {
    background-color: #E9E9E9;
}


/* Block Infographics */
.block.block-infographics {
    background-color: #FAF6ED;
}

.block.block-infographics .item {
    display: flex;
}

.block.block-infographics .item:nth-child(even) {
    flex-direction: row-reverse;
}

.block.block-infographics .item > div {
    width: 50%;
}

.block.block-infographics .item .image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 550px;
}

.block.block-infographics .item .info-container {
    padding: 80px 0 0 0;
}

.block.block-infographics .item:nth-child(even) .info-wrapper {
    padding-right: 80px;
}

.block.block-infographics .item:nth-child(odd) .info-wrapper {
    padding-left: 80px;
}

.block.block-infographics .item .title {
    margin-bottom: 24px;
}

.block.block-infographics .item .text {
    line-height: 150%;
    text-align: justify;
}


/* Block Tallers */
.block.block-workshops {
    padding: 120px 0;
}

.block.block-workshops .items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 100px;
}

.block.block-workshops .item {
    width: calc(50% - 20px);
}

.block.block-workshops .item .image-wrapper {
    margin-bottom: 32px;
}

.block.block-workshops .item .title {
    font-size: 30px;
    margin-bottom: 12px;
}

.block.block-workshops .item .data {
    font-weight: 700;
    font-size: 20px;
    color: #4B4B4B;
    margin-bottom: 32px;
}

.block.block-workshops .item .data > div:not(:last-child),
.block.block-workshops .item .data .participants .participant:not(:last-child) {
    margin-bottom: 4px;
}

.block.block-workshops .item .data .date {
    text-transform: capitalize;
}


/* Block Programa */
.block.block-program {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.block.block-program .edition-name {
    text-align: center;
    margin: -160px 0 2em 0;
    color: var(--golden-color);
}

.block.block-program .results {
    display: flex;
    column-gap: 50px;
}

.block.block-program .filters {
    width: 25%;
}

.block.block-program .filters > .title {
    margin-bottom: 20px;
}

.block.block-program .filters .filter-item {
    background-color: var(--light-grey-color);
    padding: 4px 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all .2s;
    cursor: pointer;
}

.block.block-program .sel-filters {
    background-color: #F5F5F5;
    padding: 20px;
    margin-bottom: 30px;
}

.block.block-program .sel-filters .top {
    display: flex;
    justify-content: space-between;
}

.block.block-program .sel-filters .top .title {
    font-weight: bold;
    margin-bottom: 20px;
}

.block.block-program .sel-filters .top .clear {
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.block.block-program .sel-filters .filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
}

.block.block-program .sel-filters .filter-items .filter-item {
    background-color: var(--dark-color);
    color: #FFFFFF;
}

.block.block-program .sel-filters .filter-items .filter-item:hover {
    background-color: #FFFFFF;
    color: var(--dark-color);
}

.block.block-program .sel-filters .filter-items .filter-item:after {
    content: "x";
    margin-left: 6px;
}

.block.block-program .filters .filter {
    margin-bottom: 30px;
}

.block.block-program .filters .filter .top {
    display: flex;
    justify-content: space-between;
}

.block.block-program .filters .filter .top .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.block.block-program .filters .filter .top .toggle {
    background-image: url('assets/images/expand-arrow.svg');
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    transition: all .3s;
    transform: rotate(180deg);
    cursor: pointer;
}

.block.block-program .filters .filter.closed .top .toggle {
    transform: none;
}

.block.block-program .filters .filter.closed .filter-items {
    display: none;
}

.block.block-program .filters .filter .filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
    margin-left: 20px;
    padding-left: 15px;
    border-left: 1px solid var(--golden-color);
}

.block.block-program .filters .filter .filter-items .filter-item.active,
.block.block-program .filters .filter .filter-items .filter-item:hover {
    background-color: var(--golden-color);
}

.block.block-program .items {
    width: 75%;
}

.block.block-program .activities .activities-time:not(.active) {
    display: none;
}

.block.block-program .activities .activities-time {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.block.block-program .activities .activities-time:not(:first-child) {
    margin-top: 40px;
}

.block.block-program .activities .activity:not(.active) {
    display: none;
}

.block.block-program .activities .activity {
    background-color: var(--light-grey-color);
    padding: 15px;
    margin-bottom: 10px;
}

.block.block-program .activities .activity .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.block.block-program .activities .activity .meta .place {
    background-color: var(--grey-color);
    color: #FFFFFF;
    padding: 4px 8px;
    box-sizing: border-box;    
}

.block.block-program .activities .activity .meta .format {
    background-color: #FFFFFF;
    padding: 4px 8px;
    box-sizing: border-box;
}

.block.block-program .activities .activity .meta .topics {
    display: flex;
    column-gap: 10px;
}

.block.block-program .activities .activity .meta .topic {
    background-color: var(--golden-color);
    padding: 4px 8px;
    box-sizing: border-box;
}

.block.block-program .activities .activity .details {
    font-weight: bold;
    font-size: 18px;
}

.block.block-program .tabs.by-date {
    display: flex;
    column-gap: 40px;
}

.block.block-program .tabs.by-date .tab-item {
    font-weight: 800;
    font-size: 32px;
    color: var(--grey-color);
    text-transform: capitalize;
    padding: 15px 25px 40px 25px;
    transition: all .13s;
}

.block.block-program .tabs.by-date .tab-item.active {
    position: relative;
    bottom: -1px;
    background-color: #FFFFFF;
    border: 1px solid var(--golden-color);
    border-bottom: 0;
    color: var(--golden-color);
}

.block.block-program .tabs.by-date .tab-item:not(.active) {
    cursor: pointer;
}

.block.block-program .tabs.by-date .tab-item:not(.active):hover {
    color: var(--golden-color);
}

.block.block-program .tabs-contents {
    border: 1px solid var(--golden-color);
    padding: 20px;
}

.block.block-program .tabs-contents .program-by-day:not(.active) {
    display: none;
}

/* Ponentes */
.block.block-program .activities .activity .participants {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    margin-top: 15px;
}

.block.block-program .item.participant .item-inner {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.block.block-program .item.participant .image-container {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.block.block-program .item.participant .info-container .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--semidark-color);
}

.block.block-program .item.participant .info-container .company {
    font-weight: 500;
    font-size: 13px;
    color: #707070;
}

.block.block-program .item.participant .info-container .position {
    display: none;
}


/* Block Startups */
.block.block-startups {
    padding-top: 80px;
    padding-bottom: 120px;
}

.block.block-startups .block-title {
    margin-bottom: 70px;
}

.block.block-startups .filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.block.block-startups .item {
    border: 1px solid #4B4B4B;
    padding: 32px 48px;
    margin-bottom: 30px;
    min-height: 215px;
    transition: all .3s;
}

.block.block-startups .item:hover {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.block.block-startups .item.self {
    border: 1px solid #DDDDDD;
}

.block.block-startups .item .image-wrapper,
.block.block-startups .item .company {
    border-bottom: 1px solid #B9B9B9;
    margin-bottom: 24px;
    height: 65px;
}

.block.block-startups .item .image-wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 44px;
}

.block.block-startups .item .company {
    text-align: center;
}

.block.block-startups .item .name {
    margin-bottom: 4px;
}

.block.block-startups .item .position {
    font-weight: 500;
    margin-bottom: 24px;
}


/* Block Logos */
.block.block-logos {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.block.block-logos .block-header {
    margin-bottom: 96px;
}

.block.block-logos .block-header .block-intro {
    font-size: 18px;
    color: #4B4B4B;
    margin-top: 16px;
    width: 50%;
}

.block.block-logos .logos-row:not(:last-child) {
    margin-bottom: 90px;
}

.block.block-logos .title {
    margin-bottom: 16px;
}

.block.block-logos .logos-row .logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.block.block-logos .logos-row.rows-1:not(.has-force-halign) .logos,
.block.block-logos .logos-row.force-halign-center .logos {
    justify-content: center;
}

.block.block-logos .logos-row.force-halign-left .logos {
    justify-content: flex-start;
}

.block.block-logos .logos-row.force-halign-right .logos {
    justify-content: flex-end;
}

.block.block-logos .logo {
    box-sizing: border-box;
    margin-left: -1px;
    margin-bottom: -1px;
    width: 33.33%;
}

.block.block-logos .logos-row.rows-2 .logo:not(.has-force-width) {
    width: 50%;
}

.block.block-logos .logo.force-width-20 {
    width: calc(20% + .3px);
}

.block.block-logos .logo.force-width-25 {
    width: 25%;
}

.block.block-logos .logo.force-width-50 {
    width: calc(50% - 1px);
}

.block.block-logos .logo.force-width-75 {
    width: 75%;
}

.block.block-logos .logo.force-width-100 {
    width: calc(100% - 3px);
}

.block.block-logos .logo .logo-wrapper {
    border: 1px solid #DFDFDF;
    padding: 23px 16px;
    text-align: center;
}

.block.block-logos .logo.subgroup-position-begin .logo-wrapper,
.block.block-logos .logo.subgroup-position-middle .logo-wrapper {
    border-right: 1px solid transparent;
}

.block.block-logos .logo.subgroup-position-end .logo-wrapper,
.block.block-logos .logo.subgroup-position-middle .logo-wrapper {
    border-left: 1px solid transparent;
}

.block.block-logos .logo img {
    object-fit: contain;
    transition: all .3s;
    max-width: 100%;
    width: 190px;
    height: 90px;
}

.block.block-logos .logo img:hover {
    transform: scale(1.02);
}

.block.block-logos .logo.image-width-smaller img {
    width: 100px;
}

.block.block-logos .logo.image-width-small img {
    width: 140px;
}

.block.block-logos .logo.image-width-big img {
    width: 260px;
}

.block.block-logos .logo.image-width-bigger img {
    width: 350px;
}

.block.block-logos .logo.image-width-auto img {
    width: auto;
}


/* Block Entradas */
.block.block-tickets {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 80px 0;
}

.block.block-tickets .items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
}

.block.block-tickets .items .item {
    position: relative;
    background: linear-gradient(90deg, rgba(214, 181, 78, 0.1) 0%, rgba(214, 181, 78, 0.2) 95.81%);
    box-sizing: border-box;
    padding: 30px 16px;
    width: calc(50% - 8px);
}

.block.block-tickets .items .item .name {
    font-size: 32px;
    margin-bottom: 8px;
}

.block.block-tickets .items .item .price-container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 1rem;
    font-weight: 600;
    font-size: 90px;
    margin-bottom: 15px;
}

.block.block-tickets .items .item .price-container .caption {
    text-transform: uppercase;
    font-size: 24px;
}

.block.block-tickets .items .item .details {
    font-weight: 300;
    font-size: 20px;
    padding-bottom: 4rem;
}

.block.block-tickets .items .item .details-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.block.block-tickets .items .item .link {
    position: absolute;
    bottom: 30px;
    width: calc(100% - 30px);
}

.block.block-tickets .items .item .link .button {
    width: 100%;
}


/* 404 */
body.error404 .site-content {
    padding: 250px 0 120px 0;
}

body.error404 .title {
    margin-bottom: 40px;
}

body.error404 .message {
    margin-bottom: 20px;
}


/* Footer */
.site-footer {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.site-footer .site-logo img {
    max-width: 240px;
}

.site-footer .menu-bar {
    display: flex;
    column-gap: 48px;
    padding: 56px 0;
    margin: 56px 0 32px 0;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
}

.site-footer .menu-bar .widget-group:not(:last-child) {
    flex-shrink: 0;
}

.site-footer .menu-bar .widget-group:nth-child(2),
.site-footer .menu-bar .widget-group:nth-child(4) {
    width: 12%;
}

.site-footer .menu-bar .widget-group:last-child {
    padding-left: 20%;
    line-height: 150%;
}

.site-footer .menu-bar .button {
    margin-top: 24px;
    max-width: 112px;
}

.site-footer .menu-bar .wp-block-heading {
    font-size: 16px;
    margin-bottom: 32px;
}

.site-footer .top-bar {
    display: flex;
    justify-content: space-between;
}

.site-footer .top-bar .social a {
    display: inline-block;
    background-color: #E9E9E9;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: all .3s;
}

.site-footer .top-bar .social a:not(:first-child) {
    margin-left: 16px;
}

.site-footer .top-bar .social a.twitter {
    background-image: url('assets/images/icon-x.svg');
}

.site-footer .top-bar .social a.linkedin {
    background-image: url('assets/images/icon-linkedin.svg');
}

.site-footer .top-bar .social a.youtube {
    background-image: url('assets/images/youtube-logo.png');
    background-size: 55%;
}

.site-footer .top-bar .social a:hover {
    background-color: #D9D9D9;
}

.site-footer .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.site-footer .bottom-bar .title {
    font-size: 14px;
    margin-bottom: 8px;
}

.site-footer .bottom-bar .copyright {
    font-size: 14px;
    color: #4B4B4B;
}

.site-footer .bottom-bar .logos {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.site-footer .bottom-bar .logos img {
    max-width: 130px;
    height: 32px;
    object-fit: contain;
}


/* ------------- */
/* Media queries */

/* Main menu visible */
@media only screen and (min-width : 1200px) {
    body.sticky-header .site-header {
        height: calc(var(--header-height) - 30px);
    }

    body.sticky-header .site-header .site-logo img {
        max-width: 140px;
    }
}


/* Mobile only */
@media only screen and (min-width : 768px) {
    .mobile-only {
        display: none;
    }
}


@media only screen and (max-width : 1400px) {
    .block.block-participants.layout-company-slider .slider-arrows .arrow {
        right: 0;
    }

    .block.block-participants.layout-company-slider .slider-arrows .arrow.prev {
        left: 0;
    }
}


/* 1280 (container) - 20 (margin) - 20 (margin) = 1240 */
@media only screen and (max-width : 1240px) {
    h1 {
        font-size: 50px; 
    }

    .site-half-container {
        width: initial;
    }

    .site-half-container.left {
        margin-left: var(--mobile-margin);
    }

    .site-half-container.right {
        margin-right: var(--mobile-margin);
    }

    .site-content {
        padding-top: var(--mobile-header-height);
    }

    .site-header {
        height: var(--mobile-header-height);
    }

    .site-header .main-menu-container li:not(.button) {
        display: none;
    }

    .site-header .mobile-menu-opener {
        display: block;
        background-color: var(--semidark-color);
        margin-right: 18px;
        padding: 8px;
        cursor: pointer;
    }

    .site-header .mobile-menu-opener > div {
        background-color: #FFFFFF;
        width: 22px;
        height: 1px;
        transition: all .3s;
    }

    .site-header .mobile-menu-opener > div:not(:last-child) {
        margin-bottom: 8px;
    }

    body.mobile-menu-opened .mobile-menu-opener > div:first-child {
        transform: rotate(45deg);
    }

    body.mobile-menu-opened .mobile-menu-opener > div:nth-child(2) {
        transform: rotate(-45deg);
        margin-top: -10px;
    }

    body.mobile-menu-opened .mobile-menu-opener > div:last-child {
        display: none;
    }

    .site-header .site-logo img {
        max-width: 140px;
    }

    .block.block-hero .intro,
    .block.block-hero.layout-full .intro {
        font-size: 22px; 
    }

    .block.block-contact.layout-only-form {
        padding: 80px 22%;
    }

    .block.block-participants.layout-grid .item .image-container,
    .block.block-participants.layout-slider .item .image-container {
        width: 240px;
        height: 240px;
    }

    .block.block-participants .item.company .image-container {
        background-size: 120px;
        width: 200px;
        height: 200px;
    }

    .site-footer .menu-bar .widget-group:last-child {
        padding-left: 12%;
    }
}


@media only screen and (max-width : 1120px) {
    .block.block-newsletter.layout-widget {
        margin: 24px 0 0 0
    }

    .block.block-contact.layout-only-form {
        padding: 80px 17%;
    }

    .block.block-contact.layout-only-form-dark .wpcf7 {
        padding: 30px 6%;
    }

    body.single-post .entry-body {
        flex-direction: column;
    }

    body.single-post .entry-body > div:first-child,
    body.single-post .entry-body > div:last-child {
        width: 100%;
    }

    body.single-post .block.block-participants,
    body.single-post .block.block-editions {
        display: none;
    }

    .site-footer .menu-bar {
        column-gap: 27px;
    }

    .site-footer .menu-bar .widget-group:last-child {
        padding-left: 7%;
    }
}


@media only screen and (max-width : 1023px) {
    .block.block-logos .logo,
    .block.block-logos .logos-row.rows-2 .logo:not(.has-force-width),
    .block.block-logos .logo.force-width-20,
    .block.block-logos .logo.force-width-25,
    .block.block-logos .logo.force-width-75 {
        width: 50%;
    }

    .block.block-logos .logo.subgroup-position-begin .logo-wrapper,
    .block.block-logos .logo.subgroup-position-middle .logo-wrapper,
    .block.block-logos .logo.subgroup-position-end .logo-wrapper {
        border: none;
    }

    .block.block-blog-entries.layout-row .item {
        width: calc(50% - 20px);
    }

    body.single-participant .entry-body .image-container {
        width: 220px;
        height: 220px;
    }

    .block.block-contact.layout-full .box > div:first-child {
        padding-top: 50px;
    }

    .block.block-contact.layout-full .box .wpcf7 {
        margin: 60px 0 0 20px;
    }

    .block.block-infographics .item .info-container {
        padding: 40px 0 0 0;
    }

    .block.block-infographics .item:nth-child(odd) .info-wrapper {
        padding-left: 40px;
    }

    .block.block-infographics .item:nth-child(even) .info-wrapper {
        padding-right: 40px;
    }

    .block.block-stands .items {
        row-gap: 60px;
    }

    .block.block-stands .item {
        width: calc(50% - 20px);
    }
}


@media only screen and (max-width : 990px) {
    .form-container:not(.quick-newsletter-form-container) .form-row:not(.full) {
        flex-direction: column;
    }

    .form-container:not(.quick-newsletter-form-container) .form-row:not(:last-child) {
        margin-bottom: 24px;
    }

    .form-container:not(.quick-newsletter-form-container) .form-row:not(.full) .form-field:first-child {
        margin-bottom: 24px;
    }

    .form-container .form-row:not(.full) .form-field:not(.form-button-field) {
        width: 100%;
    }

    .block.block-contact.layout-full .box > div:first-child {
        justify-content: flex-start;
    }

    .block.block-newsletter.layout-full .box .inner-box {
        padding-right: 32px;
    }

    .block.block-hero.layout-full .hero .info-wrapper {
        max-width: initial;
    }

    .block.block-video iframe {
        height: 360px;
    }

    .block.block-edition.layout-card .item {
        column-gap: 40px;
    }

    .block.block-blog-entries.layout-full .item, 
    .block.block-blog-entries.layout-related .item {
        width: calc(50% - 20px);
    }

    .block.block-participants.layout-company .items {
        gap: 20px;
    }

    .block.block-participants.layout-company .item {
        width: calc(33% - 12px);
    }

    .block.block-participants.layout-grid .item {
        width: calc(50% - 20px);
    }

    .block.block-tickets .items .item .price-container {
        font-size: 60px;
    }

    .block.block-wp-editor.tickets-hero .wp-block-group .wp-block-group:first-child .wp-block-heading {
        font-size: 60px;
    }

    .block.block-wp-editor.tickets-hero .wp-block-group .wp-block-group:nth-child(2) .wp-block-heading {
        font-size: 40px;
    }

    .block.block-wp-editor.tickets-hero .wp-block-columns {
        font-size: 18px;
    }

    body.single-post .entry-header {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    body.single-post .entry-body .content {
        padding: 32px;
    }

    .site-footer .menu-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer .menu-bar .widget-group:not(:last-child) {
        margin-bottom: 40px;
        width: 100%;
    }

    .site-footer .menu-bar .widget-group:last-child {
        padding-left: 0;
    }

    .site-footer ul.menu {
        align-items: center;
    }

    .site-footer .menu-bar .wp-block-heading {
        margin-bottom: 12px;
    }

    .site-footer .bottom-bar {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .site-footer .bottom-bar .title {
        text-align: center;
    }

    .site-footer .bottom-bar .logos {
        flex-direction: column;
        justify-content: center;
        row-gap: 17px;
    }
}


@media only screen and (max-width : 767px) {
    h1,
    h2,
    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    .desktop-only {
        display: none;
    }

    .button, 
    input[type=button], 
    input[type=submit] {
        padding: 9px 22px;
    }

    .site-header .mobile-menu-opener {
        margin-right: 15px;
    }

    .site-header .site-description {
        font-size: 14px;
        margin-left: 10px;
    }

    .site-header .site-logo img {
        max-width: 100px;
    }

    .site-header .main-menu-container .menu-item.button {
        font-size: 16px;
        padding: 8px 19px;
    }

    .block.block-hero.layout-simple {
        padding: 80px 0;
    }

    .block.block-hero.layout-full .intro {
        font-size: 20px;
    }

    .block.block-hero.layout-default .hero {
        flex-direction: column;
    }

    .block.block-hero.layout-default .hero > div {
        width: 100%;
    }

    .block.block-hero.layout-default .image-container {
        height: 200px;
    }

    .block.block-hero.layout-default .hero .info-wrapper {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .block.block-hero .title {
        margin-bottom: 24px;
    }

    .block.block-hero .intro {
        font-size: 16px;
    }

    .block.block-hero .button {
        margin-top: 24px;
    }

    .block.block-stands {
        padding: 40px 0;
    }

    .block.block-stands .items {
        flex-direction: column;
        row-gap: 40px;
    }

    .block.block-stands .item {
        width: 100%;
    }

    .block.block-contact.layout-full .box {
        flex-direction: column;
    }

    .block.block-contact.layout-full .box > div {
        width: 100%;
    }

    .block.block-contact.layout-full .box .image-container {
        height: 200px;
    }

    .block.block-contact.layout-full .box > div:first-child {
        padding-top: 24px;
    }

    .block.block-contact.layout-full .box .title {
        margin-bottom: 24px;
    }

    .block.block-contact.layout-full .box .wpcf7 {
        margin: 0 -20px 0 0;
        padding: 20px;
    }

    .block.block-contact.layout-only-form {
        padding: 40px 0;
    }

    .block.block-contact.layout-only-form .title {
        font-size: 30px;
    }

    .block.block-contact.layout-only-form .intro {
        font-size: 16px;
    }

    .block.block-contact.layout-only-form .wpcf7 {
        background-color: initial;
        padding: 0;
    }

    .block.block-contact.layout-only-form-dark {
        padding: 40px 0;
    }

    .block.block-contact.layout-only-form-dark .wpcf7 {
        padding: 30px 0;
    }

    .block.block-contact.layout-only-form-dark .wpcf7 form {
        padding: 0;
    }

    .block.block-newsletter.layout-full .box {
        flex-direction: column-reverse;
    }

    .block.block-newsletter.layout-full .box > div {
        width: 100%;
    }

    .block.block-newsletter.layout-full .box .inner-box {
        padding: 40px 20px 50px 0;
    }

    .block.block-newsletter.layout-full .box .image-container {
        height: 200px;
    }

    .block.block-infographics .item,
    .block.block-infographics .item:nth-child(even) {
        flex-direction: column-reverse;
        row-gap: 24px;
    }

    .block.block-infographics .item > div {
        width: 100%;
    }

    .block.block-infographics .item:nth-child(odd) .info-wrapper {
        padding-left: var(--mobile-margin);
    }

    .block.block-infographics .item:nth-child(even) .info-wrapper {
        padding-right: var(--mobile-margin);
    }

    .block.block-infographics .item .image-container {
        flex-shrink: initial;
        height: 240px;
    }

    .block.block-participants.layout-slider .item .name,
    .block.block-participants.layout-grid .item .name {
        font-size: 20px;
    }

    .block.block-participants.layout-slider .item .company, 
    .block.block-participants.layout-slider .item .position,
    .block.block-participants.layout-grid .item .company, 
    .block.block-participants.layout-grid .item .position {
        font-size: 16px;
    }

    .block.block-participants.layout-slider .slider-arrows .arrow {
        width: 48px;
        height: 48px;
    }

    .block.block-participants.layout-slider .slider-arrows .arrow svg {
        width: 24px;
    }

    .block.block-participants.layout-grid {
        padding: 40px 0;
    }

    .block.block-participants.layout-grid .block-header {
        margin-bottom: 40px;
    }

    .block.block-participants.layout-slider .slider-arrows {
        margin-top: 48px;
    }

    .block.block-participants.layout-slider .view-all-link {
        margin-top: 64px;
        text-align: initial;
    }

    .block.block-participants.layout-company {
        padding: 40px 0 58px 0;
    }

    .block.block-participants.layout-company .block-header {
        margin-bottom: 48px;
    }

    .block.block-participants.layout-company .item .image-container {
        background-size: 100px;
        width: 154px;
        height: 154px;
    }

    .block.block-participants.layout-company-slider .slider-arrows .arrow {
        width: 34px;
        height: 34px;
    }

    .block.block-participants.layout-company-slider .slider-arrows .arrow svg {
        width: 22px;
        height: 22px;
    }

    .block.block-program .results {
        flex-direction: column;
        row-gap: 40px;
    }

    .block.block-program .filters,
    .block.block-program .items {
        width: 100%;
    }

    .block.block-workshops {
        padding: 50px 0;
    }

    .block.block-workshops .items {
        flex-direction: column;
        column-gap: 0;
        row-gap: 80px;
    }

    .block.block-workshops .item {
        width: 100%;
    }

    .block.block-workshops .item .title {
        font-size: 20px;
    }

    .block.block-workshops .item .data {
        font-size: 16px;
    }

    .block.block-video {
        padding: 40px 0;
    }

    .block.block-gallery .items:not(.is-slider) .item {
        width: 100%;
    }

    .block.block-gallery .image {
        height: 200px;
    }

    .block.block-logos {
        padding: 50px 0;
    }

    .block.block-logos .block-header {
        margin-bottom: 80px;
    }

    .block.block-logos .block-header .block-intro {
        width: 100%;
    }

    .block.block-logos .logo,
    .block.block-logos .logos-row.rows-2 .logo:not(.has-force-width),
    .block.block-logos .logo.force-width-20,
    .block.block-logos .logo.force-width-25,
    .block.block-logos .logo.force-width-75 {
        width: 100%;
    }

    .block.block-logos .logo.image-width-bigger img {
        width: 300px;
    }

    .block.block-logos .logos-row:not(:last-child) {
        margin-bottom: 60px;
    }

    .block.block-logos .logos-row .logos .logo:not(:first-child) .title {
        margin-top: 60px;
    }

    .block.block-blog-entries {
        padding: 50px 0;
    }

    .block.block-blog-entries .block-header {
        margin-bottom: 24px;
    }

    .block.block-blog-entries .item .date {
        font-size: 14px;
    }

    .block.block-blog-entries.layout-summary .items,
    .block.block-blog-entries.layout-row .items {
        flex-direction: column;
        row-gap: 24px;
        column-gap: 0;
    }

    .block.block-blog-entries.layout-summary .items-group:first-child,
    .block.block-blog-entries.layout-summary .items-group:last-child {
        gap: 24px;
        width: 100%;
    }

    .block.block-blog-entries.layout-summary .items-group:last-child .item:not(:first-child) {
        width: 100%;
    }

    .block.block-blog-entries.layout-summary .items-group:first-child .item .image-container,
    .block.block-blog-entries.layout-summary .items-group:last-child .item:first-child .image-container,
    .block.block-blog-entries .item .image-container {
        height: 340px;
    }

    .block.block-blog-entries .item .info-container {
        left: 24px;
        padding-right: 24px;
    }

    .block.block-blog-entries .item .title,
    .block.block-blog-entries.layout-summary .items-group:last-child .item .title {
        font-size: 16px;
    }

    .block.block-blog-entries.layout-summary .items-group:last-child .item .date {
        display: block;
    }

    .block.block-blog-entries.layout-full .items.featured .item .image-container,
    .block.block-blog-entries.layout-row .items.featured .item .image-container {
        height: 340px;
    }

    .block.block-blog-entries.layout-full .item, 
    .block.block-blog-entries.layout-related .item,
    .block.block-blog-entries.layout-row .item,
    .block.block-blog-entries.layout-full .item:nth-child(5n-1), 
    .block.block-blog-entries.layout-full .item:nth-child(5n), 
    .block.block-blog-entries.layout-related .item:nth-child(5n-1), 
    .block.block-blog-entries.layout-related .item:nth-child(5n) {
        width: 100%;
    }

    .block.block-blog-entries .pagination {
        font-size: 17px;
        margin-top: 40px;
    }

    .block.block-blog-entries .pagination > .page-numbers {
        height: 35px;
    }

    .block.block-blog-entries .pagination > .page-numbers:not(:last-child) {
        margin-right: 4px;
    }

    .block.block-edition {
        padding: 50px 0;
    }

    .block.block-edition.layout-card .info-container {
        font-size: 16px;
    }

    .block.block-edition.layout-only-figures .figures {
        flex-direction: column;
        row-gap: 40px;
    }

    .block.block-edition.layout-only-figures .figures .figure {
        width: 100%;
    }

    .block.block-edition.layout-only-figures .info-container {
        padding: 16px;
    }

    .block.block-edition.layout-only-figures .info-container .value {
        font-size: 48px;
    }

    .block.block-edition .block-header {
        margin-bottom: 24px;
    }

    .block.block-edition.layout-card .item {
        flex-direction: column;
        row-gap: 40px;
        column-gap: 0;
    }

    .block.block-edition.layout-card .image-container {
        width: 100%;
    }

    .block.block-edition.layout-card .image-container:not(.no-image) {
        height: 200px;
    }

    .block.block-edition.layout-card .image-container.no-image {
        height: auto;
    }

    .block.block-edition.layout-card .image-container .block-header {
        margin-top: 0;
        margin-bottom: 0;
    }

    .block.block-editions {
        padding: 50px 0;
    }

    /*
    .block.block-editions .items {
        flex-direction: column;
        row-gap: 24px;
    }

    .block.block-editions .item {
        width: 100%;
    }

    .block.block-editions .image-container {
        height: 380px;
    }
    */

    .block.block-editions.layout-grid .items {
        flex-direction: column;
        row-gap: 24px;        
    }

    .block.block-editions.layout-grid .item {
        width: 100%;
    }

    .block.block-editions.layout-grid .image-container {
        height: 340px;
    }

    .block.block-editions.layout-grid .item .info-container {
        left: 24px;
    }

    body.single-post .entry-body .image-container {
        height: 240px;
    }

    body.single-participant article {
        padding: 40px 0 58px 0;
    }

    body.single-participant .entry-body .company {
        font-size: 20px;
    }

    body.single-participant .entry-body {
        flex-direction: column;
        column-gap: 0;
    }

    body.single-participant .entry-body .image-container {
        width: 154px;
        height: 154px;
        margin-bottom: 40px;
    }

    body.single-participant .entry-body .info-container {
        margin-bottom: 20px;
    }

    body.single-participant .entry-body .bio {
        font-size: 18px;
    }

    body.single-workshop .entry-header {
        padding: 56px 0;
        background-position: center right -162px;
    }

    body.single-workshop .entry-header .data {
        font-size: 20px;
    }

    body.single-workshop .entry-body,
    body.single-workshop .entry-footer {
        padding: 40px 0;
    }

    body.single-workshop .entry-header .title,
    body.single-workshop .entry-body .title,
    body.single-workshop .entry-footer .title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    body.single-workshop .entry-body .content {
        font-size: 16px;
    }

    body.single-workshop .participants {
        row-gap: 40px;
    }

    body.single-workshop .participants .participant .item-inner {
        flex-direction: column;
        align-items: flex-start;
        column-gap: 0;
        row-gap: 30px;
    }

    body.single-workshop .participants .participant .name {
        font-size: 24px;
    }

    .site-footer {
        padding: 56px 0;
    }

    .site-footer .top-bar {
        flex-direction: column;
        align-items: center;
    }

    .site-footer .top-bar .site-logo {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width : 630px) {
    .block.block-tickets .items .item {
        width: 100%;
    }

    .block.block-tickets .items .item .details-title {
        font-size: 22px;
    }

    .block.block-tickets .items .item .details {
        font-size: 18px;
    }
}


@media only screen and (max-width : 550px) {
    .block.block-video iframe {
        height: auto;
    }

    .block.block-participants.layout-grid .item .image-container {
        width: 154px;
        height: 154px;
    }

    .block.block-participants.layout-slider .slick-list {
        margin-right: calc(-1 * 20px);
    }

    .block.block-participants.layout-slider .slick-track {
        margin-left: -54%;
    }

    .block.block-participants.layout-company .item {
        width: calc(50% - 10px);
    }
}