:root {
    --white: #FFFFFF;
    --black: #231F20;


    --marginDesktop: 40px;
    --marginMobile: 20px;
}

@font-face {
    font-family: 'Akkurat';
    src: url('../font/Akkurat Pro Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Optional but recommended for performance */
}

@font-face {
    font-family: 'Akkurat-Bold';
    src: url('../font/Akkurat Pro Bold.otf') format('opentype');
    font-weight: 600;
    font-style: bold;
    font-display: swap;
    /* Optional but recommended for performance */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-family: 'Akkurat', sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 20px;
    column-gap: 20px;
}

.marginBody {
    margin: var(--marginDesktop);
}

strong {
    font-family: 'Akkurat-Bold', sans-serif;
    font-weight: 600;
    font-style: bold;
}

p {
    font-size: 32px;
    text-wrap: pretty;
}

.p-small {
    font-size: 24px;
    text-wrap: pretty;
}

.p-small p {
    font-size: 24px;
    text-wrap: pretty;

}

.p-smaller {
    font-size: 20px;
    text-wrap: pretty;
}

.p-smaller p {
    font-size: 20px;
    text-wrap: pretty;
}

h1 {
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    text-wrap: pretty;
}

.h1 p {
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    text-wrap: pretty;
}

.h1 {
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    text-wrap: pretty;
}



.landing-white {
    fill: var(--white);
}

/*geral*/
main {
    margin-top: calc(100px + 24px + var(--marginDesktop) * 2) !important;
    min-height: calc(100vh - var(--marginDesktop) * 2);
}

.bodyIndex main {
    margin-top: 0px;
}

.arrow {
    opacity: 1;
    transition: opacity 0.5s ease;
    height: 50px;
}

.arrow:hover {
    opacity: 0.5;
    cursor: pointer;
}

.readMore:hover {
    cursor: pointer;
    text-decoration: underline;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}



/*Header*/
header {
    padding: var(--marginDesktop);
    position: fixed;
    top: 0;
    width: calc(100% - var(--marginDesktop) * 2);
    z-index: 100000;
    background-color: var(--white);
}

.headerIndex {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}

.headerIndex.scrolled {
    background-color: var(--white) !important;
}

.headerIndex:not(.scrolled) .header-logo-circuito,
.headerIndex:not(.scrolled) .header-nav p,
.headerIndex:not(.scrolled) .header-nav-2 p,
.headerIndex:not(.scrolled) a,
.headerIndex:not(.scrolled) .header-nav-mobile p {
    color: white;
}

.headerIndex:not(.scrolled) .header-nav-2 svg>* {
    stroke: white;
}


.headerIndex.scrolled .header-logo-circuito,
.headerIndex.scrolled .header-nav p,
.headerIndex.scrolled .header-nav-2 p,
.headerIndex.scrolled .header-nav-mobile p {
    color: var(--black);
}

.headerIndex.scrolled .header-nav-2 svg>* {
    stroke: var(--black);
}

.header-logo-circuito {
    transition: opacity 0.3s ease, color 0.3s ease;
}

.headerIndex:not(.scrolled) .header-logo-circuito {
    opacity: 0;
}

.headerIndex.scrolled .header-logo-circuito {
    opacity: 1;
}

.current-language {
    text-decoration: underline;
    text-decoration-color: var(--white);
    transition: text-decoration-color 0.3s ease;
}

.header-nav {
    grid-column: 5 / span 7;
    display: flex;
    gap: 30px;
    margin-right: 30px;
    align-items: center;
    justify-content: flex-end;
}

.header-nav li {
    list-style: none;
    font-size: 20px;
}

.header-nav-2 {
    grid-column: 12 / span 1;
    display: flex;
    gap: 30px;
    align-items: center;
    text-transform: uppercase;
}

.current-language {
    text-decoration: underline;
}

.header-logo {
    grid-column: 1 / span 3;
}

.header-logo a {
    text-decoration: none;
}

#header-searchIcon svg g {
    stroke: var(--black);
    stroke-width: 1px;
}

.header-nav-mobile {
    display: none;
}

.menuMobile-languagemenu {
    text-transform: uppercase;
}

#agenda-arrowPages {
    display: none;
}

#agenda-arrowPages.active {
    display: block;
}

.agenda-item-container {
    position: relative;
}

.newsSingle-carrossel img{
    position: absolute;
}

.newsSingle-main-imageContainer svg {
    width: 100%;
}

.newsSingle-main-imageContainer svg {
    width: 55px;
    height: auto;
     opacity: 100%;
     transition: opacity 0.5s ease;
}


.newsSingle-main-imageContainer svg:hover {
    opacity: 50%;
    cursor: pointer;
}

.newsSingle-main-imageContainer svg{
    width: 100%;
}

.newsSingle-carrossel{
    background-color: var(--black);
}

.carousel-item img, .carousel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: auto;
    z-index: 0;
}

.carousel-item iframe {
    height: 100%;
}

.carousel-item.active img, .carousel-item.active iframe {
    opacity: 1;
    z-index: 1;
}





/*footer*/
footer {
    margin: 150px var(--marginDesktop) 80px var(--marginDesktop);
}

.footer-col-1 svg {
    height: 50px;
    width: auto;
}

.footer-col-1 {
    grid-column: span 3;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    gap: 30px;
    row-gap: 0;
    flex-wrap: wrap;
}

.footer-col-2 {
    grid-column: span 2;
}

.footer-col-3 {
    grid-column: span 3;
}

.footer-col-1 svg path {
    fill: var(--black);
}



.footer-col-1 svg rect {
    fill: var(--black);
}


/*news single*/
.single-category {
    color: var(--blue);
    grid-column: span 5;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.single-category p {
    color: var(--c-two);
}

.newsSingle-header {
    row-gap: 0;
    margin-top: 100px;
}

.newsSingle-header p {
    margin: 35px 0;
}

.newsSingle-header hr {
    grid-column: 1 / span 12;
}

.newsSingle-highlight {
    margin-top: 70px;
}

.newsSingle-highlight-arrow {
    grid-column: 1 / span 4;
}


.newsSingle-highlight-title {
    grid-column: span 8;
}

.newsSingle-main-image{
    grid-column: 5 / span 8;
    margin-top: 50px;
}

.newsSingle-highlight-p {
    margin-top: 30px;
}

.newsSingle-main-details {
    grid-column: 1 / span 3;
}

.newsSingle-main-details-margin {
    margin-bottom: 1rem;
}

.newsSingle-main-text {
    grid-column: 5 / span 8;
}

.newsSingle-main hr {
    grid-column: span 12;
    margin: 70px 0;
    border: 0;
    border-bottom: 0.5px solid var(--black);
}

.newsSingle-main {
    margin-bottom: 70px;
    row-gap:0!important;
}

.newsSingle-main-imageContainer {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
}

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

.single-category .color_0 {
    color: var(--black);
}

.single-category .color_0 svg {
    fill: var(--black);
}

.single-category .color_1 {
    color: var(--c-one);
}

.single-category .color_1 svg {
    fill: var(--c-one);
}

.single-category .color_2 {
    color: var(--c-two);
}

.single-category .color_2 svg {
    fill: var(--c-two);
}

.newsSingle-main-image{
    position: relative;
}

.newsSingle-main-arrowContainer{
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    z-index: 3;
}

#newsSingle-carrosselLeft{
    position: absolute;
    width:10%;
    left:0;
    height: 100%;
    cursor: pointer;
     z-index: 2;
}

#newsSingle-carrosselRight{
    position: absolute;
     width:10%;
    right:0;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}



.newsSingle-main-arrow svg{
    width: 55px;
    height: auto;
    padding: var(--marginDesktop);
}

#newsSingle-main-arrowRight{
    transform: rotate(180deg);
}

/*BMA*/
.fixedMenu {
    position: fixed;
    color: var(--blue);
    display: flex;
    flex-direction: column;
}

.fixedMenu a {
    color: var(--blue);
}

.bma-textContainer {
    grid-column: 5 / span 8;
}

.bma-title {
    margin-bottom: 50px;
}

.bma-highlight {
    margin-bottom: 50px;
}

.section-bma {
    margin-top: 80px;
}

.bma-imageContainer {
    grid-column: 1 / span 12;
    aspect-ratio: 4 / 3;
}

.bma-imageContainer img {
    height: 100%;
    object-fit: cover;
}

.bma-imageContainer img {
    width: 100%;
}

.bma-divider {
    margin: 100px 0;
}

.bma-partner-p {
    margin: 35px 0;
}

.bma-partnersContainer {
    grid-column: 5 / span 8;
}

.bma-partnersContainer hr {
    width: 100%
}

.margin-bot {
    margin-bottom: 1em;
}

.bma-innersection {
    margin-top: 100px;
}

.teamList {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.teamList-50 {
    width: 50%;
}

/*index*/

.subsites-landing {
    width: 100%;
    margin-bottom: 50px;
    ;
}

.subsites-landing img {
    width: 100%;
}

.main-subsites {
    margin-top: 0;
}

#mainIndex-landing-desktop {
    display: block;
}

#mainIndex-landing-mobile {
    display: none;
}

#mainIndex-bottom-desktop {
    display: block;
    position:absolute;
}

#mainIndex-bottom-mobile {
    display: none; 
    position:absolute;
}

/*newsletter*/
.newsletter-title {
    grid-column: 1 / span 4;
}


/*landing*/
#myCanvas {
    width: 100vw;
    height: 100vh;
    display: block;
    background-color: var(--blue);
}

.body-no-scroll {
    overflow: hidden;
    height: 100vh;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 2s ease-out;
}


/*contactos*/
.contacts-title-container {
    grid-column: 1 / span 3;
}

.contacts-textContainer {
    grid-column: 4 / span 8;
}

.bma-textContainer-3 {
    grid-column: 4 / span 6;
}

/*agenda*/

#container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#container.active {
    opacity: 1;
}

.agendaTitle-filter-1 {
    grid-column: 7 / span 2;
}

.agendaTitle-filter-2 {
    grid-column: span 2;
}

.filter-item:hover,
.agendaTitle-filter-current:hover {
    cursor: pointer;
    text-decoration: underline;
}

.filter-item.active,
.agendaTitle-filter-current.active {
    text-decoration: underline;
}

.agendaTitle-pdf {
    grid-column: span 2;
}

.agenda-header {
    grid-column: span 12;
    padding: 20px var(--marginDesktop);
}

.agenda-header p {
    text-transform: lowercase;
}

.prog-cont {
    background-color: var(--black);
    color: var(--white);
}

/* Even elements */
.monthagenda.even {
    background-color: var(--c-two);
    color: var(--white);
}

/* Odd elements */
.monthagenda.odd {
    background-color: var(--c-one);
    color: var(--white);
}

.monthagenda.even {
    background-color: var(--c-two);
}

.monthagenda.odd {
    background-color: var(--c-one);
}

.agenda {
    margin-top: 100px;
}


.agenda-index {
    margin-top: 50px;
}

.agenda-item {
    grid-column: span 12;
}

.agenda-item {
    margin: 0 var(--marginDesktop);
    position: relative;
    row-gap: 0;
    padding: 20px 0;
}

.agenda-index .agenda-item:hover .agenda-data {
    text-decoration: none !important;
}

.agenda-data {
    grid-column: span 2;
    text-transform: lowercase;
}

.agenda-titulo {
    grid-column: span 4;
}

.agenda-tipo {
    grid-column: span 2;
    word-break: break-word;
}

.agenda-local {
    grid-column: span 2;
    word-break: break-word;
}

.agenda-categoria {
    grid-column: span 2;
}

.agenda-hr {
    grid-column: 1 / span 12;
    margin: 0 var(--marginDesktop);
}

.agenda-item {
    margin: 0 var(--marginDesktop);
    position: relative;
}

.agenda-index a {
    grid-column: 1 / span 12;
}


.agenda-item-container{
     grid-column: 1 / span 12;
}

.agenda-index a:hover .agenda-titulo {
    text-decoration: underline !important;
}

.agenda-index a:hover {
    text-decoration: none;
}

.agenda-footer {
    margin: var(--marginDesktop);
    grid-column: 1 / span 12;
}

.agenda a {
    grid-column: 1 / span 12;
}

.agenda-category-br {
    display: none;
}

.agenda-footer svg path {
    fill: var(--black);
}

.agenda-arrow {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.agenda-categoria-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.agenda-categoria-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.agenda-item-img {
    grid-column: 1 / span 12;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 999
}

.agenda-item-img img {
    grid-column: 8/ span 3;
    width: 100%;
    height: auto;
}

.agenda-item:hover {
    cursor: pointer;
}

.agenda-item:hover .agenda-item-img {
    opacity: 1;
}

.agenda a:hover {
    text-decoration: none !important;
}

.agenda a:hover .agenda-titulo {
    text-decoration: underline;
}

.single-date {
    text-transform: lowercase;
}


/*index*/
.mainIndex {
    margin: 0 !important;
}

.mainIndex-landing {
    width: 100%;
    display: block;
    background-color: var(--c-two);
}

.mainIndex-landing svg {
    width: 100%;
}

.indexHightlight {
    padding: 50px var(--marginDesktop) 150px var(--marginDesktop);
    background-color: var(--c-one);
    color: var(--white);
}

.index-section {
    margin-top: 150px;
}

.index-title {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.index-category-container {
    grid-column: 1 / span 12;
    margin-top: 50px;
}

.index-category {
    padding: var(--marginDesktop);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-category a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.index-category svg {
    width: 50px;
    height: 100%;
}




#index-category-1,
#index-category-1 svg path {
    background-color: var(--c-two);
    color: var(--white);
    fill: var(--white);
}

#index-category-1 .index-category-title,
#index-category-1 a,
.index-category-1-a {
    color: var(--white);
}

#index-category-1 .svghover svg path {
    fill: var(--c-one) !important;
}

#index-category-2,
#index-category-2 svg path {
    background-color: var(--white);
    color: var(--c-two);
    fill: var(--c-two);
}

#index-category-2 .index-category-title,
#index-category-2 a,
.index-category-2-a {
    color: var(--c-two);
}

#index-category-2 .svghover svg path {
    fill: var(--c-one) !important;
}

#index-category-3,
#index-category-3 svg path {
    background-color: var(--black);
    color: var(--c-one);
    fill: var(--c-one);
}

#index-category-3 .index-category-title,
#index-category-3 a,
.index-category-3-a {
    color: var(--c-one);
}

#index-category-3 .svghover svg path {
    fill: var(--c-one) !important;
}

#index-category-4,
#index-category-4 svg path {
    background-color: var(--white);
    color: var(--black);
    fill: var(--black);
}

#index-category-4 .index-category-title,
#index-category-4 a,
.index-category-4-a {
    color: var(--black);
}

#index-category-4 .svghover svg path {
    fill: var(--c-two) !important;
}

#index-category-5,
#index-category-5 svg path {
    background-color: var(--c-one);
    color: var(--white);
    fill: var(--white);
}

#index-category-5 .index-category-title,
#index-category-5 a,
.index-category-5-a {
    color: var(--white);
}

#index-category-5 .svghover svg path {
    fill: var(--c-two) !important;
}

.index-category-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.index-category {
    position: relative;
}

.landing-cor1 {
    fill: var(--c-two);
}

.landing-cor2 {
    fill: var(--c-one);
}

.svghover {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.index-category:hover {
    cursor: pointer;
}

.index-category:hover .svghover {
    opacity: 1;
}

.svghover svg {
    width: 300px;
}

.svghover svg path {
    fill: var(--c-one) !important;
}

.agenda-bot {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    align-items: center;
    color: var(--black);
}

.agenda-bot p {
    color: var(--black);
}

.index-main-imageContainer{
            position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
}

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





/*newsletter*/


/*Privacy*/
.privacy-content {
    grid-column: 5 / span 8;
}

.privacy-content .privacy-title {
    margin-bottom: 70px;
}

.privacy-content .privacy-title {
    margin-bottom: 70px;
}

.privacy-content-p p {
    margin-bottom: 1rem;
}

.cookie-banner {
    padding: var(--marginDesktop);
    background-color: rgba(255, 255, 255, 0.9);
    /* White with 80% opacity */
    color: var(--black);


    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - var(--marginDesktop) * 2);

    z-index: 1000;
}

.cookie-banner a {
    color: var(--blue);
}

.button-cookies {
    color: var(--blue);
}

.cookie-banner-1 {
    grid-column: 1 / span 9;

}

#cookie-banner {
    display: none;
}

.cookie-banner-2 {
    grid-column: span 3;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cookie-banner-3 {
    grid-column: span 2;
}

.button-cookies {
    cursor: pointer;
}

/*menu mobile*/
.menuContainer-mobile {
    display: none;
}




/*newsletter*/
.newsletter-title {
    grid-column: 1 / span 6;
}


.newsletter-title {
    grid-column: 1 / span 4;
}

.newsletter {
    grid-column: 5 / span 8;
    margin-top: 100px;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
}

.newsletter-input {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 100px;
}

.newsletter-checkbox label {
    font-size: 24px;
    line-height: calc(24px + 5px);
}

.input-field {
    border: none;
    border-bottom: 1px solid black;
    font-size: 24px;
    line-height: calc(24px + 5px);
    padding-bottom: 20px;
    color: var(--black);
}

.input-field::placeholder {
    font-size: 24px;
    line-height: calc(24px + 5px);
    color: var(--black);
}

.input-field:focus {
    outline: none;
}

.eg-embed-feHe1RJx {
    margin-top: 50px;
    grid-column: 5 / span 8;
}

.newsletter-checkbox {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.newsletter-submit {
    margin-top: 100px;
}

.newsletter-submit input {
    background-color: transparent;
    border: 0;
    padding: 0;
    font-size: 24px;
    line-height: calc(24px + 5px);
}


.newsletter-checkbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-checkbox label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 33px;
    height: 33px;
    margin: 0;
    border: 1px solid var(--black);
    position: relative;
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"]::before {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.813 25.813"><g transform="translate(-663.593 -809.594)"><path d="M1536.317-8205v35.506" transform="translate(-6199.098 5525.418) rotate(45)" fill="none" stroke="%23231f20" stroke-width="1"/><path d="M1536.317-8205v35.506" transform="translate(-4026.417 -6053.098) rotate(135)" fill="none" stroke="%23231f20" stroke-width="1"/></g></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

.newsletter-checkbox input[type="checkbox"]:checked::before {
    display: block;
}

.newsletter-checkbox input[type="checkbox"]:checked {
    border-color: var(--black);
}


/*search*/
#searchForm {
    width: 100%;
}

.search-suggestions {
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    margin-top: 20px;
    display: none;
}

.search-suggestion-item {
    padding: 15px 0;
    font-size: 24px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-suggestion-item:hover {
    opacity: 0.7;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.searchPage {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - var(--marginDesktop) * 2);
    height: 100%;
    background-color: var(--c-one);
    z-index: 100;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--marginDesktop);
    flex-direction: column;

    transform: translateY(-100%);
    transition: transform 1s ease-in-out;
    overflow: hidden;
    z-index: 1000000;
}

.searchPage.active {
    transform: translateY(0);
}

.search-container {
    width: calc(100%);
    display: flex;
    justify-content: space-between;
    border-bottom: 20px;

}

.search-container button {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.search-container input {
    width: 100%;
}

.search-input {
    background-color: transparent;
    border: none;
}

.search-inputHr hr {
    width: 100%;
    border: 0.5px solid var(--white);
}

.search-inputHr {
    width: 100%;
    margin-top: 10px;
}

.search-input {
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    color: var(--white);

}

.search-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.search-input::placeholder {
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    color: var(--white);
    opacity: 50%;
}

.arrow-search {
    height: 50px;
}

.searchPage-header {
    position: absolute;
    top: var(--marginDesktop);
    right: var(--marginDesktop);
}

.newsTitle-title-search {
    grid-column: span 7;
    margin: 0 var(--marginDesktop);
}

#openSearch-menu {
    width: auto;
    height: 25px;
}

#openSearch-menu:hover {
    cursor: pointer;
}

#closeSearch-menu:hover {
    cursor: pointer;
}

.newsSingle-main-details p{
    min-height: 1em;
}

/**/
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 3s ease-out;
}

/*projects*/
.project-knowmore {
    margin-top: 25px;
}

.project-title {
    margin-top: 40px;
}

.project-item {
    grid-column: span 3;
}

.project-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 1s ease;

}

.project-item:hover .project-img img {
    transform: scale(1.05);
}

.project-item a:hover {
    text-decoration: none !important;
}

.project-item a:hover .project-knowmore {
    text-decoration: underline !important;
}

.projectGrid {
    row-gap: 40px;
}

.menu-container ul {
    display: flex;
    gap: 30px;
}

/*temp*/
#circuito-logo-homepage {
    height: 150px;
}

.temp-logos {
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-bottom: 100px;
}

.mainTemp {
    height: calc(100vh - var(--marginDesktop) * 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     margin-top: 0!important;
}

.bodyTemp{
    background-color:  #94e0a8;
}

.temp-text {
    text-align: center;
}


/*PC*/
@media only screen and (max-width: 1600px) {
    p {
        font-size: 28px;
        line-height: calc(28px + 5px);
        text-wrap: pretty;
    }

    .p-small {
        font-size: 22px;
        line-height: calc(22px + 5px);

    }

    .p-small p {
        font-size: 22px;
        line-height: calc(22px + 5px);

    }

    .p-smaller {
        font-size: 18px;
        line-height: calc(18px + 5px);
    }

    .p-smaller p {
        font-size: 18px;
        line-height: calc(18px + 5px);
    }

    h1 {
        font-size: 45px;
        line-height: calc(45px + 5px);
        font-weight: 400;
        font-style: normal;
    }

    .h1 {
        font-size: 45px;
        line-height: calc(45px + 5px);
        font-weight: 400;
        font-style: normal;
    }

    .h1 p {
        font-size: 48px;
        line-height: calc(48px + 5px);
        font-weight: 400;
        font-style: normal;
    }

    .arrow {
        height: 20px;
    }

    /*Header*/
    .header-logo svg {
        height: 50px;
    }

    /*Footer*/
    #bma-logo {
        height: 45px;
    }

    #unesco-logo {
        height: 45px;
    }

    .footer-col-1 {
        grid-column: span 3;
        display: flex;
        gap: 30px;
    }

    /*Arrow*/
    .index-news-footer svg {
        height: 40px;
    }

    .news-footer svg {
        height: 40px;
    }


    .arrow-search {
        height: 40px;
    }

    .arrow {
        height: 40px;
    }


}

/*Tablet+Mobile*/
@media only screen and (max-width: 960px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        row-gap: 20px;
        column-gap: 10px;
    }

    strong {
        font-family: 'Akkurat-Bold', sans-serif;
        font-weight: 600;
        font-style: bold;
    }

    .strong {
        font-family: 'Akkurat-Bold', sans-serif;
        font-weight: 600;
        font-style: bold;
    }

    p {
        font-size: 20px;
        line-height: calc(20px + 5px);
        text-wrap: pretty;
    }

    .p-small {
        font-size: 16px;
        line-height: calc(20px + 3px);
    }

    .p-small p {
        font-size: 16px;
        line-height: calc(20px + 3px);
    }

    .p-smaller {
        font-size: 16px;
        line-height: calc(16px + 3px);
    }

    .p-smaller p {
        font-size: 16px;
        line-height: calc(16px + 3px);
    }

    h1 {
        font-size: 24px;
        line-height: calc(24px + 5px);
        font-weight: 400;
        font-style: normal;
    }

    .h1 {
        font-size: 24px;
        line-height: calc(24px + 5px);
        font-weight: 400;
        font-style: normal;
    }

    .h1 p {
        font-size: 24px;
        line-height: calc(24px + 5px);
        font-weight: 400;
        font-style: normal;
    }


    .mobile-none {
        display: none;
    }

    .marginBody {
        margin: var(--marginMobile);
    }

    .arrow {
        height: 20px;
    }

    /*Header*/
    header {
        padding: 30px var(--marginMobile);
        width: calc(100% - var(--marginMobile) * 2);
    }

    .header-nav li {
        display: none;
    }

    .header-nav-2 {
        grid-column: 5 / span 1;
    }

    .header-nav {
        display: none;
    }

    .header-nav-2 {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .mobile-none {
        display: none;
    }

    .header-nav-mobile {
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: flex-end;
    }

    /*Index*/
    #mainIndex-landing-desktop {
        display: none;
    }

    #mainIndex-landing-mobile {
        display: block;
    }

    #mainIndex-bottom-desktop {
        display: none;
    }

    #mainIndex-bottom-mobile {
        display: block;
    }

    .imageLanding-circuito {
        aspect-ratio: 3 / 4;
        height: 100%;
        object-fit: cover;
    }

    .indexHightlight {
        padding: 20px var(--marginMobile) 90px var(--marginMobile);
        background-color: var(--c-one);
        color: var(--white);
    }

    .index-section {
        margin-top: 100px;
    }

    .index-title {
        grid-column: span 6;
    }

    .agenda-index {
        margin-top: 20px;
    }

    .agenda-header {
        grid-column: span 6;
        padding: var(--marginMobile);
    }

    .agenda-data {
        grid-column: span 6;
    }

    .agenda-titulo {
        grid-column: span 6;
        margin: 5px 0;
    }

    .agenda-local {
        grid-column: span 6;
    }

    .index-category-container {
        grid-column: 1 / span 6;
        margin-top: 50px;
    }

    .svghover svg {
        width: 150px;
    }

    .index-title {
        gap: 50px;
    }

    .agenda a {
        grid-column: 1 / span 6;
    }

    .agenda-index a {
        grid-column: 1 / span 6;
    }

    /*footer*/
    .footer-col-2 {
        grid-column: span 4;
    }


    .footer-col-3 {
        grid-column: span 4;
    }

    #bma-logo {
        height: 30px;
    }

    #unesco-logo {
        height: 30px;
    }

    .footer-col-1 {
        grid-column: 5 / span 2;
        gap: 20px;
        align-items: flex-start;
        order: 2;
    }

    footer {
        margin: 100px var(--marginMobile) 50px var(--marginMobile);
    }


    /*Agenda*/
    .agendaTitle-title {
        grid-column: span 3;
    }

    .agendaTitle-filter-1 {
        grid-column: 4 / span 3;
    }

    .agendaTitle-filter-2 {
        grid-column: 4 / span 3;
    }

    .agendaTitle-pdf {
        grid-column: 4 / span 3;
    }

    .agenda-header {
        grid-column: 1 / span 6;
        padding: var(--marginMobile);
    }

    .agendaTitle {
        row-gap: 0;
    }

    .agendaTitle-pdf {
        margin-top: 1em;
    }

    .agenda {
        row-gap: 10px;
    }

    .agenda-category-br {
        display: none !important;
    }

    .agenda-item {
        grid-column: 1 / span 6;
        margin: 0 var(--marginMobile);
        row-gap: 0;
        padding: 10px 0;
    }

    .agenda-item-container{
     grid-column: 1 / span 6;
     row-gap:10px;
     order: 2;
}

    .agenda-hr {
        grid-column: 1 / span 6;
        margin: 0 var(--marginMobile);
    }

    .agenda-footer {
        margin: var(--marginMobile);
        grid-column: 1 / span 6;
    }

    .agenda-titulo p {
        font-size: 20px;
        line-height: calc(20px + 3px);
    }

    .agenda-data {
        grid-column: span 5;
    }

    .agenda-titulo {
        grid-column: span 5;
    }

    .agenda-tipo {
        grid-column: span 5;
    }

    .agenda-local {
        grid-column: span 5;
    }

    .agenda-categoria {
        position: absolute;
        top: 10px;
        grid-column: 6 / span 1;
        right: 0;
    }

        .agenda-item-img {
        order: 1;
        display: block;
        opacity: 1;
        position: inherit;
            grid-column: 1 / span 6;
            margin-bottom: 10px;
    }

    .agenda-categoria p {
        display: flex;
        gap: 5px;
    }

    .term-name {
        display: none;
    }

    /*single*/
    .single-category {
        grid-column: span 3;
        justify-content: flex-end;
    }

    .newsSingle-header hr {
        grid-column: 1 / span 6;
    }

    .newsSingle-data {
        grid-column: span 3;
    }

    .newsSingle-header p {
        margin: 0;
    }

    .newsSingle-highlight-arrow {
        grid-column: 1 / span 6;
    }

    .newsSingle-highlight {
        margin-top: 40px;
    }

    .newsSingle-highlight-title {
        margin-top: 20px;
    }

    .newsSingle-highlight-p {
        margin-top: 40px;
    }

    .newsSingle-main hr {
        grid-column: span 6;
        margin: 40px 0;
    }

    .newsSingle-main {
        margin-bottom: 40px;
    }

    .newsSingle-highlight-title{
grid-column: span 6;
    }

    

    .newsSingle-main-imageContainer {
        position: relative;
        aspect-ratio: 16 / 9;
    }

    .newsSingle-main-details {
        grid-column: 1 / span 6;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .newsSingle-main-text {
        grid-column: span 6;
    }

.newsSingle-main-image {
        grid-column: 1 / span 6;
        margin: 10px 0 10px 0;
    }

    /*privacy*/
    .privacy-content {
        grid-column: 1 / span 6;
    }

    .privacy-title {
        margin-top: 20px;
    }

    .privacy-content .privacy-title {
        margin-bottom: 40px;
    }


.newsSingle-main-arrow svg{
    width: 25px;
    padding: 15px;
}


    /*privacy*/
    .privacy-content {
        grid-column: 1 / span 6;
    }

    .privacy-title {
        margin-top: 20px;
    }

    .privacy-content .privacy-title {
        margin-bottom: 40px;
    }

    /*Cookie*/

    .cookie-banner {
        padding: calc(var(--marginDesktop) / 2) var(--marginDesktop);

    }

    .cookie-banner-1 {
        grid-column: 1 / span 6;
    }

    .cookie-banner-2 {
        grid-column: 1 / span 6;
        justify-content: flex-start;
    }

    .cookie-banner {
        gap: 10px;
    }

    /*Contacts*/
    .contacts-title-container {
        grid-column: 1 / span 6;
    }

    .contacts-textContainer {
        grid-column: 1 /  span 6;
    }

    .bma-divider {
        margin: 50px 0;
    }

    .bma-textContainer-3 {
        grid-column: span 6;
    }

    .section-bma {
        margin-top: 50px;
    }

    .bma-imageContainer {
        grid-column: 1 / span 6;
        aspect-ratio: 3 / 4;
    }

    /*Newsletter*/
    .bma-textContainer {
        grid-column: 1 / span 6;
    }

    .newsletter-title {
        grid-column: 1 / span 6;
    }

    .newsletter {
        grid-column: 1 / span 6;
        margin-top: 50px;
    }

    .newsletter-checkbox label {
        font-size: 16px;
        line-height: calc(16px + 5px);
    }

    .input-field {
        font-size: 16px;
        line-height: calc(16px + 5px);
        padding-bottom: 10px;
    }

    .input-field::placeholder {
        font-size: 16px;
        line-height: calc(16px + 5px);
    }

    .newsletter-submit input {
        font-size: 16px;
        line-height: calc(16px + 5px);
    }

    .newsletter-input {
        gap: 30px;
        margin-bottom: 50px;
    }

    .newsletter-submit {
        margin-top: 50px;
    }

    .newsletter-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .newsletter-checkbox label {
        gap: 10px;
    }

    /*Menu Mobile*/
    /*menu*/
    .menuContainer-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - var(--marginDesktop) * 2);
        height: 100%;
        background-color: var(--c-one);
        z-index: 100;
        color: var(--white);
        padding: 0 var(--marginDesktop);
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform 1s ease-in-out;
        overflow: hidden;
        z-index: 10000000;
        display: flex;
        justify-content: center;
        list-style: none;
    }

    .menuMobile-languagemenu {
        position: absolute;
        bottom: var(--marginDesktop);
        right: var(--marginDesktop);
        display: flex;
        gap: 15px;
    }

    .menuMobile-languagemenu a {
        color: var(--white);
    }

    .custom-menu-class {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        flex-direction: column;
        list-style: none;
    }

    .custom-menu-class li {
        font-size: 24px;
    }

    .custom-menu-class li a {
        color: var(--white);
    }

    .menuContainer-mobile.active {
        transform: translateY(0);
    }

    #closeMenu-menu {
        cursor: pointer;
    }

    #Menu-Button {
        cursor: pointer;
    }

    #openSearch-menu {
        height: 1rem;
    }

    /*search*/
    /**/
    .search-input {
        font-size: 24px;

    }


    .search-input::placeholder {
        font-size: 24px;
        ;
        opacity: 50%;
    }

    .arrow-search {
        height: 20px;
    }

    /*projects*/
    .project-knowmore {
        margin-top: 10px;
    }

    .project-title {
        margin-top: 20px;
    }


    /*temp*/
    .temp-logos {
        flex-direction: row;
        gap: 50px;
        margin-bottom: 70px;
    }

    #circuito-logo-homepage {
        height: 100px;
    }

}