.container.catalog-section {
    position: relative;
    margin-top: 30px;
}

.download-catalog-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 1px solid #000;
}

.download-catalog-title {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 1.6875rem;
    line-height: 1.5625rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.download-catalog-title h3 {
    margin: 0;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.download-catalog-box {
    text-align: center;
    /*margin-top: 7px;*/
    padding: 20px;
    border-right: 1px solid black;
    border-top: none;
    border-left: none;
    width: 33.3333%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

#right {
    border-right: none;
}

.download-title-box {
    text-align: left;
    padding-left: 20px;
}

.download-catalog-box-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.download-catalog-box-image {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.download-catalog-box-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.download-catalog-box-link {
    margin-top: auto;
    padding-top: 5px;
    text-align: center;
}

.download-catalog-box-link a {
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 8px;
}

.download-catalog-box-link a:hover {
    background-color: black;
    color: white;
}

@media (max-width: 768px) {
    .download-catalog-content {
        border-bottom: 0 none;
    }

    .download-catalog-box {
        width: 100%;
        border-left: 0 none;
        border-right: 0 none;
        /*border-bottom: 1px solid black;*/
    }

    .download-catalog-box:last-of-type {
        border-bottom: 0 none;
    }

    #right {
        border-right: 0 none;
    }
}