.two-columns {
    column-count: 2;
}

.chain-link {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #414042;
    display: block;
    padding-left: 24px;
    color: #414042;
    transition: all ease-in-out .3s;
}

.chain-link:hover {
    color: #001C43;
}

.chain-link::before,
.chain-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    display: block;
    width: 16px;
    height: 16px;
    transition: all ease-in-out .3s;
}

.chain-link::before {
    opacity: 1;
    background: url('/images/chain-link.svg') center/contain no-repeat;
}

.chain-link::after {
    opacity:0;
    background: url('/images/chain-link-blue.svg') center/contain no-repeat;
}

.chain-link:hover::before {
    opacity: 0;
}

.chain-link:hover::after {
    opacity:1;
}

hr {
    border-bottom: 1px dashed #6D6E71;
    background: transparent;
    margin: 32px 0 !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.topic-title{
    padding: 5px 24px;
    display: block;
    background: #E4F7FF;
    border-radius: 0px 5px;
    margin-bottom: 16px;
}