#about_header_block{
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

#our_story_blurb{
    background-image: url("banners/about_banner.png");
    background-size: auto 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    width: 50%;
    color: #222;
}

#our_story_text{
    padding: 25px;
    width: 50%;
}

.features-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.features-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); */
    gap: 10px;
    align-items: start;
}

.feature-item {
    text-align: center;
}

.icon-circle {
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    background: #e8e7d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
    cursor: auto;
}

.feature-item:hover .icon-circle {
    transform: scale(1.12);
}

.icon-circle svg {
    width: 42px;
    height: 42px;
    fill: #2d4429;
    stroke: #2d4429;
    stroke-width: 1.5;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}
/* 
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3,1fr);
        row-gap:40px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }
} */

#about_main{
    background-image: url("banners/banner_shadow.png"), url("banners/banner_about_main.png");
    background-repeat: no-repeat;
    color: whitesmoke;
    background-size: auto 100%;/* auto;*/
    background-position-x: 0, 100%;
}

.about_blurb_main{
    max-width: 575px;
    /* margin: 50px; */
    padding: 20px 50px;
}

#about_main button{
    background-color: #e7bd00;
    font-weight: bold;
    color: #201900;
    border-radius: 5px;
    padding: 10px;
    outline: none;
    border: none;
}

#about_main h1{
    font-size: 45px;
}

.feature_strip{
    background-color: rgb(2, 3, 2);
    color: whitesmoke;
    font-size: 14px;
}


.feature_strip h5{
    color: #b3c965;
}

.feature_strip .sub_list_item{
    display: flex;
    justify-content: space-between;
    align-items : center;
    margin: 5px;
    /* height: 128px; */
}

.feature_strip .sub_list_item li {
    margin-left: 5px;
    margin-right: 5px;
}