.container {
    max-width: 960px;
}

/*
* Banner
*/
.banner-picture {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
    background-position: 40% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-title {
    font-size: 3.5rem;
}

@media (max-width: 1440px) {
    .banner-picture {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }

    .banner-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .banner-picture {
        padding-top: 17rem !important;
        padding-bottom: 17rem !important;
    }

    .banner-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 576px) {
    .banner-picture {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important;
    }

    .banner-title {
        font-size: 3rem;
    }
}


/*
* Dim
*/
.dim {
    position: relative;
}
.dim::before {
    --bg-color: transparent;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
    transition: background-color 0.35s ease;
}

.dim.dim-hover::before {
    background-color: transparent;
}

.dim.dim-hover:hover::before {
    background-color: var(--bg-color);
}

.dim-25::before {
    --bg-color: rgba(0, 0, 0, 0.25);
}
.dim-35::before {
    --bg-color: rgba(0, 0, 0, 0.35);
}

/*
* Custom Text
*/
.text-mono {
    font-family: 'Roboto Mono';
}
.text-condensed {
    font-family: 'Roboto Condensed';
}
.text-rubik {
    font-family: 'Rubik';
}
.fw-medium {
    font-weight: 500;
}
.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

/*
* Grid
*/
.grid-section {
    display: grid;
    aspect-ratio: 4/3;
    width: 100%;
}
@media (max-width: 992px) {
    .grid-section {
        aspect-ratio: 1/3 !important;
    }
}
@media (max-width: 576px) {
    .grid-section {
        aspect-ratio: 1/6 !important;
    }
}
.grid-section {
    display: grid;
    aspect-ratio: 4/3;
    width: 100%;
}
.grid-card {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    background-size: 100%;
    background-position: 50% 50%;
    transition: background-size 0.35s ease;
}
    .grid-card:hover {
        background-size: 108%;
    }
.grid-card > * {
    pointer-events: none;
}

/*
* Background
*/
.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

/*
* Metrics
*/
.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.fit {
    width: fit-content;
    height: fit-content;
}