.toolbox_container,
.toolbox_container_category {
    width: 97%;
    margin-left: 1.5%;

    text-decoration: none;

    display: flex;
    flex-direction: column;
}
.toolbox_container {
    flex-direction: row;
    margin-top: 0.1vh;
    margin-bottom: 0.2vh;
    border: solid 0.3vh black;
}
.toolbox_container_category{
    margin-bottom: 0.8vh; 
}
.toolbox_container_image {
    width: 5vh;
    max-height: 5vh;
    max-width: 5vh;
    margin-right: 0.8vw;
    margin-left: 0.2vw;

    margin-top: auto;
    margin-bottom: auto;
}
.toolbox_container_text {
    display: flex;
    flex-direction: column;
}

.toolbox_container_title,
.toolbox_container_subTitle,
.toolbox_container_info,
.toolbox_container_category_info,
.toolbox_container_link {
    width: auto;
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #e0e6ed;

    padding: 0 0 0 0; 
    font-size: 2.2vh;
    font-weight: 800;
}
.toolbox_container_title{
    margin-top: 0.4vh;
    margin-bottom: 0.1vh;
    margin-left: 1vw;
}
.toolbox_container_subTitle {
    font-size: 1.9vh;
    font-weight: 700;
}
.toolbox_container_info {
    font-size: 1.6vh;
    font-weight: 500;
}
.toolbox_container_category_info {
    font-size: 1.6vh;
    font-weight: 500;
    margin-bottom: 0.4vh;
    margin-left: 1vw;
}
.toolbox_container_link {
    font-size: 1.3vh;
    font-weight: 400;
    color: aqua;
}

@media screen and (max-device-width: 1000px), screen and (orientation: portrait) { /* 9/16 mobile*/

}
@media screen and (orientation: landscape) { /* 19/9 DeskTop/Mobile */ 
    

    @media screen and (min-device-width: 1000px) and (orientation: landscape) { /* 19/9 DeskTop*/
  
    }
    @media screen and (max-device-width: 1000px) and (orientation: landscape) { /* 19/9 mobile*/
        .toolbox_container_image {
            width: 5vw;
            max-height: 5vw;
            max-width: 5vw;
        }
        .toolbox_container_title{
            font-size: 2.2vw;
            margin-top: 0.8vh;
            margin-bottom: 0.4vh;
        }
        .toolbox_container_subTitle {
            font-size: 1.9vw;
            font-weight: 700;
        }
        .toolbox_container_info {
            font-size: 1.6vw;
        }
        .toolbox_container_category_info {
            font-size: 1.6vw;
            margin-bottom: 0.8vh;
        }
        .toolbox_container_link {
            font-size: 1.3vw;
        }
    }
}