/* Media Press Room */

.media-press-container {
    background-color: white;
    padding: 120px 0;
    padding-bottom: 20px;
    min-height: 660px;
}

.media-press {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    box-sizing: border-box;
}

.media-press-post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.media-press-post-header h2 {
    color: #24135F;
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    line-height: 72px;
}

.media-press-post-header p {
    color: #24135F;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: right;
    display: flex;
    align-items: center;
}

.media-press-post {
    display: flex;
    flex-wrap: wrap;
}

.media-press-image {
    height: 280px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.media-press-image img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.media-press-image img:hover {
    transform: scale(1.05);
}

.media-press-post > div {
    width: 33.333%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
}

.media-press-post a {
    text-decoration: none;
}

.media-press-post h3 {
    color: #24135F;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 40px;
}

.media-press-post p {
    color: #24135F;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    margin-top: 24px;
    line-height: 24px;
}

.media-press-post label {
    color: #0072cf;
    padding-top: 5px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    transition: all 300ms ease-in-out;
}

.media-press-post label:hover{
    color: #24135F;
}

.animate__animated {
    opacity: 0;
}

.media-press-others-container {
    overflow: hidden;
    width: 100%;
    background: #fafafa;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
}

.media-press-others-header {
    color: #24135F;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 5px;
    margin-top: auto;
}

.media-press-others {
    display: flex;
    height: 50px;
    width: fit-content;
    margin: auto;
    animation: move 8s linear infinite;
}

.media-press-others.stopped {
    animation: none;
    margin: initial;
}

.media-press-others.stopped > a:last-of-type {
    border: none;
}

@keyframes move {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.media-press-others > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #a4a4a4;
}

.media-press-others > a > img:hover {
    transform: scale(1.05);
}

.media-press-others > a > img {
    width: 100px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

@media (max-width: 1500px) {
    .media-press-post-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 1100px) {
    .media-press-post > div {
        width: 50%;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .media-press-post > div {
        width: 100%;
    }

    .media-press-post-header {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .media-press-post-header p {
        text-align: left;
        line-height: 32px;
    }

    .media-press-container {
        padding: 100px 0;
    }

    .media-press {
        padding: 0 20px;
    }
}

/*DROPDOWN DE NOTICIAS DE FIS 2024*/
.news-dropdown__2024{
    width: 100%;
    margin-top: 32px;
}

.menu-dropdown__container{
    padding: 10px 20px;
}

.dropdown-list{
    list-style: none;
}

.dropdown-list p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    border-radius: 6px;
    background-color: #24135F;
    color: white;
    padding: 20px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 400ms ease-in-out;
}


.dropdown-link-expand-arrow{
    width: 30px;
    transition: transform 0.3s ease;
}

.dropdown-list p:hover{
    background-color: #0072cf;
}

.menu-dropdown{
    padding-left: 0px;
}

.dropdown-item__list{
    position: relative;
    display: flex;
    height: 0;
    opacity: 0;
    box-shadow: #00000011 0 4px 20px 0;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 6px;
    transition: all 0.5s ease-in-out;
}

.dropdown-list .dropdown-item__list.hover {
    height: 710px;
    opacity: 1;
}

.list-item{
    list-style: none;
    display: none;
}

.list-item.hover{
    display: block;
}

.list-item a{
    width: 80%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    color: black;
    font-weight: 300;
    font-size: 16px;
    transition: all 300ms ease-in-out;
}

.list-item a:hover{
    color: #24135F;
}

.dropdown-container-close {
    display: flex;
    width: 24px;
    opacity: 0.3;
    position: absolute;
    right: 48px;
    top: 44px;
    border-radius: 100px;
    cursor: pointer;
}

.dropdown__line{
    width: 100%;
    opacity: 0.3;
    background-color: black;
}

@media (max-width: 770px){
    .dropdown-list .dropdown-item__list.hover {
        height: 610px;
    }

    .list-item a{
        padding: 12px;
    }
}

@media (max-width: 500px){
    .dropdown-list .dropdown-item__list.hover {
        height: 676px;
    }

    .list-item a {
        width: 70%;
        font-size: 13px;
    }

    .dropdown-container-close {
        right: 15px;
        top: 12px;
    }
}

@media (max-width: 385px){
    .dropdown-item__list{
        gap: 0px;
    }

    .dropdown-list .dropdown-item__list.hover {
        height: 578px;
    }

    .list-item a {
        padding: 10px;
    }
}