html {
    background: #f0f2f5;
}

body {
    color: #3b3131;
    font: 1rem Segoe Ui, sans-serif;
    margin: auto;
    text-align: center;
}

a {
    color: inherit;
    text-decoration: inherit;
}

a.text {
    color: #00719c;
    font-weight: 500;
    text-decoration: inherit;
}

a.text:hover {
    color: #0000ee;
}

h1 {
    font-weight: 1000;
    font-size: 30px;  
    margin-bottom: 0  
}

h2 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0
}

ul {
    padding-inline-start: 20px;
    list-style-type: disc;
}

ul.no-bullet {
    padding-inline-start: 20px;
    list-style-type: none;
}

.page-title {
    margin: auto;
    padding: 30px 0;
    background: #f0f2f5;
    border-radius: 5px;
}

.logo-img {
    width: 200px;
}

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

.card {
    background: #fff;
    border-radius: 5px;
}

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

.card-caption {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
}

.card-content {
    text-align: left;
}

.card-imgs {
    padding: 10px 0;
    margin: auto;
}

.card-img {
    padding: 10px 0;
    margin: auto;
    width: 49%;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.8);
}
  
.lightbox:target {
    display: block;
}

.lightbox span {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer {
    max-width: 1024px;
    margin: auto;
    padding: 30px 0;
}

.footer-item {
    color: #00719c;
    padding-left: 10px;
    padding-right: 10px;
}

.socialbar {
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

.socialicon {
    width: 32px;
    height: 32px;
}

.accordian-input {
    display: none;
}

.accordian-label {
    color: #00719c;
    font-weight: 500;
    text-decoration: inherit;
}

.accordian-label:hover {
    color: #0000ee;
}

.accordian-content {
    width: 50%;
    background: #e2e5f6;
    padding: 5px 22px;
    margin: 0 0 1px 0;
    border-radius: 5px;
}

.accordian-input + .accordian-label + .accordian-content {
    display: none;
}

.accordian-input:checked + .accordian-label + .accordian-content {
    display: block;
}

.img-card {
    width: 300px;
    background: #fff;
}

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

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

.img-card-caption {
    padding-bottom: 10px;
    text-align: center;
    font-size: 0.875em;
}
