section.onestop {
    width: 100%;
    padding-top: 80px;
}

section.onestop .page_title {
    margin-bottom: 20px;
}

section.onestop .intro {
    padding: 0 30px;
    width: 100%;
    max-width: 850px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-bottom: 60px;
    line-height: 1.5em;
}

.one_stop_list_wrapper {
    position: relative;
    width: 100%;
}

.one_stop_list {
    display: flex;
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.one_stop {
    position: relative;
}

.one_stop a{
    display: block;
    color: white;
    text-decoration: none;
    text-align: center;
    padding-bottom: 70%;
}

.one_stop_img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one_stop_img .title_content:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: 0.3;
}

.one_stop_img .title_content {
    z-index: 5;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 50px;
    min-height: calc(25% - 60px);
    display: flex;
    /* align-items: center; */
    flex-direction: column;
}

.one_stop_img .title_content .title {
    display: block;
    position: relative;
    text-align: left;
    font-size: 20px;
}

html[lang=en-us] .one_stop_img .title_content .title {
    font-family: 'OpenSans-Bold';
}

.one_stop_img:hover .title_content [class^=icon_] {
    width: 150px;
    height: 100px;
    margin-bottom: 10px;
}

.one_stop_img .title_content .category {
    position: relative;
    text-align: left;
    margin-top: 7px;
}

ul.onestop-category-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 850px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 30px 15px 30px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-template-columns: repeat(6, auto);
    gap: 10px;
    text-align: center;
}

ul.onestop-category-list .onestop-category a {
    text-decoration: none;
    color: var(--black);
}

html[lang=en-us] ul.onestop-category-list .onestop-category a {
    font-family: 'OpenSans-Bold';
}

ul.onestop-category-list a:hover, ul.onestop-category-list .onestop-category a.active {
    color: var(--green);
}


@media screen and (max-width: 768px) {
    section.onestop {
        padding-top: 50px;
        /* height: calc(100vh - 75px - 100px); */
    }
    
    .one_stop_list {
        grid-template-columns: 1fr;
    }

    .onestop .description {
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 680px) {
    .one_stop_img .title_content {
        padding: 15px 30px;
        min-height: calc(20% - 30px);
    }
    ul.onestop-category-list {
        grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    }
        
}