.why-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.parent {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr 1fr 3fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 40px;
}

.parent > div {
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #E0E9FF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.div1 {
    grid-area: 1 / 1 / 2 / 3;
}

.div2 {
    grid-area: 1 / 3 / 2 / 5;
}

.div3 {
    grid-area: 2 / 2 / 3 / 5;
}

.div4 {
    padding: 0 !important;
    grid-area: 2 / 1 / 4 / 2;
    height: 580px;
    position: relative;
    overflow: hidden;
}

.div5 {
    grid-area: 3 / 2 / 4 / 4;
}

.div6 {
    grid-area: 3 / 4 / 4 / 6;
}

.div7 {
    padding: 0 !important;
    grid-area: 1 / 5 / 3 / 6;
    height: 580px;
    position: relative;
    overflow: hidden;
}

.bg-video {
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.video-controls-play {
    position: absolute;
    left: calc(50% - 17px);
    top: 50%;
    display: flex;
    z-index: 2;
}

.video-controls-play button {
    background: rgba(245, 247, 255, 0.4);
    padding: 2px 0 0 2px;
    backdrop-filter: blur(1px);
    border-radius: 50%;
    border: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: rgba(11, 16, 40, 0.6);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    z-index: 2;
}

.video-controls button {
    background: rgba(245, 247, 255, 0.4);
    backdrop-filter: blur(1px);
    border-radius: 50%;
    border: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: rgba(11, 16, 40, 0.6);
}


.why-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-title small {
    color: #072AC8;
    font-family: 'BoldFont', sans-serif;
}

.why-title span {
    border-radius: 50%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding: 20px;
}

.div1 .why-title span {
    background-color: #FFE6ED;
}

.div2 .why-title span {
    background-color: #EFF8FA;
}

.div3 .why-title span {
    background-color: #FFECCE;
}

.div5 .why-title span {
    background-color: #C8D0F3;
}

.div6 .why-title span {
    background-color: #EDEDED;
}

.why-title span img {
    background-position: center;
    background-size: cover;
    width: 20px;
}

.paras {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #072AC880;
    backdrop-filter: blur(1px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fullscreen-video {
    height: auto;
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 20px;
}

.closeFullscreenBtn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
}

@media screen and (max-width: 768px) {
    .paras {
        margin-top: 20px;
        gap: 20px;
    }

    .parent {
        display: flex;
        margin-top: 20px;
        flex-direction: column;
        gap: 12px;
    }

    .video-controls-play button {
        padding: 0;
    }
}
