.dual-content-panels {
    display: flex;
    gap: 0;
    /* flex-wrap: wrap; */
    margin-bottom: 120px;
}

.dual-content-panel {
    padding: 40px;
    border-radius: 40px !important;
    box-sizing: border-box;
    min-height: 240px;
    width: 100%;
}

.dual-content-panel h3 {
	margin: 0 0 15px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.dual-content-panel p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

.dual-content-panel-outer {
    /* width: calc(50% - 30px) !important; */
    padding: 7px;
    background: #fff;
    border-radius: 44px;
    flex: 0 0 calc(50% - 30px);
}

.dual-panel-1 .dual-content-panel h3::before {
    width: 40px;
    height: 3px;
    background: #fff;
    position: absolute;
    content: "";
    margin-top: 12px;
    /* margin-right: 15px; */
    left: 0;
}

.dual-panel-2 .dual-content-panel h3::after {
    width: -webkit-fill-available;
    height: 3px;
    background: #fff;
    position: absolute;
    content: "";
    margin-top: 12px;
    margin-left: 15px;
}

.dual-panel-1::before {
    width: var(--before-width-1, 0);
    border: 3px dotted #ffc20d;
    content: "";
    display: block;
    height: var(--before-height-1, 0); /* default to 296px if not set */;
    position: absolute;
    border-radius: 44px;
    margin-top: -12px;
    margin-left: -12px;
}

.dual-panel-2::before {
    width: var(--before-width-2, 0);
    border: 3px dotted #012379;
    content: "";
    display: block;
    height: var(--before-height-2, 0); /* default to 326px if not set */;;
    position: absolute;
    border-radius: 44px;
    margin-top: 12px;
    margin-left: 12px;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .dual-content-panels {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .dual-content-panel-outer {
        flex: 0 0 100%;
    }
    .dual-panel-1::before, .dual-panel-2::before {
        display: none;
    }
    
}
