#page-wrapper {
    min-height: 100dvh;
}

.page-title-empty {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* padding: 160px 0 80px 0; */
    text-align: center;
    position: relative;
    padding: 50px 0px;
}

.page-title-empty::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

div.page-title div.cover-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.page-title div.cover-wrapper::after {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

div.page-title div.cover-wrapper > div.cover-container {
    width: 100%;
    height: 100%;
}

div.page-title div.cover-wrapper > div.cover-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Template */
/* Catalog with card images */
.catalog-with-card-images .card.item-card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    border-radius: 0;
    height: 100%;
    padding-bottom: 15px;
}

.catalog-with-card-images .card.item-card .card-img {
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
}

.catalog-with-card-images .card.item-card .card-img img {
    transition: 0.3s ease-in-out;
    max-height: 400px;
}

.catalog-with-card-images .card.item-card .item-body,
.catalog-with-card-images .card.item-card .item-footer {
    padding: 0px 30px;
}

.catalog-with-card-images .card.item-card h3 {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0px;
    text-transform: uppercase;
}

.catalog-with-card-images .card.item-card a:not(.btn) {
    color: var(--heading-color);
    transition: 0.3;
}

.catalog-with-card-images .card.item-card a:not(.btn):hover {
    color: var(--accent-color);
}

.catalog-with-card-images .card.item-card p {
    margin-bottom: 30px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 15px;
}

.catalog-with-card-images .card:hover .card-img img {
    transform: scale(1.1);
}

/* Features with icons */
.features-with-icons .features-with-icons-item .icon img {
    width: 50px;
    transition: 0.3s;
}

/* Features with images */
.features-with-images .features-item img {
    height: 400px;
    max-height: 400px;
    object-fit: contain;
}

/* Section: About Us */
.about .content ul img {
    flex-shrink: 0;
    width: 48px;
    margin-right: 20px;
    line-height: 0;
}

/* Images gallery */
.image-gallery-container {
    display: block;
}

.image-gallery-container a {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.image-gallery-container a img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breakpoints */
@media only screen and (max-width: 1199px) {
    div.page-title-empty {
        height: 96px;
        padding: 0px !important;
    }
}

/* Common */
label.form-label {
    display: block;
    font-weight: bold;
}

.form-label.required::after {
    content: '*';
    color: #FF0000;
    margin-left: 0.25rem;
}

i.label-icon.icon-lg {
    /* font-weight: 700; */
    font-size: 24px;
}

input[type="text"].form-control::placeholder, input[type="password"].form-control::placeholder {
    color: #C3C3C3;
}

div.input-group > input[type="password"] + button {
    border-color: var(--bs-border-color) !important;
}

.ws-pre-wrap {
    white-space: pre-wrap;
}

.text-justify {
    text-align: justify;
}