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%);
}


@media (max-width: 768px) {

    .banner-container {
        width: 100%;
        height: 212px;

    }

    .banner {
        object-fit: cover;
        width: 100%;
        height: 212px;

    }
}

.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;
        margin-top: 0px;
    }
}

main section {
    width: 100%;
    padding-right: 60px;
    max-width: 100%;
}


.section-wrapper{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    padding: 0 40px;
}

.section-wrapper .tabs-container{
    margin: 0;
}

.section-wrapper .tabs-container .tabs-list{
    height: 73px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}



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

.tabs-container {
    margin-top: 20px;
}

.items-gallery-container {
    width: calc(100% - 204px);
    max-width: 1685px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* width: 100%; */
}

.items-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

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

    }

}

.swiper-items {
    width: 100%;
    max-width: 1740px;
    /* width: 1740px; */

    position: relative;
    overflow: hidden;
}

.swiper-items .swiper-slide .card.item,
.swiper-items .swiper-slide {
    /* width: 435px !important; */

    width: 100%;
    max-width: 435px;

}


@media (max-width: 768px) {
    .swiper-items {
        width: calc(100vw - 40px);
        height: 620px;
    }

    .swiper-items .swiper-slide {
        width: calc((100vw - 40px) / 2) !important;

    }

    .swiper-wrapper {
        height: 578px;
    }
}

.more {
    text-decoration: none;
    margin-top: 10px;
    width: 124px;
    height: 488px;
    background-color: #2020B3;
    background-image: url('/assets/images/gallery-more.png');
    background-size: 249.55px 250.615px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.08);
}

.more .more-wrapper{
    height: 100%;
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 17px;
    padding: 6px;
}

.more div {
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 17px;
}

@media (max-width: 768px) {
    .more {
        display: none;
    }
}





/* categories */
.items-wrapper.categories .card-info{
    width: 100%;
}

.items-wrapper.categories .card-info .item-title-container{
    max-width: 95%;
    
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin: 16px 0 0 0;
}

.items-wrapper.categories .card-info .item-title-container .item-title-bold{
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}

.items-wrapper.categories .card-info .item-title-container .item-title-regular{
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
}

.items-wrapper.categories .card-footer{
    
}

.items-wrapper.categories .card-footer .expire{
    font-size: 14px;
    line-height: 20px;
}

.items-wrapper.categories .card-footer .add-button{
    min-width: 100px;
    font-size: 14px;
}


/* desktop resolutions */

/* 1399 */
@media screen and (min-width: 1024px) and (max-width: 1399px) {

    .items-wrapper.categories .card-footer{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

}

/* 1299 */
@media screen and (min-width: 1024px) and (max-width: 1299px) {
    .items-wrapper.categories .card-info .item-title-container .item-title-bold{
        font-size: 18px;
        line-height: 22px;
    }
    
    .items-wrapper.categories .card-info .item-title-container .item-title-regular{
        font-size: 14px;
        line-height: 20px;
    }
    

}