:root {
    --fc-bl: #0a0a0a;
    --fc-w: #fff;
    --fc-b: #4e73df;
    --bg-w: #fff;
    --bg-b: #0a0a0a;
    --padd-10: 40px;
    --weight: 600;
}

body {
    color: var(--fc-b);
    /* background-color: #4e73df; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    max-width: 1200px;
    padding: 15px 29px 15px 29px;
    height: fit-content;
    background-color: var(--bg-w);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.header img {
    min-width: 100px;
    height: 50px;
}

.icon-menu {
    font-size: 1.4rem;
    color: var(--fc-b);
    margin-top: 28px;
}

.f-weight {
    font-weight: var(--weight);
}

.h-h1 {
    width: fit-content;
}

.title-2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
}

.main-content {
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    padding: 50px 0px 20px 0px;
}

.articles {
    background-color: var(--bg-w);
    padding: var(--padd-10);
    color: var(--fc-bl);
}

.articles-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.container-img-bcra {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding: var(--padd-10);
    padding-top: 0px;
}

.container-img-bcra>img {
    width: 275px;
    height: 345px;
}

img:nth-child(4),
img:nth-child(5) {
    flex-basis: calc(275px - 0px);
}

.menu-oculto {
    display: none;
}

.menu-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translate(-5.7%, 68%);
    position: absolute;
    width: 100%;
    height: fit-content;
    background: #ffffff99;
    backdrop-filter: blur(4px);
}

#menu-mobile>a {
    text-decoration: none;
    color: var(--fc-bl);
}

#menu-mobile {
    color: var(--fc-bl);
}

#menu-desktop {
    display: none;
}


/* Estilos generales para los encabezados del acordeón */
.accordion-header {
    cursor: pointer;
    padding: 10px;
    background-color: #FFFFFF
  }

  /* Estilos para el contenido del acordeón */
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

@media screen and (min-width: 900px) {
    .main-content {
        padding: 65px 0px 20px 0px;
    }

    .header {
        align-items: flex-end;
    }

    #button-toggle {
        display: none;
    }

    #menu-desktop {
        display: flex;
    }

    .menu-desktop {
        min-width: 575px;
        justify-content: space-around;
    }

    .menu-desktop a {
        text-decoration: none;
        transition: 0.8ms;
    }

    .menu-desktop a:hover {
        text-decoration: underline;
        transition: 0.8ms;
    }

    .header img {
        height: 70px;
    }
}