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

html {
    font-family: "Libre Franklin", sans-serif;
}

.container {
    width: 100%;
    max-width: 1512px;
    padding: 0 25px;
    margin: 0 auto;
}

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

.post {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.post__body {
    display: flex;
    flex-direction: column;
}

.post__content {
    max-width: 926px;
    align-self: flex-start;
}

.post a.post-share-button {
    width: min-content;
    align-self: flex-end;
    color: #509636;
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.post a.post-share-button:hover {
    color: #509636;
}

.post__subtitle {
    color: #333;
    font-family: "Libre Franklin", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}


.post__text p, .post__text h5, .post__text a, .post__text ul, .post__text ol {
    color: #333;
    font-family: "Libre Franklin", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
    margin-bottom: 1rem;
}

.post__text a {
    font-weight: 600;
}

.post__text h1, .post__text h2, .post__text h3, .post__text h4 {
    color: #006937;
    font-family: "Libre Franklin", sans-serif;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    font-size: 36px;
}

.post__text h2 {
    font-size: 24px;
}

.post__text h3 {
    font-size: 20px;
}

.post__text h4 {
    font-size: 18px;
}

.post__text h4 {
    font-size: 14px;
}

.post__text img {
    width: 90%;
    max-width: 100%;
}

.post__text a {
    color: #509636;
    text-decoration-line: underline;
}


.post_video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.post_video__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-section-title {
    color: #006937;
    font-family: "Libre Franklin", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
}

/*Post Header*/

.post-header {
    padding: 55px 0;
}

.post-header__body {
    background-color: #6bc048;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    padding: 40px;
    width: 100%;
    position: relative;
    border-radius: 4px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;

    color: #fff;
    font-family: "Roboto Mono", sans-serif;
}

.post-header__body::after {
    content: "";
    position: absolute;
    background: linear-gradient(252deg, rgba(0, 0, 0, 0.00) 37.61%, rgba(0, 0, 0, 0.60) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.post-header__body * {
    z-index: 1;
}

.post-header__body[style*="background-image"] {
    min-height: 600px;
}

.post-header__date {
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;

    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.post-header__date .category {
    padding: 2px;
    border-radius: 4px;
}

.post-header__title {
    color: #FFF;
    font-family: "Libre Franklin", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.6px;
    max-width: 700px;
}

.post-header__divider {
    background-color: #FFF;
    height: 2px;
    width: 75px;
}

.post-header__tags, .post-header__category {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.post-header__tags a, .post-header__category * {
    color: #FFF;
    font-family: "Roboto Mono", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none;
}

.multimedia {
    background: #FFFFFF;
}

.post-correlated-news {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-correlated-news__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .post-correlated-news__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-correlated-news__row {
        grid-template-columns: repeat(1, 1fr);
    }
}

.post-correlated-news__item, .post-correlated-news__link {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}

.post-correlated-news__divider {
    transition: width 0.3s ease-in-out;
}

.post-correlated-news__item:hover .post-correlated-news__divider {
    width: 100%;
}

.post-correlated-news__image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.post-correlated-news__date {
    color: #666;
    font-family: "Roboto Mono", sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.post-correlated-news__title {
    color: #333;
    font-family: "Libre Franklin", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
}

.post-correlated-news__divider {
    background-color: #6ABF4B;
    height: 1px;
    width: 75px;
}

.post-correlated-news__tags {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.post-correlated-news__tags a {
    color: #000;
    font-family: "Roboto Mono", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none;
}

.post-chef {
    display: flex;
    align-items: center;
    gap: 24px;
}

.post-chef__image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .post__chef {
        flex-direction: column;
    }
}

/* Attachments */

.attachments {
    margin-top: 24px;
    width: 100%;
}

.attachments__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 8px;
    text-decoration: none;
}

.attachments__icon {
    width: 40px;
    height: 40px;
    padding: 4px;
    background-color: #6ABF4B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attachments__icon img {
    width: 100%;
}

.attachments__text {
    color: #333;
    text-overflow: ellipsis;
    font-family: "Libre Franklin", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attachments__divider {
    width: 75px;
    height: 2px;
    background-color: #6ABF4B;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.attachments__item:hover .attachments__divider {
    width: 100%;
}


/* CIA Text Plugin */

.cia-text-plugin {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Social */

.socials {
    font-family: "Libre Franklin", sans-serif;
}

.socials h2 {
    color: #006937;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 40px 0;
}

.socials__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 100%;
    gap: 24px;
}

.socials__item {
    display: flex;
    text-decoration: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 32px;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
}

.socials__item:hover {
    background: #036837;
}

.socials__item:hover .socials__text * {
    color: #FFF;
}

.socials__icon--hover{
  display: none;
}

.socials__item:hover .socials__icon {
    display: none;
}

.socials__item:hover .socials__icon--no-hover, .socials__item:hover .socials__icon--hover {
    display: block;
}

.socials__item:hover svg.socials__arrow * {
    stroke: #FFF;
}

.socials__icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.socials__arrow {
    width: 48px;
}

.socials__text {
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.socials__text * {
    overflow: hidden;
    text-overflow: ellipsis;
}

.socials__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.socials__subtitle {
    color: #666;
    font-size: 16px;
    letter-spacing: 0.8px;
}

@media (max-width: 500px) {
    .socials__container {
        grid-template-columns: 1fr;
    }
}

/* Header */

.header {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
    z-index: 100;
    position: fixed;
}

#headerPlaceholder {
    display: block;
    height: 85px;
}

.header__logo {
    padding: 16px 0;
}

.header__main-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header__links {
    display: flex;
    flex-direction: row;
}

.header__links > * {
    position: relative;
}

.header__links > *:after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #808080;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header__links > *:last-child:after {
    display: none;
}

.header__menu-button {
    display: block;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.header__menu-button:hover {
    background: #F2F2F2;
}

.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}

.header__overlay--visible {
    display: block;
}

.header__menu-button-close-icon {
    display: none;
}

.header--menu-open .header__menu-button-close-icon {
    display: block;
}

.header--menu-open .header__menu-button-open-icon {
    display: none;
}

.header__tags {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    overflow-y: auto;
    border-top: 1px solid #E6E6E6;
}

.header__tags a {
    display: block;
    padding: 12px 0;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.header__tags a:hover:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #6ABF4B;
    border-radius: 4px 4px 0 0;
}

.header__tags-divider {
    color: #999;
    font-size: 12px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.header__menu {
    display: none;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.header__logo img {
    max-width: 100%;
}

.header--menu-open .header__menu {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    padding-bottom: 40px;
}

.header__dropdown-content {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px 75px;
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 16px;
}

.header__dropdown--visible .header__dropdown-content {
    display: grid;
}

@media (max-width: 1024px) {
    .header__dropdown-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header__dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .header__dropdown-content {
        grid-template-columns: 1fr;
    }
}

.header__menu-link {
    cursor: pointer;
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 16px 0;
    border-bottom: 1px solid #CDCDCD;
    text-decoration: none;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
}

.header__menu-link:hover {
    color: #6ABF4B;
    text-decoration: underline;
}

.header__dropdown-content .header__menu-link {
    font-weight: 400;
    padding: 0;
    border-bottom: none;
}

.header__dropdown--visible > .header__menu-link:first-child {
    border: none;
    color: #6ABF4B;
}

@media (max-width: 768px) {
    .container.header__main-navigation {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Footer */

.footer {
    width: 100%;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.footer__navigation {
    gap: 8px;
}

.footer__navigation__item {
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-decoration: none;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact__title {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.footer__contact__value {
    color: #333;
    font-size: 16px;
    letter-spacing: 0.8px;
}

.footer__button {
    border-radius: 4px;
    background: #509636;
    padding: 4px 8px;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    width: fit-content;
    text-decoration: none;
}

.footer__bottom {
    border-top: 1px solid #E6E6E6;
    padding: 20px 0;
    font-size: 12px;
    letter-spacing: 0.6px;
}

@media (max-width: 1100px) {
    .footer__inner {
        justify-content: center;
        flex-direction: column;
    }
}

/* Common plugin styles */

.plugin-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
    padding-top: 80px;
}

.plugin-section-title {
    color: #006937;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.plugin-section-button {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #CDCDCD;
    border-top: 1px solid #CDCDCD;
    text-decoration: none;
    color: #509636;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.plugin-section-button svg * {
    stroke: #509636;
}

.plugin-section-button:hover {
    background: #036837;
    color: #FFFFFF;
}

.plugin-section-button:hover svg * {
    stroke: #FFFFFF;
}

.plugin-section-spinner svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Agenda */

.agenda-plugin {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-plugin__body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;

}

.agenda-plugin__body .agenda-card {
    flex-basis: 450px;
}

.agenda-card {
    cursor: pointer;
    text-decoration: none;
    aspect-ratio: 450 / 700;
    width: 100%;
    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 4px;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.agenda-card:after {
    display: block;
    content: "";
    position: absolute;
    background: linear-gradient(214deg, rgba(0, 0, 0, 0.00) 20.33%, rgba(0, 0, 0, 0.90) 79.67%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.agenda-card__date {
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(3px);
    width: fit-content;
    text-align: center;
}

.agenda-card__date-day {
    color: #1A1A1A;
    font-family: "Roboto Mono", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.agenda-card__date-month {
    color: #4D4D4D;
    font-family: "Roboto Mono", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.agenda-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agenda-card__title {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.agenda-card__divider {
    border-radius: 1px;
    background: #6ABF4B;
    width: 75px;
    height: 2px;
    transition: width 0.3s ease-in-out;
}

.agenda-card:hover .agenda-card__divider {
    width: 100%;
}

.agenda-card__category {
    color: #FFF;
    font-family: "Roboto Mono", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

/* Video Gallery */

.video-gallery {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 768px) {
    .video-gallery {
        flex-direction: column;
    }
}

.video-card {
    width: 100%;
}

.video-card__preview {
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 4px 4px 0px 0px;
    overflow: hidden;
}

.video-card__icon {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 4px;
    background: #509636;
    z-index: 2;
    width: 64px;
    height: 64px;
    padding: 10px;
}

.video-card__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.video-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
}

.video-card__link {
    text-decoration: none;
}

.video-card__date {
    color: #666;
    font-family: "Roboto Mono", sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.video-card__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.video-card__divider {
    width: 75px;
    height: 2px;
    background-color: #6ABF4B;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.video-card:hover .video-card__divider {
    width: 100%;
}

.video-card__tags {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.video-card__tags a {
    color: #000;
    font-family: "Roboto Mono", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Multimedia Page */

.grid-page__title {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #CDCDCD;
    margin-bottom: 40px;
}

.grid-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
}

.grid-page__grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

@media (max-width: 700px) {
    .grid-page__grid, .grid-page__grid3 {
        grid-template-columns: 1fr;
    }
}

/* News Plugin */

.news-plugin__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .news-plugin__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-plugin__grid {
        grid-template-columns: 1fr;
    }
}

/* Mondo CIA Plugin*/

.mondo-cia-plugin__buttons {
    display: flex;
    flex-direction: row;
}

.mondo-cia-plugin__buttons > * {
    flex: 1;
}

@media (max-width: 768px) {
    .mondo-cia-plugin__buttons {
        flex-direction: column;
    }
}

/* Attachment for list of news*/

.news-attachment {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
    width: 100%;
}

.news-attachment__icon {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #509636;
}

.news-attachment__date {
    color: #666;
    font-family: "Roboto Mono", sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.news-attachment__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
    text-decoration: none;
}

.news-attachment__divider {
    width: 75px;
    height: 2px;
    background-color: #6ABF4B;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.news-attachment:hover .news-attachment__divider {
    width: 100%;
}

.news-attachment__tag {
    color: #000;
    font-family: "Roboto Mono", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none;
}

.frame-child9 {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

/* Chi Siamo*/

.chi-siamo-title {
    color: #006937;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 40px 0;
    text-align: center;
}

.chi-siamo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.chi-siamo-cards__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}

.chi-siamo-cards__item__img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.chi-siamo-cards__item__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.chi-siamo-cards__item__divider {
    width: 75px;
    height: 2px;
    border-radius: 1px;
    background: #6ABF4B;
    transition: width 0.3s ease-in-out;
}

.chi-siamo-cards__item:hover .chi-siamo-cards__item__divider {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .chi-siamo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .chi-siamo-cards {
        grid-template-columns: 1fr;
    }
}

/**/

.chi-siamo-two-columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #cdcdcd;
}

.chi-siamo-two-columns--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
    .chi-siamo-two-columns {
        flex-direction: column;
    }
}

.chi-siamo-two-columns__column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.chi-siamo-two-columns__column img {
    width: 100%;
}

.chi-siamo-two-columns__column p, .chi-siamo-two-columns__column a {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
}

.chi-siamo-two-columns__column a {
    color: #509636;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-decoration-line: underline;
}

.chi-siamo-two-columns__column__button {
    color: #509636;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-decoration-line: underline;
    background: #FFFFFF;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
}

.chi-siamo-organization-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    justify-content: center;
}

.chi-siamo-organization-cards__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    flex-basis: 300px;
}

.chi-siamo-organization-cards__img {
    width: 100%;
}

.chi-siamo-organization-cards__item__text {
    display: flex;
    flex-direction: column;
}

.chi-siamo-organization-cards__item__text p {
    color: #666;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* Banners */

.cia-banners {
    width: 100%;
    margin: 0 24px;
    gap: 24px;
    overflow-x: scroll;
    padding: 0 24px;
}


.cia-banners {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.cia-banners::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.cia-banners-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: min-content;
    margin: 0 auto;
}


/* Django Video Plugin*/
.video-plugin__container {
    max-width: 700px;
}

.video-plugin__container:hover .video-card__divider {
    width: 100%;
}

.video-plugin {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
}

.video-plugin__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-plugin iframe,
.video-plugin video {
    width: 100%;
    height: 100%;
}

.video-plugin__poster {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Feedback plugin */

.feedback-cia-plugin {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    gap: 40px;
}

.feedback-cia-plugin__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.feedback-cia-plugin__button {
    padding: 24px;
    cursor: pointer;
}

.feedback-cia-plugin__button--right svg {
    transform: rotate(180deg);
}

.feedback-cia-plugin__item {
    display: none;
}

.feedback-cia-plugin__item--visible {
    display: block;
}

.feedback-cia-plugin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 900px;
}

.feedback-cia-plugin-item > * {
    margin: 0;
}

.feedback-cia-plugin-item__image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}

.feedback-cia-plugin-item__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-wrap: balance;
}

.feedback-cia-plugin-item__description {
    color: #666;
    font-size: 14px;
    text-align: center;
    text-wrap: balance;
}

/* Header link */

.header-link-plugin {
    border-bottom: 1px solid #E6E6E6;
}

.header-link-plugin__inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 11px 48px;
    justify-content: flex-end;
}

.header-link-plugin__inner a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    color: #509636;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-link-plugin__inner {
        padding: 11px 24px !important;
    }
}

/* Contact form */

.contact-form-plugin {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: "Libre Franklin", sans-serif;
}

.contact-form-plugin__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 75%;
    width: 100%;
}

.contact-form-plugin__header > * {
    margin: 0;
    color: #333333;
}

@media (max-width: 768px) {
    .contact-form-plugin__header {
        max-width: 100%;
    }
}

.contact-form-plugin__header h2 {
    font-size: 32px;
    font-weight: 600;
}

.contact-form-plugin__header-text {
    font-size: 24px;
}

.contact-form-plugin__header-note {
    font-size: 18px;
}

.contact-form-plugin__cta {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;

    color: #509636;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form-plugin__cta:hover {
    color: #509636;
}

.contact-form-plugin__body {
    display: flex;
    flex-direction: row;
    gap: 128px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
}

.contact-form-plugin__body p {
    flex: 1;
    font-size: 14px;
    color: #333333;
}

@media (max-width: 768px) {
    .contact-form-plugin__body {
        flex-direction: column;
        gap: 24px;
    }
}

.contact-form-plugin__form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-plugin__form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 24px;
}

.contact-form-plugin__form-group .contact-form-plugin__form-input {
    width: 100%;
}

.contact-form-plugin__form-input {
    padding: 14px 16px;
    border: 1px solid #CDCDCD;
    font-size: 16px;
    color: #333333;
    font-family: "Libre Franklin", sans-serif;
    background: #FFFFFF;
    outline: none;
}

.contact-form-plugin__form-input::placeholder {
    color: #b3b3b3;
}

.contact-form-plugin__select {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.contact-form-plugin__select p {
    font-size: 16px;
}

.contact-form-plugin__privacy {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.contact-form-plugin__privacy label {
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.contact-form-plugin__form-submit {
    padding: 19px;
    background: #FFFFFF;
    border: none;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #509636;
    cursor: pointer;
}

.contact-form-plugin__form-submit:hover {
    background: #036837;
    color: #FFFFFF;
}

.contact-form-plugin__input-with-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-plugin__input-with-text small {
    font-size: 8px;
    color: #000000;
}

.contact-form-plugin__privacy-link{
    color: #509636;
    text-decoration: none;
}

.filer_image{
    max-width: 100%;
}

.pagination-prev{
  transform: scaleX(-1);
}

.pagination{
  display: flex;
  align-items: center;
}

.pagination *{
  cursor: pointer;
}

.pagination-button{
  width: 28px;
  height: 28px;
}