/*********************** Research ************************/
.research_opening {
    text-align: center;
    margin-top: 60px;
}

.research_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 45px
}

.research_justify {
    justify-content: center;
}

.research_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 35px;
    box-sizing: border-box;
    margin-top: 45px;
}

.research_card h3,
.research_card h4 {
    margin: 0;
}

.research_card h4 {
    color: var(--grey);
    font-family: museo-sans-rounded, sans-serif;
    font-size: 18px;
}

.square_icon,
.research_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0px 3px 5px #00000014;
    color: var(--dark-blue);
    cursor: pointer;
    overflow: hidden;
}

.research_social {
    display: flex;
    flex-wrap: wrap;
}

.research_social a {
    margin-bottom: 0;
    background-color: var(--dark-blue);
    color: var(--white);
    margin-right: 15px;
    margin-top: 20px;
}

.research_social a:last-of-type {
    margin-right: 0;
}

.list_dummy_card {
    height: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.research_opening .button {
    width: max-content;
    margin: 0 auto;
}

.blog_info h3 {
    margin-bottom: 15px;
}

@media (max-width: 1330px) {
    .research_card {
        width: 48%;
    }

    .research_justify .research_card {
        width: 46%;
    }
}

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

    .research_card,
    .research_justify .research_card {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .research_opening .button {
        width: 100%;
    }
}