body {
    padding: 0;
    margin: 0 auto;
    max-width: 1920px;

}

header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 68.99%, rgba(242, 163, 71, 0.10) 100%);
}

.categories-grid {
    margin-top: 32px;
    padding-right: 40px;
    justify-content: flex-end !important;
}

@media (max-width: 768px) {
    .categories-grid {
        display: none !important;
    }
}

main {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 0px;
        width: 100%;
    }

}

main section {
    width: 100%;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin: 95px 0 68px 0;
}

@media (max-width: 768px) {
    main section {
        margin: 20px 0 20px 0;
        gap: 12px;
        padding-right: 0px;
    }
}

main section .section-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

main section .section-header .section-title {
    color: #0B0427;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    /* 92.593% */
}



.items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 0px;
}

.items .card.item {
    width: 435px;
}

@media (max-width: 768px) {
    .items {
        flex-direction: column;
        gap: 12px;
        max-width: 100vw;
        align-items: center;
    }

    .items .card.item {
        width: 100%;
        height: 488px !important;
    }

    .items .card.item .card-header {
        height: 232px !important;
    }

    .items .card-image {
        height: 232px !important;
        max-height: 232px !important;
    }
}
