.panel-section {
    height: 70vh;
    position: relative;
}

.panel-section .panels {
    position: relative;
    width: 100%;
    perspective: 1200px;
}

.section-heading{
    font-size: var(--font-48);
    font-weight: 700;
    font-family: var(--primary-font);
    color: #333333;
    margin-bottom: 35px;
}

.panel-section .panel {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 20%;
    border-radius: 24px;
    overflow: hidden;
    will-change: transform;
}

/* .panel-section .grw-card-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
} */

.section-heading {
    text-align: center;
}


.grw-card-content{
    padding: 60px 0px 0px 55px;
}

.grw-card-image{
    padding: 95px 0 85px;
}

.grw-card-image img {
    width: 100%;
    height: auto; /* important */
    object-fit: contain;
    display: block;
    max-width: 380px;
    min-height: 440px;

}

.panel-section .grw-card-title {
    color: #ffffff;
    font-weight: 700;
    font-family: 'Lexend', Sans-serif;
    font-size: var(--e-global-typography-fbc2669-font-size);
    font-weight: var(--e-global-typography-fbc2669-font-weight);
    line-height: var(--e-global-typography-fbc2669-line-height);
    margin-bottom: 30px;
    margin-top: 0px;
}

.panel-section .grw-card-desc {
    color: #ffffff;
    font-weight: 400;
    font-family: 'Inter', Sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.4em;
    max-width: 420px;
}




@media screen and (max-width: 767px) {
    
    .panel-section .panel {
        height: 90vh;
    }
    .grw-card-content {
        padding: 40px 40px 0px 40px;
    }
    .grw-card-image {
        padding: 50px 0 30px;
    }
}

@media screen and (max-width: 640px) {

}