.tutorial_container {
    height: auto;
    align-items: center;
    justify-content: center;
    /* display: grid; */
   
    /* border: 1px solid #333333; */
    /* border: 1px solid #242c3b; */
    border-radius: 10px;
    /* box-shadow: 0 0 50px 0 black; */
    overflow: hidden;
    max-width: 100%;
    min-width: 400px;
    min-height: 330px;
    opacity: 1;
    cursor: pointer;
    /* margin: 20px; */
    transition: 0.2s;
    /* border-radius: 20px; */
    overflow: hidden;
    /* padding: 10px; */
    background: radial-gradient(farthest-corner at 40px 40px, var(--d3) , var(--d2) 100%);
    /* background: -webkit-radial-gradient(farthest-corner at 40px 40px, #171d28 , #0f131b 100%); */
}

.tutorial_description_box {
    /* background: radial-gradient(farthest-corner at 40px 40px, #171d28 , #0f131b 100%);
    background: -webkit-radial-gradient(farthest-corner at 40px 40px, #171d28 , #0f131b 100%); */
    width: 100%;
    height: auto;
    padding: 10px 0;
    /* padding-top: 10px; */
    padding: 20px;
    box-sizing: border-box;
}

.tutorial_container:hover .tutorial_thumbnail {
    /* transition: 0.1s;
    background-size: 105%;
    z-index: 10; */
}

.tutorial_container:hover {
    filter: brightness(1.2);
}

.tutorial_container:active {
    opacity: 0.5;
}

.tutorial_thumbnail{
    width: 102%;
    height: 230px;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 0.05s;
    background-position: center;
}

.tutorial_title {
    font-family: Exo 2;
    font-size: 1.7rem;
    color: var(--red);
    color: #fff;
    /* color: #ffae00; */
    opacity: 0.8;
    width: 100%;
    text-align: left;
    font-weight: bolder;
    margin-bottom: 10px;
}

.tutorial_description {
    width: 100%;
    color: #fff;
    opacity: 0.4;
    text-align: left;
    box-sizing: border-box;
}

.top_title_box {
    width: 100%;
    padding: 60px 0;
}

.small_menu_box {
    display: grid;
    justify-content: center;
    align-content: center;
  
    gap: 4px;
    grid-auto-flow: column;
    padding: 20px 0;
    
    /* background: radial-gradient(farthest-corner at 40px 40px, #0f131b, #171d28 100%); */
    /* background: -webkit-radial-gradient(farthest-corner at 40px 40px, #0f131b, #171d28 100%); */
    /* border: 1px solid #242c3b; */
    border-left: none;
    border-right: none;
}

.small_menu_a {
    color: #fff;
    opacity: 0.6;
    max-width: 200px;
    min-width: 150px;
    font-size: 1rem;
    line-height: 2rem;
    cursor: pointer;
    /* border: 1px solid white; */
    display: grid;
    align-items: center;
}

.small_menu_a:hover {
    opacity: 1;
}



@media only screen and (max-width: 1024px) {
    .tutorial_container {
        max-width: 100%;
        min-width: 100%;
        max-height: 400px;
        height: 800px;
    }
}