.info-panel-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    box-sizing: border-box;
}

.info-panel {
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 25rem;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 24px;
    margin-right: 0;
    margin-left: 0;

    background-image: url("./sub/images/info-panel-background.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-color: var(--primary-500);
}

.info-panel::before {
    content: '';
    background-image: url(./sub/images/linear-gradient.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.info-panel-section.support .info-panel {
    height: 19rem;
}

.info-panel .info-panel-info {
    padding: 3.375rem;
}

.info-panel-section.support .info-panel-image {
    height: 19rem;
    display: flex;
    justify-content: center;
    background-color: #F8FBFC;
}

.info-panel .info-panel-info p,
.info-panel .info-panel-info h3 {
    color: var(--primary-25);
}

.info-panel .info-panel-info h3 {
    margin-bottom: 1.25rem;
}

.info-panel .info-panel-info p:first-child {
    font-size: 2.4rem;
    line-height: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.info-panel .info-panel-image {
    width: 100%;
    height: 25rem;
    padding: 0;
    color: var(--oa-base-white);
    background-color: var(--oa-base-white);
}

.info-panel .info-panel-image img {
    height: 100%;
}

/* Desktop */
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 992px) {}


/* Mobile */
@media only screen and (max-width: 768px) {
    .info-panel-section {
        width: 25rem;
        padding: 6rem 2rem;
        box-sizing: border-box;
    }

    .info-panel-section .info-panel,
     .info-panel-section.support .info-panel {
        flex-direction: column-reverse;
        height: auto;
        background-position: bottom;
    }

    .info-panel::before {
        transform: rotate(180deg);
        background-position: center;
    }

    .info-panel .info-panel-image img {
        width: 100%;
        height: auto;
    }

    .info-panel .info-panel-info {
        padding: 2rem;
        box-sizing: border-box;
    }

    .info-panel .info-panel-info p {
        font-size: 1rem;
    }

    .info-panel .info-panel-info p:first-child {
        font-size: 1.875rem;
    }
}

@media only screen and (max-width: 576px) {
    .info-panel-section {
        width: 100%;
        padding: 2rem 1.5rem;
    }
}
