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 (max-width: 768px) {
    main {
        padding: 0 20px;
        max-width: 100vw;
        width: 100%;
        margin-top: 0px;
    }
}

main section {
    width: 100%;
    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;
    }
}

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% */
}

@media (max-width: 768px) {
    main section .section-header .section-title {
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 50px;
    }
}

.see-all {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 34.286px;
    text-decoration: none;
    border-radius: 38px;
    background: #2020B3;

    display: flex;
    width: 166px;
    height: 40px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .see-all {
        display: flex;
        width: 105px;
        height: 40px;
        padding: 12px 16px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        color: #FFF;
        font-size: 18px;
        font-weight: 500;
        line-height: 34.286px;
    }
}

.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 .card-container {
        width: 50%;
    }



    .items .mobile-small-card .item-card .item-card-header {
        height: 100px;
    }

}
