.container {
    max-width: 960px;
}

/*
* Banner
*/
.banner-picture {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-picture::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.25));
}
.banner-title {
    font-size: 3.5rem;
}


@media (max-width: 992px) {
    .banner-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 576px) {
    .banner-picture {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
        background-position: 70% 50%;
    }
}


/*
* Custom Text
*/
.text-mono {
    font-family: 'Roboto Mono';
}
.text-condensed {
    font-family: 'Roboto Condensed';
}
.text-rubik {
    font-family: 'Rubik';
}
.fw-medium {
    font-weight: 500;
}

/*
* Section
*/
.content-section {
    padding: 5rem 6rem;
}

.content-section:nth-child(odd) {
    background-color: #f0f0f0;
}

.section-picture {
    background-size: cover;
    background-position: 50% 50%;
    width: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-picture-1 {
    aspect-ratio: 2/1.35;
    margin-left: 7.5rem;
    margin-right: 1.5rem;
}

.section-picture-2 {
    aspect-ratio: 2/1.5;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.section-picture-3 {
    aspect-ratio: 2/1.35;
    margin-left: 6.4rem;
    margin-right: 2.5rem;
}

.section-subtitle {
    line-height: 1.7rem;
}

.section-description {
    line-height: 1.7rem;
    filter: blur(0.4px);
}

.section-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.value-description {
    line-height: 1.75rem;
}

@media (max-width: 1200px) {
    .content-section {
        padding-right: 0;
        padding-left: 0;
    }
    
    .section-picture-1 {
        margin-left: 5rem;
        margin-right: 1rem;
    }

    .section-picture-2 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section-picture-3 {
        margin-left: 5rem;
        margin-right: 2rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
        line-height: 1.7rem;
    }
}

@media (max-width: 992px) {
    .content-section {
        padding: 3.5rem 0 5rem;
    }

    .section-subtitle {
        font-size: 1.45rem;
        line-height: 1.7rem;
    }

    .section-picture {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .section-picture-1 {
        margin-top: 1.5rem;
    }
    
    .section-picture-2 {
        margin-top: 3rem;
    }
    
    .section-picture-3 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {    
    .section-picture {
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
        line-height: 1.7rem;
    }
}

/*
* Separators
*/
.hr-title {
    background-color: #73d4f6;
    height: 4px !important;
    width: 100%;
    margin: 0;
    opacity: 1;
}
.hr-55 {
    width: 55%;
}
.hr-42 {
    width: 42%;
}

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