.content-separator {
    position: relative;
    height: 60px;
    width: 100%;
    overflow: hidden;
    background-color: #01050E;
}

.separator-outer-left,
.separator-curve-left,
.separator-middle,
.separator-curve-right,
.separator-outer-right {
    position: absolute;
    top: 0;
    height: 100%;
}

.separator-outer-left,
.separator-outer-right {
    width: calc((100% - 1300px) / 2);
    z-index: 2;
}

.separator-outer-left {
    left: 0;
}

.separator-outer-right {
    right: 0;
}

.separator-curve-left,
.separator-curve-right {
    width: 150px;
    z-index: 2;
    overflow: hidden;
}

.separator-curve-left {
    left: calc((100% - 1200px) / 2 - 150px);
}

.separator-curve-right {
    right: calc((100% - 1200px) / 2 - 150px);
}

.separator-curve-left svg,
.separator-curve-right svg {
    display: block; /* This ensures no extra space below the SVG */
    width: 100%;
    height: 100%;
}

.separator-middle {
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    background: #0B111D;
    z-index: 1;
}

@media (max-width: 1300px) {
    .separator-outer-left,
    .separator-outer-right {
        width: 0;
    }
    .separator-curve-left {
        left: 0;
    }
    .separator-curve-right {
        right: 0;
    }
}

@media (max-width: 1200px) {
    .separator-middle {
        width: calc(100% - 300px);
    }
}

@media (max-width: 768px) {
    .content-separator {
      display: none;
    }
  }