.homepage_topic {
    padding: 200px 0 100px;
}

.topic_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 32px;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 138px) / 4);
}

.first_column {
    width: calc(2 * ( (100% - 138px) / 4) + 46px);
}

.second_column .topic:first-of-type {
    margin-bottom: 46px;
}

.topic {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: var(--white);
    box-sizing: border-box;
    padding: 25px;
    border-radius: 15px;
    min-height: 290px;
    height: 100%;
    box-shadow: 0px 3px 19px #0000000D;
}

.large_topic {
    background-color: var(--hour7-light-blue);
    color: var(--white);
}

.large_topic .item_visible .int_type {
    background-color: var(--white);
    color: var(--hour7-light-blue);
}

.large_topic .item_icon {
    background-color: var(--white);
    color: var(--hour7-light-blue);
}

.large_topic h3 {
    color: var(--white);
}

.tall_topic {
    background-color: var(--hour7-gold);
}

.tall_topic .item_icon {
    background-color: var(--white);
    color: var(--hour7-gold);
}