:root {
    --primary-color: #0D89D4;
   
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--txt-color) !important;
}

html, body {
    height: 100%;
}
.primary-color {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.left-side {
    position: absolute;
    top: 20vh;
    left: 0;
    width: 100vw;
    height: 80vh;
}
.right-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100vh;
}
.semi-circle-container {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100vw, 100vh);
    height: min(100vw, 100vh);
    overflow: hidden;
    z-index: -1;
}

.semi-circle {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -50%;
    right: -50%;
}
.semi-circle .sanlam-logo {
    width: 44%;
    height: 100%;
    position: absolute;
    top: 12%;
    left:4%;
}
    .semi-circle .sancare-logo {
        position: absolute;
        top: 70%;
        left: 19%;
        width: 17%;
        height: auto;
    }
.main-links img
{
    width: 35px;
    height: auto;
}

.main-links a:hover, a:hover img {
    filter: brightness(0.9);
}

@media (min-width: 768px) {
    .left-side {
        left: 5vw;
        width: 65vw;
    }
}

    