.mjs-contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e9e9ee;
    border-radius: 999px;
    padding: 8px 10px;
    width: fit-content;
    padding-right: 20px;

}

.header-top .mjs-contact-box {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
}

.mjs-avatar-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.mjs-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 50%;
    display: block;
}

.mjs-status-dot {
    position: absolute;
    right: 2px;
    bottom: 2px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: red;

    transition: background .3s ease;
}

.mjs-status-dot.mjs-online {
    background: #32c852;
}

.mjs-contact-info {
    display: flex;
    flex-direction: column;
}

.mjs-phone {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
}

.mjs-hours {
    font-size: 10px;
    font-weight: 300;
    color: #234450;
    margin-top: 3px
}

.mjs-mobile-menu-contact {
    order: 99 !important;
}

@media (max-width: 1260px) {
    .header-top .mjs-contact-box {
        right: 130px;
    }
}

@media (max-width: 1160px) {
    .header-top .mjs-contact-box {
        display: none;
    }
}

@media (min-width: 768px) {
    .mjs-mobile-menu-contact {
        display: none;
    }
}

.in-index .benefitBanner {
    background: #97D2D4;
    border-radius: 25px;
}

.in-index .benefitBanner * {
    color: #fff !important;
}

.next-to-carousel-banners {
    gap: 20px;
    flex-wrap: nowrap;
}

.next-to-carousel-banners .banner-wrapper {
    flex: 50%;
    width: auto;
    border-radius: 25px;
    overflow: hidden
}

@media (max-width: 767px) {

    .next-to-carousel-banners {
        gap: 20px;
        flex-direction: column;
        padding: 20px;
    }

    .next-to-carousel-banners .banner-wrapper {
        flex: 100%;
        width: 100% !important;
    }
}