.btn-primary {
    background-color: #ff9c43;
    border-color: #f09040;
    color: #fff;
}

.btn-primary:hover {
    background-color: #f09040;
    border-color: #d08030;
    color: #fff;
}

.btn-outline-primary {
    border-color: #ff9c43;
    color: #000000;
}

.btn-outline-primary:hover {
    background-color: #f09040;
    border-color: #d08030;
    color: #000000;

}

/*
 * Extra utilities
 */

.flex-equal > * {
    flex: 1;
}
@media (min-width: 768px) {
    .flex-md-equal > * {
        flex: 1;
    }
}

.home-block {
    position: relative;
    opacity: 1;
    background-size: cover;
    background-color: #333;
}

.home-block-background {
    /*
    width: 100%;
    opacity: 0.5;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
     */
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.home-block-heading {
    background-color: rgb(255, 156, 67, 0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.home-block-link {
    color: #FFFFFF;
    text-decoration: none;
}

.gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.image-gallery-wrapper {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.image-gallery-upload {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.btn-gallery-upload-remove {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1
}