.page-banner h1{
    font-family: "Kazmann-Sans";
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    
    line-height: 1;
    margin-bottom: 0;
}

.page-banner {
    padding: 50px 0;
    min-height: unset;
    background-color: #EDEDED;
    background-image: url(../img/main-bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

.information-category {
    padding-top: 1.5rem;
    display: flex;
}

.category-nav {
    flex: 1;
    margin-right: 1rem;
}

.category-nav  h3 {
    margin-bottom: 10px;
}

.category-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.information-categoty__text {
    padding-left: 1rem;
    flex: 4;
    position: relative;
}
.category__text-info {
    margin-bottom: 1.2rem;
}
.information-categoty__text::before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: rgb(133, 101, 42);
}
.information-category {
    padding-top: 1.5rem;
    display: flex;
}

hr {
    max-width: 130px;
    height: 3px;
    border: 0;
    border-radius: 10px;
    margin: 1.5rem 0;
    background-color: rgb(133, 101, 42);
}

.menu-list__item.active,
.menu-list__item:hover {
    color:#BFBD8F;
    font-weight: bold;
}

@media (max-width: 768px) { 
    .information-category {
        flex-direction: column;
    }

    .information-categoty__text {
        padding-left: 0;
        padding-top:20px;
        margin-top: 20px;
        border-top: 2px solid #4B6E36
    }

    .information-categoty__text::before {
        display: none;
    }

    .page-banner h1 {
        font-size: 42px;
    }
}