.page-header-area{
    position: relative;
    margin-bottom: 50px;
    display: flex;
    min-height: 200px;
    align-items: center;
}

.page-header-area .page-header-background{
    background-color: #0C233F;
    width: 200vw;
    height: calc(100% + 40px);
    display: block;
    visibility: visible;
    position: absolute;
    left: -50vw;
    top: -20px;
    z-index: -1;
}

.page-header-area .page-header-background.tax-course{
    background-color: #496E9C;
}

.page-header-area h1{
    color: white;
    height: 100%;
}

.lesson-filters{
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.lesson-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 50px;
}

.lesson-item{
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 5px -2px;
    transition: .2s;
    width: calc((100% / 3) - 20px);
}

.lesson-item:hover{
    transform: translateY(-2px);
    transition: .2s;
    box-shadow: 0 5px 5px 0px #DB5726;
}

.lesson-item a{
    display: flex;
    flex-direction: column;
}

.lesson-item img{
    width: 150px;
    min-width: 150px;
    object-fit: contain;
    margin: auto;
}

.lesson-item .post-content{
    padding-top: 0px;
    padding-left: 0;
}

.lesson-item .course{
    color: #DB5726 !important;
}

.abstract p{
    color: #444;
}

.show-lesson{
    margin-top: 30px;
    background-color: #DB5726;
    border-radius: 100px;
    width: fit-content;
    color: white;
    padding: 10px 20px;
}