.section {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 850px;
}

.section__logo {
    position: absolute;
    width: 163px;
    top: 69px;
    left: 140px;
}

.section__image {
    max-width: 50%;
    object-fit: cover;
    flex: 1;
}

.section__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 100px;
    max-width: 70%;
}

.section__title h1 {
    max-width: 70%;
}

@media only screen and (max-width: 800px) {
    .section {
        flex-direction: column-reverse;
        gap: 64px;
    }

    .section__image {
        max-width: 100%;
    }

    .section__title {
        margin: 125px 110px 0 30px;
    }

    .section__title h1 {
        max-width: 100%;
    }

    .section__logo {
        width: 87px;
        top: 30px;
        left: 30px;
    }
}
