.banner-modular-2 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    background-color: #f4f6f9;
}
.banner-modular-2 .content-wrapper {
    position: relative;
    width: 87.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner-modular-2 .content-wrapper .headline {
    font-size: 1.5rem;
    color: #7a94b8;
    line-height: 2rem;
    text-align: center;
}
.banner-modular-2 .content-wrapper .items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10rem;
    height: 45rem;
    transition: 1s;
    overflow: hidden;
}
.banner-modular-2 .content-wrapper .items-wrapper .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 5.5rem;
}
.banner-modular-2 .content-wrapper .items-wrapper .item .item-icon {
    display: flex;
    width: 6.75rem;
    height: 6.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 3rem;
}
.banner-modular-2 .content-wrapper .items-wrapper .item .item-icon > img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}
.banner-modular-2 .content-wrapper .items-wrapper .item .item-headline {
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #121821;
    font-weight: 500;
}
.banner-modular-2 .content-wrapper .items-wrapper .item .item-description {
    font-size: 1rem;
    line-height: 1.25rem;
    text-align: center;
    color: #7a94b8;
}
.banner-modular-2 .content-wrapper .button-container {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    background: linear-gradient(#f4f6f900 0%, #f4f6f9ff 100%);
    background-position: 0rem;
    height: 38.5rem;
    width: 100%;
    transition: 1s;
}
.banner-modular-2 .content-wrapper .button-container .expand-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16.25rem;
    height: 4rem;
    background-color: #0047ff;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: white;
    transition: 1s;
}
.banner-modular-2 .content-wrapper .button-container .expand-button:hover {
    cursor: pointer;
}
/* .banner-modular-2 .expanded .items-wrapper {
    height: calc(23.75rem * 3);
} */
.banner-modular-2 .expanded .button-container {
    display: none;
}

@media (max-width: 87.25rem) {
    .banner-modular-2 {
        padding: 6rem 6rem 6rem;
    }
    .banner-modular-2 .content-wrapper {
        width: 100%;
    }
    .banner-modular-2 .content-wrapper .headline {
        font-size: 2rem;
        line-height: 2.625rem;
        margin-bottom: 3rem;
    }
    .banner-modular-2 .content-wrapper .items-wrapper {
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
        height: 75rem;
    }
    .banner-modular-2 .content-wrapper .items-wrapper .item {
        max-width: 16rem;
        margin-top: 3rem;
    }
    .banner-modular-2 .content-wrapper .button-container .expand-button {
        width: 18.5rem;
        height: 4.5rem;
        font-size: 1.5rem;
    }
    /* .banner-modular-2 .expanded .items-wrapper {
        height: calc(30rem * 5);
    } */
    .banner-modular-2 .expanded .button-container {
        bottom: -5.25rem;
    }
}
@media (max-width: 43.75rem) {
    .banner-modular-2 {
        padding: 4.5rem 1.25rem 4.5rem;
    }
    .banner-modular-2 .content-wrapper .headline {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 2rem;
    }
    .banner-modular-2 .content-wrapper .items-wrapper {
        grid-template-columns: 1fr;
        column-gap: unset;
        height: 90rem;
    }
    .banner-modular-2 .content-wrapper .items-wrapper .item {
        max-width: 18rem;
        margin-top: 4rem;
    }
    .banner-modular-2 .content-wrapper .button-container .expand-button {
        width: 15.25rem;
        height: 3rem;
        font-size: 1.5rem;
    }
    /* .banner-modular-2 .expanded .items-wrapper {
        height: calc(30rem * 9);
    } */
    .banner-modular-2 .expanded .button-container {
        bottom: -3.75rem;
    }
}
