.sitemap-section {
    padding: 50px 0;
}

/* Base Row */
.sitemap-row {
    display: flex;
    flex-wrap: wrap;
}

/* Desktop: EXACT 4 COLUMNS */
.sitemap-col {
    width: 25%;
    padding: 0 20px 30px;
    box-sizing: border-box;
}

/* Headings */
.sitemap-col h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Lists */
.sitemap-col ul {
    list-style: none;
    padding: 0;
}

.sitemap-col ul li {
    margin-bottom: 8px;
    padding: 5px 0;                     /* space for border */
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.sitemap-col ul li a {
    color: #000;
    text-decoration: none;
    transition: .2s ease;
}

.sitemap-col ul li {
    border: 2px solid #2d6a4f; 
	border-radius: 10px;
	text-align:center;
}

.sitemap-col ul li a:hover{
    color: #2d6a4f;
}

/* Tablet: 2 Columns */
@media (max-width: 992px) {
    .sitemap-col {
        width: 50%;
    }
}

/* Mobile: 1 Column */
@media (max-width: 600px) {
    .sitemap-col {
        width: 100%;
    }
}
