body{
    overflow: hidden; /* Prevent scrolling */
}

.group {
    width: 100%;
    padding: 2rem 1rem;
}

.group .heading {
    position: relative;
    z-index: 10;
    width: -moz-fit-content;
    width: fit-content;
}

.group .heading p {
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0);
    font-family: Calibri;
}

.group .heading span {
    z-index: -1;
    position: absolute;
    bottom: 1px;
    right: -10px;
    height: 45%;
    width: 50%;
    background-color: #ffffff;
}

.group .boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    margin-top: 1.5rem;
}

.group .boxes .box {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
}

.group .boxes .box.open .box__title {
    border-radius: 5px 5px 0 0;
}

.group .boxes .box.open .box__content {
    opacity: 1;
    grid-template-rows: 1fr;
}

.group .boxes .box .box__title {
    color: #eee;
    background-color:#0d2e5a;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    border-radius: 5px;
}

.group .boxes .box .box__title h1 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: Calibri;
}

.group .boxes .box .box__title svg {
    height: 3rem;
    width: auto;
    fill: #eee;
}

.group .boxes .box .box__content {
    padding: .5rem;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 500ms, opacity 200ms;
    border-radius: 0 0 5px 5px;
}

.group .boxes .box .box__content div {
    overflow: hidden;
}

.group .boxes .box .box__content div li {
    display: flex;
    padding: .5rem 1rem;
    padding-right: .5rem;
    gap: .3rem .5rem;
    font-family: "Poppins";
    flex-direction: column;
}

.group .boxes .box .box__content div li span {
    font-size: 1.2rem;
    font-weight: 500;
}

.group .boxes .box .box__content div li p {
    font-size: 1rem;
    font-weight: 400;
}

.loader {
    position: relative;
    width: 64px;
    height: 60px;
}

.loader::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #1e1e1e;
    width: 64px;
    height: 32px;
    border-radius: 0 0 50px 50px;
    animation: move .5s linear infinite alternate;
}

.loader::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    background: #ffc400;
    width: 24px;
    height: 24px;
    transform: translateX(-50%) rotate(0deg);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes move {
    0% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@media only screen and (max-width: 828px) {
    .heading {
        margin: 0 auto;
    }
}
