#top-bar {
    background-color: transparent;
    background-image: url('/images/top-banner.png');
    background-size: 1400px;
    height: 47px;
    background-repeat: repeat-x;
    background-position: top center;
}

#brand img {
    max-width: 300px;
}

@media (max-width: 750px) {
    #brand img {
        max-width: 250px;
    }
}

header {
    border-bottom: none;
    padding-bottom:0;
}

p {
    margin-bottom: 1.5rem;
}

hr {
    width: 20%;
    margin: 4rem auto !important;
    border-style: solid;
    border-color: transparent;
    border-width: 2px;
}

a {
    color: var(--primary-color);
    text-decoration-color: transparent;
}

h2 a,
h3 a {
    color:var(--black-color);
}

a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 1px;
}

a.button {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
    display: inline-block;
    border-radius: 100px;
}

nav li a {
    color: var(--black-color);
}

.info-card {
    border: none;
    background-color: var(--nearly-white-color);
    padding: 2rem;
    border-radius: var(--big-border-radius);
}

.info-card h2:first-child,
.info-card h3:first-child {
    margin-top: 0;
}

.card {
    border:none;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.card p,
.card ul {
    font-size: .8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

img,
.masthead-image {
    border-radius: var(--big-border-radius);
}

.masthead-image {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.image-right,
.image-left {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.image-right img,
.image-left img {
    width: 50%;
}

@media (max-width: 750px) {
    .image-right,
    .image-left {
        flex-direction: column;
    }

    .image-right img,
    .image-left img {
        width: 100%;
    }
}

img.no-border-radius {
    border-radius: 0;
}

img.float-right {
    width:50%;
    float: right;
    margin: 0 0 1rem 1rem;
}

img.float-left {
    width:50%;
    float: left;
    margin: 0 1rem 1rem 0;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.checklist li {
    position: relative;
    padding: 7px 0 7px 28px;
    font-size: 15px;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--muted-color);
    border-radius: 3px;
    background: transparent;
}

.checklist.all-checked li,
.checklist.all-checked li a,
.checklist li.checked {
    color: var(--black-color);
    font-weight: 500;
}

.checklist.all-checked li::before,
.checklist li.checked::before {
    background: #D85A30;
    border-color: #D85A30;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6.5 5,9.5 10,3' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

body.project .columns h3 {
    margin-top:0;
}

.profile {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--big-border-radius);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20rem 1rem 1rem;
}

.profile h3 {
    margin-top: 0;
    margin-bottom: 0;
}