.home-image-content .flex-row {
    align-items: center;
}

.home-image-content__text {
    margin-bottom: 40px;
}

.home-image-content__image img {
    height: 349px;
}

.home-image-content__image:has(.secondary-image) {
    display: flex;
    flex-flow: column;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
}

.home-image-content__image img {
    border-radius: 30px;
}

@media (min-width: 768px) {
    .home-image-content__text {
        margin-bottom: 45px;
    }

    .home-image-content__image:has(.secondary-image) {
        flex-flow: row;
    }
    
    .home-image-content__image img {
        height: 651px;
    }

    .home-image-content__image:has(.secondary-image) img {
        height: 351px;
    }
}

@media (min-width: 1200px) {
    .home-image-content .flex-row {
        flex-direction: row-reverse;
    }

    .home-image-content__text {
        margin-bottom: 0;
        padding-left: 23px;
    }
    
    .home-image-content__image {
        height: auto;
    }

    .home-image-content__image:has(.secondary-image) img {
        width: 50%;
        height: 408px;
    }
	
	.since-year-text {
        position: absolute;
        bottom: -250px;
        left: 15px;
        font-family: 'DM Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 120px;
        line-height: 82px;
        text-transform: uppercase;
        color: rgba(33, 60, 136, 0.1);
        transform: rotate(-90deg);
        transform-origin: 0 0;
    }
}