.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo{
    padding: 48px 12px 12px 12px;
}

.fa-arrow-left{
    font-size: 24px;
    font-weight: 600;
    color: #2f6f5e;
    position: absolute;
    top: 24px;
    left: 24px;
}

.category-section{
    margin-top: 16px;
}
.category-title{
    padding-left: 16px;
}

.categories-container{
    gap: 12px;
    padding: 12px 16px;
}

.categories-container .category{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    min-width: 98px;
    height: 108px;
    border-radius: 24px;
    background: linear-gradient(to top, #7b5fff, #d1c4ff);
    background: linear-gradient(to top, #1e3a8a, #93c5fd);
    background: linear-gradient(to top, #5F7FB3 0%, #9DB8E0 100%);
}

.category .img-container{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}

.img-container .icon{
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.category .category-name{
    font-size: 16px;
    color: #fff;
}


.budget-section .category{
    justify-content: center;
    min-width: 75px;
    height: 60px;
    border-radius: 24px;
}

.budget-section .category-name{
    font-size: 20px;
    font-weight: 600;
}

.occasion-section .category{
    justify-content: center;
    width: 164px;
    height: 72px;
}

.occasion-section .category-name{
    font-size: 20px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .carousel-container{
        width: 70%;
        margin: auto;
    }

    .category-title{
        width: 70%;
        margin: auto;
    }

}


