.border-primary {
    --bs-border-opacity: 1;
    border-color: #27aae2;
}

.blue-circle {
    position: relative;
}

.blue-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    /* Adjust this value to position the circle */
    left: 2.3%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: #27aae2af;
    border-radius: 50%;
    z-index: 1;
}

.blue-circle h2 {
    position: relative;
    z-index: 2;
}

@media (max-width:765px) {
    .blue-circle::before {
        content: '';
        position: absolute;
        top: -8px;
        /* Adjust this value to position the circle */
        left: 2.3%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        background-color: #27aae2af;
        border-radius: 50%;
        z-index: 1;
    }

}