
.heroSwiper-container {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 140px;
}
@media screen and (max-width:1200px) {
    .heroSwiper-container {
        margin-bottom: 120px;
    }
}
@media screen and (max-width:980px) {
    .heroSwiper-container {
        margin-bottom: 100px;
    }
}
@media screen and (max-width:768px) {
    .heroSwiper-container {
        margin-bottom: 80px;
    }
}

.heroSwiper-container .swiper-slide {
    color: white;
    text-align: center;
}


.heroSwiper-container .swiper-button-prev,
.heroSwiper-container .swiper-button-next {
    height: 50px;
    width: 50px;
    top: 85%;
    transform: translateY(-50%);
    margin-top: 0;
    background-color: #fff;
    border-radius: 50%;
}

.heroSwiper-container .swiper-button-prev {
    left: 50px;
}

.heroSwiper-container .swiper-button-next {
    right: 50px;
}

.heroSwiper-container .swiper-button-prev:after,
.heroSwiper-container .swiper-button-next:after {
    font-size: 16px;
    color: #000;
}

.heroSwiper-container .heroText {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 15;
    width: 400px;
}
@media screen and (max-width:768px) {
    .heroSwiper-container .heroText {
        right: 16px;
        width: 40%;
    }
    
    .heroSwiper-container .swiper-button-prev,
    .heroSwiper-container .swiper-button-next {
        top: 80%;
        height: 45px;
        width: 45px;
    }
    
    .heroSwiper-container .swiper-button-prev {
        left: 32px;
    }

    .heroSwiper-container .swiper-button-next {
        right: 32px;
    }
}
@media screen and (max-width:465px) {
    .heroSwiper-container .swiper-button-prev,
    .heroSwiper-container .swiper-button-next {
        top: 60%;
    }
}
@media screen and (max-width:400px) {
    .heroSwiper-container .swiper-button-prev,
    .heroSwiper-container .swiper-button-next {
        top: 70%;
        height: 35px;
        width: 35px;
    }

    .heroSwiper-container .swiper-button-prev:after,
    .heroSwiper-container .swiper-button-next:after {
        font-size: 14px;
    }

    .heroSwiper-container .swiper-button-prev {
        left: 8px;
    }

    .heroSwiper-container .swiper-button-next {
        right: 8px;
    }
}

.menu-items {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, calc(100% - 12px));
    z-index: 15;
    display: flex;
    justify-content: center;
    column-gap: 40px;
    margin: 0 auto;
}
@media screen and (max-width:980px) {
    .menu-items {
        gap: 16px;
    }
}
@media screen and (max-width:465px) {
    .menu-items {
        /* position: initial;
        left: 0%;
        transform: none;
        flex-wrap: wrap;
        margin: 16px auto; */
        gap: 8px;
        width: calc(100% - 16px);
    }
}

.menu-items > .menu-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 150px;
    aspect-ratio: 1;
    font-weight: bold;
    font-size: 16px;
    background-color: #EEEEEE;
    color: var(--accent-color);
    border-radius: 50%;
}
@media screen and (max-width:1200px) {
    .menu-items > .menu-item {
        width: 120px;
    }
}
@media screen and (max-width:980px) {
    .menu-items > .menu-item {
        width: 100px;
    }
}
@media screen and (max-width:768px) {
    .menu-items > .menu-item {
        width: 80px;
    }
}
@media screen and (max-width:465px) {
    .menu-items > .menu-item {
        width: 65px;
    }
}
@media screen and (max-width:400px) {
    .menu-items > .menu-item {
        width: 60px;
    }
}

.menu-item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.menu-item > a > .icon {
    height: 60px;
    width: auto;
}
@media screen and (max-width:980px) {
    .menu-item > a > .icon {
        height: 40px;
        width: 40px;
    }
}

.menu-item > a > .label {
    line-height: 1;
    text-align: center;
    word-break: nowrap;
}
@media screen and (max-width:980px) {
    .menu-item > a > .label {
        font-size: 14px;
    }
}
@media screen and (max-width:768px) {
    .menu-item > a > .label {
        font-size: 12px;
    }
}
@media screen and (max-width:400px) {
    .menu-item > a > .label {
        font-size: 10px;
    }
}


.menu-item > a > .budge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 2.5px 5px;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 4px;
    text-align: center;
}
@media screen and (max-width:1200px) {
    .menu-item > a > .budge {
        bottom: -5px;
    }
}
@media screen and (max-width:980px) {
    .menu-item > a > .budge {
        bottom: -5px;
    }
}
@media screen and (max-width:768px) {
    .menu-item > a > .budge {
        bottom: -10px;
        font-size: 12px;
    }
}
@media screen and (max-width:465px) {
    .menu-item > a > .budge {
        bottom: -32px;
    }
}