
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Nunito',Arial,Helvetica,sans-serif;
}

.split-container {
    position: relative;
    overflow: hidden;
}

.half-panel {
    height: 100vh;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    display: table;
    <!-- width: 100%; -->
}

.panel-inner {
    display: table-cell;
    vertical-align: middle;
}

.left-panel {
    /* background-color: #3b2b59; */
    background-color: #85aeab;
}

.right-panel {
    background-color: #97C4BF;
    color: white;
}

.btn-custom-dark {
    /*  background-color: #2f2742; */
    color: #fff;
    border: 2px solid white;
}

    .btn-custom-dark:hover {
        background-color: rgba(255,255,255,0.1);
    }

.btn-custom-green {
    color: #fff;
    border: 2px solid white;
}

    .btn-custom-green:hover {
        background-color: rgba(255,255,255,0.1);
    }

.chevron-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 60px;
    background: #a0c634;
    z-index: 2;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

    .chevron-divider::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 60px;
        background: #3b2b59;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
    }

h1 small {
    display: block;
    font-size: 32px;
    color: inherit;
    padding-bottom: 10px;
}

.placeholder-img {
    width: 400px;
    margin: 0 auto 20px;
}

@@media (max-width:991px) {
    .half-panel {
        height: 50vh;
    }
}

.btn.focus, .btn:focus, .btn:hover {
    color: lightgrey;
}

.btn {
    font-size: 20px;
}


.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4; /* Adjust transparency as needed */
}

.panel-inner > *:not(.overlay-img) {
    position: relative;
    z-index: 2;
}


