.faq {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    grid-gap: 24px;
    gap: 24px;
    background-color: #ececec;
}
.faq .middle-panel {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px 16px 16px;
    height: 100%;
}
@media screen and (min-device-width: 912px) and (max-device-width: 1368px) and (orientation: portrait) {
    .faq .middle-panel {
        height: calc(100vh - 541.17px);
        overflow: hidden;
        overflow-y: scroll;
    }
}
.faq .middle-panel .heading {
    background: linear-gradient(90.39deg, #656bff 1.04%, #6892ff 44.46%, #557aff 91.44%);
    border-radius: 4px;
    padding: 16px;
    grid-gap: 6px;
    color: #ffffff;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    text-transform: uppercase;
    /* identical to box height */
    margin-bottom: 32px;
}
.faq .middle-panel .iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 32px;
}
.faq .middle-panel .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.faq .middle-panel .description {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .faq .middle-panel {
        padding: 16px;
        width: 100%;
    }
    .faq .middle-panel .middle-panel {
        min-width: auto;
        width: 100%;
    }
}
