.purpose-origin {
    max-width: 1024px;
    margin: auto;
    border-radius: 5px;
}

.purpose-origin ol {
    margin: 0
}

.nav-cards {
    padding: 30px 0;
    width: 700px;
    margin: auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
}

.nav-card {
    width: 200px;
    height: 225px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    border-radius: 5px;
}

.nav-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
}

.nav-card-body {
    padding: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-card-img {
    width: 100%;
    border-radius: 5px;
}

.nav-card-fill {
    flex-grow: 1;
}

.nav-card-caption {
    padding-bottom: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.contacts {
    padding: 30px 0;
}

.contacts-table {
    margin: auto;
    border-spacing: 0px;
}

.contacts-table td {
    text-align: left;
    padding: 5px 7px 5px 7px;
}

.contacts-table td:not(:last-child) {
    padding-right: 40px;
}

.contacts-table th {
  background-color: #6B8794;
  color: #FFFFFF;
}

.contacts-table tr:nth-child(even) {
    background: #F6F7F5;
}

.contacts-table tr:nth-child(odd) {
    background: #E8F0EA;
}

.contacts-table tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

.contacts-table tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

.contacts-table th {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.row {
    display: flex;
}

.column {
    text-align: left;
    padding: 0px 10px 10px;
    flex: 50%;
}
