.border-radius-left-8px {
    border-radius: 8px 0 0 0;
}

@media (min-width: 992px) {
    .custom-screen-height {
        height: auto !important;
        min-height: 400px;
    }
}

.text-alt-color {
    color: var(--alt-color);
}

.btn.btn-alt-color {
    background-color: var(--alt-color);
    color: var(--white);
}

    .btn.btn-alt-color:hover, .btn.btn-alt-color:active {
        background-color: var(--base-color);
        color: var(--white);
    }

.btn.btn-alt-font {
    font-family: var(--alt-font);
}

.icon-absolute {
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .icon-absolute:hover {
        background-color: var(--base-color);
        cursor: pointer;
    }
@media (min-width: 1024px) {
    .custom-row-margin {
        margin-top: 30px !important;
    }
}

@media (max-width: 1023px) {
    .custom-row-margin {
        margin-top: 20px !important;
    }
}
.responsive-aspect {
    aspect-ratio: 4/3;
}

@media (min-width: 1024px) and (max-width: 1439.98px) {
    .responsive-aspect {
        aspect-ratio: 1/1;
    }
}

@media (min-width: 1440px) {
    .responsive-aspect {
        aspect-ratio: 4/3;
    }
}
.custom-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .custom-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 8px;
    }

        .custom-list li::before {
            content: "\f0a9";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            transform: translateY(2px);
            color: var(--base-color);
            font-size: 1rem;
        }
@media (min-width: 1024px) {
    .stretch-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .image-container {
        height: auto;
        overflow: hidden;
    }
}

@media (max-width: 1023px) {
    .stretch-image {
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: none;
        object-position: center;
    }

    .image-container {
        overflow: visible;
        height: auto;
    }
}
@media (min-width: 1024px) {
    .custom-col-text {
        margin-left: 10px;
    }
}
.btn-link.btn-hover-animation-switch.text-alt-color:hover,
.btn-link.btn-hover-animation-switch.text-alt-color:focus,
.btn-link.btn-hover-animation-switch.text-alt-color:active {
    color: var(--alt-color) !important;
    text-decoration: none;
}
.image-crop {
    width: 80px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

    .image-crop img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }