:root {
    --header-font-family: "League Spartan";
    --content-font-family: "Helvetica";
    --ictsi-orange: rgb(236, 117, 33);
    /*        --ictsi-orange: rgb(255, 99, 25);*/
    --ictsi-gray: rgb(135,136,136);
    /*        --ictsi-orange-rgb: 255, 99, 25 !important;*/
    --ictsi-orange-rgb: 236, 117, 33 !important;
    --ictsi-gray-rgb: 135, 136, 136;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

* {
    font-family: var(--content-font-family) !important;
}

html {
    font-size: 16px;
    margin: auto;
    max-width: 2500px;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    background-color: white !important;
}

.cont-fade-in {
    animation: 0.2s ease-in fadeIn;
}

.pointer {
    cursor: pointer;
}

.full-vh-cont-with-navbar {
    height: 85vh;
    max-height: 1000px;
}

.text-justify {
    text-align: justify;
}

@media (max-width: 992px) {
    .full-vh-cont-with-navbar {
        height: auto;
        max-height: none;
        /*        margin-bottom: 20px;*/
    }
}