.menu {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
    width: fit-content;
    min-height: 200px;
}

.items {
    display: flex;
    column-gap: 15px;
    justify-content: center;
}

.group {
    display: none;
}

img {
    width: 20px;
}

.items>div {
    width: fit-content;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.items button {
    border-top-right-radius: 30px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: bold;
    background-color: white;
    border: none;
    color: inherit;
	cursor: pointer;
}

.menu span {
    border-left: 3px dotted #3d4d96;
}

.menu>.group {
    padding: 25px 0px;
    border-top: none;
    background-color: white;
    gap: 10px;
    border-bottom: 5px solid;
}

.menu>.group>a {
    display: flex;
    color: #192a64 !important;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    width: 30%;
    margin-left: 20px;
}


.items .group {
    display: none;
}


/* Desktop (1200px and above) */
@media only screen and (min-width: 1200px) {
    .items>div {
        width: 180px;
        height: 85px;
    }

    .items button {
        width: 180px;
        height: 85px;
        font-size: 13px;
        padding-left: 5px;
    }

    .items img {
        width: 60px;
        margin-right: 3px;
        margin-left: 10px;
    }

    .items .group {
        display: none !important;
    }
}

/* Tablet and Small Desktop (900px - 1200px) */
@media only screen and (min-width: 1000px) and (max-width: 1200px) {
    .items>div {
        width: 145px;
        height: 65px;
    }

    .items button {
        width: 145px;
        height: 65px;
        font-size: 12px;
    }

    .items img {
        width: 40px;
        margin-right: 1px;
        margin-left: 5px;
    }

    .items .group {
        display: none !important;
    }
}

@media (max-width: 1000px) {
    .menu {
        max-width: 80%;
    }

    .menu>.group {
        display: none !important;
    }

    .items {
        display: block;
    }

    .items button {
        width: -webkit-fill-available;
        height: 65px;
        margin-bottom: 0px;
    }

    .items>div {
        width: -webkit-fill-available;
    }

    .items img {
        width: 40px;
        margin-right: 1px;
        margin-left: 5px;
    }

    .items .group {
        border-top: none;
        background-color: #f0f0f0;
        gap: 10px;
        flex-direction: column;
        padding: 20px;
        width: auto;
    }

    .items .group a {
        text-decoration: none;
        color: #192a64;
    }

    .items .group a::after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background-color: #192a64;
        margin-top: 8px;
    }
}