#about{
    width: 100%;
}

#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%;
    color: whitesmoke;
    margin: 20px;
    border-radius: 15px;
    background-color: rgba(34, 34, 34, 0.469);
}

.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;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    overscroll-behavior-inline: contain;
    /* Hide scrollbar for Chrome, Safari, and Opera */
    &::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge, and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

     mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.feature-item {
    flex: 0 0 auto;
    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;
}

.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;
    padding: 15px 5px;
}


.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;
}

@media (max-width: 992px){
    .sub_list_item{
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        /* max-width: 300px; */
    }

    #about_header_block{
        flex-direction: column;
    }

    #our_story_blurb{
        width: 100%;
    }
}


@media (max-width: 600px){
    #our_story_text{

        width: auto;
    }

    /* .feature_strip{
        } */
    .sub_list_item{
        padding: 10px 30px;
        /* margin: auto 30px; */
        justify-content: normal;
        display: flex;
        flex-direction: row;
        font-size: medium;
    }
}