﻿.salutation-text {
    font-family: var(--header-font-family) !important;
    color: var(--ictsi-orange) !important;
    font-size: clamp(30px, 3em, 50px) !important;
    /*    font-size: 2.5em !important;*/
    font-weight: bold;
}

.home-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.home-option-cont {
    width: 100%;
    min-height: 200px;
    max-width: 400px;
    padding: 20px;
    background-color: rgba(var(--ictsi-gray-rgb), 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 20px -20px black;
}

    .home-option-cont img {
        height: 70%;
        width: 70%;
        max-width: 200px;
    }

    .home-option-cont span {
        font-family: var(--header-font-family) !important;
        font-size: 1.5em;
        font-weight: bold;
        margin-top: 10px;
        line-height: 1em;
    }

.disabled-home-option-cont {
    background-color: gray !important;
    cursor: not-allowed !important;
}

.home-bottom-alert-cont {
    height: 100%;
    max-height: 150px;
    margin: 40px 30px 0 30px;
    padding: 10px;
    background-color: rgb(179,17,33);
    border-radius: 10px;
    align-content: center;
    align-items: center;
}

    .home-bottom-alert-cont img {
        height: 4em;
        width: 4em;
        max-width: 60px;
    }

    .home-bottom-alert-cont span {
        font-family: var(--content-font-family);
        color: white;
        font-size: clamp(18px, 2vw, 22px);
    }

.black-arrow {
    height: 5em;
    width: 5em;
}

@media (max-width: 992px) {
    .home-option-cont {
        margin-bottom: 50px;
    }

    .black-arrow {
        transform: rotate(90deg);
    }

    .home-bottom-alert-cont {
        max-height: none;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 1300px) {
    .home-option-cont {
        min-height: 350px;
        max-width: 700px;
    }

        .home-option-cont span {
            font-size: 2em;
        }
}
