.resources-text {
    position: relative;
    color: #262626;
}

.download-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 13px 0;
    border-bottom: 1px solid var( --color-green );
    text-align: center;
}

.download-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.download-info {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    font-family: var( --font-family-primary ); 
    padding-bottom: 5px;
}

.download-link {
    font-size: 20px;
    font-weight: 500;
    color: var( --color-green );
    font-family: var( --font-family-secondary );
    letter-spacing: 0.03em;
}

.download-link i {
    font-size: 12px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 5px 2px;
}

.download-wrap {
    padding-top: 20px;
}

@media (min-width: 768px) {
    .download-col {
        justify-content: space-between;
        flex-direction: row;
        padding: 7px 0;
        text-align: left;
    }
    
}

@media (min-width: 1200px) {
    .resources-text .row {
        align-items: center;
    }

    .download-col {
        padding: 6px 0;
    }
    
    .download-wrap {
        padding-top: 0;
        padding-left: 45px;
    }

}