.header-locatains-right {
    position: relative;
    grid-column: span 3;
}

.header-locatains-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.header-locatains-content {
    position: relative;
    padding: var(--container-space);
}

.header-locatains-text {
    display: flex;
    font-size: 1.125rem;
    line-height: 140%;
    max-width: 27rem;
}

.header-about-site-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 3;
}

.header-about-site {
    position: relative;
}

.header-about-site-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-about-site-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem var(--container-space);
    height: 100%;
    gap: 2rem;
}

.header-about-site-up {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.header-about-site-up>svg {
    height: 30px;
}

.header-about-site-text {
    max-width: 16.875rem;
}

.header-about-site-items .header-about-site:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

@media (max-width: 1200px) {
    .h-header-container {
        gap: 2.75rem;
    }
}
@media (max-width: 992px) {
    .header-locatains-right {
        display: none;
    }

    .header-about-site-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .header-about-site-container {
        padding: var(--container-space);
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .h-menu {
        gap: 2.25rem;
    }
}
@media (max-width: 768px) {
    .h-header-container {
        border-bottom: none;
    }
}