:root {
    --background-color: #444;
    --card-color: #333;
    --green: #005E25;
    --dark-green: #062311;
    --red: #cb0000;
    
    /* Typo */
    --bold: 'Bold';
    --regular: 'Regular';
    --light: 'Light';
    --italic: 'Italic';
    --light-italic: 'LightItalic';

    --transition: all 0.25s linear;
}


@font-face {
    font-family: 'Bold';
    src: url(/frontend/web/css/fonts/BellotaText-Bold.ttf);
}
@font-face {
    font-family: 'Regular';
    src: url(/frontend/web/css/fonts/BellotaText-Regular.ttf);
}
@font-face {
    font-family: 'Light';
    src: url(/frontend/web/css/fonts/BellotaText-Light.ttf);
}
@font-face {
    font-family: 'Italic';
    src: url(/frontend/web/css/fonts/BellotaText-Italic.ttf);
}
@font-face {
    font-family: 'LigntItalic';
    src: url(/frontend/web/css/fonts/BellotaText-LightItalic.ttf);
}


h1, h2 
{
    font-family: var(--bold);
}


/* grid */
.grid-fickle {
    grid-template: auto / calc(30% - 1vw) calc(70% - 1vw);
    position: unset;
    gap: 2vw;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
    box-shadow: rgb(50, 56, 217) 0px 0px 0px 3px, rgb(239, 227, 9) 0px 0px 0px 9px, rgb(213, 32, 32) 0px 0px 0px 15px;
}

.grid-fickle .fickle-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    margin: 0 !important;
}

.grid-fickle .fickle-image img {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fickle-image img {
    max-height: unset;
}

.grid-fickle .fickle-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.test-js {
    cursor: pointer;
}


.container {
    max-width: 90vw;
}

header {
    position: fixed;
    z-index: 9999999;
    display: none;
}

footer {
    display: none;
}

.section-1-home {
    min-height: 100vh;
    background-color: var(--background-color);
}

.section-1-home .fickle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}
.section-1-home .fickle-grid .module-fickle {
    background-color: var(--card-color);
    transition: all .2s linear;
}
.section-1-home .fickle-grid .module-fickle:hover {
    cursor: pointer;
    transform: translateY(0);
    box-shadow: 0px 0px 20px 5px lightseagreen;
    transition: all .2s linear;
}

.section-1-home .fickle-grid .module-fickle .fickle-additional-html-code {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
} 
.section-1-home .fickle-grid .module-fickle svg {
    max-height: 90px;
    fill: #484848;
}

.section-1-home .fickle-grid .fickle-text-content {
    display: none;
}








.element-visible {
    display: grid !important;
}

.element-hidden {
    display: none;
} 


.active {
    color: red;
    font-weight: bold;
    border: 1px solid black;
    padding: 0 1rem;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


