.overview{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 60px;
}

.p_overview{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1140px;
    color: var(--primary-fade);
    margin: 40px 0px 10px 0px;
}
.p_overview.reverse{
    flex-direction: row-reverse;
}
.p_overview .block{
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.p_overview .block .title{
    height: 60px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--primary-fader);
}
.p_overview .block .paragraphs{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.7;
    font-weight: 300;

}
.p_overview .block .paragraphs p{
    margin-block-start: 0em;
    margin-block-end: 2em;
}
.p_overview .block .image {
    width: 100%;
    aspect-ratio: 16 / 11; /* 16:9 aspect ratio */
    overflow: hidden;
    margin-top: 62px;
    /*background-color: #0C1621;*/
    position: relative; /* Add this */
}

.p_overview .block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    position: absolute; /* Add this */
    top: 0; /* Add this */
    left: 0; /* Add this */
    transition: opacity 0.3s ease;
}