.headerimage {
    display: flex;
    flex-direction: row;
}
@media(max-width: 1300px) {
    .headerimage {
        flex-direction: column;
    }
}
.headerimage__image {
    width: 60%;
}
@media(max-width: 1300px) {
    .headerimage__image {
        width: 100%;
    }
}
.headerimage__image-wrapper {
    width: 60vw;
    float: right;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.headerimage__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    visibility: hidden;
}
@media(max-width: 1300px) {
    .headerimage__image-wrapper {
        width: 100%;
        float: unset;
        height: auto;
        background-image: unset;
    }
    .headerimage__image img {
        visibility: visible;
    }
}
.headerimage__content {
    width: 40%;
}
@media(max-width: 1300px) {
    .headerimage__content {
        width: 100%;
    }
}
.headerimage__content-wrapper {
    position: relative;
    border-left: 2px solid #f39200;
    height: 95%;
    padding: 50px 0 20px 50px;
}
@media(max-width: 1300px) {
    .headerimage__content-wrapper {
        position: relative;
        border-left: unset;
        height: auto;
        padding: 20px 0 20px 0;
    }
}
.headerimage__content-wrapper-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.headerimage__content-image {
    width: 150px;
}
.headerimage__content-image + .headerimage__content-body {
    width: calc(100% - 150px);
}
.headerimage__content-image img {
    width: 100%;
    height: auto;
}
.headerimage__content-wrapper:before,
.headerimage__content-wrapper:after {
    content: "";
    height: 2px;
    background-color: #f39200;
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
}
@media(max-width: 1300px) {
    .headerimage__content-wrapper:before,
    .headerimage__content-wrapper:after {
        display: none;
    }
}
.headerimage__content-wrapper:after {
    top: unset;
    bottom: 0;
}

.headerimage__content-body__header {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}
.headerimage__content-body__header + .headerimage__content-wrapper-inner {
    margin-top: 20px;
}
.headerimage__content-wrapper-nose {
    position: absolute;
    bottom: -63px;
    height: 65px;
    left: -2px;
    width: auto;
    z-index: 10;
}
@media(max-width: 1300px) {
    .headerimage__content-wrapper-nose {
        display: none;
    }
}