.bory {
    position: relative;
    width: 100%;
    height: 744px;
    background-image: var(--bory-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.bory__inner {
    position: relative;
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bory__title {
    font-family: var(--font-decorative);
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    margin: 0;
    color: var(--color-white);
}

.bory__description {
    margin-top: 20px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: var(--color-white);
}

.bory .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .bory {
        height: 524px;
    }

    .bory__inner {
        padding: 0 20px;
    }

    .bory__title {
        font-size: 40px;
        line-height: 40px;
    }

    .bory__description {
        margin-top: 20px;
    }
}
