html,
body {
    /* overflow-x: hidden; */
    width: 100%;
    font-family: "Segoe UI", sans-serif;
}

.underline-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.quote {
    font-style: italic;
    font-weight: 600;
    color: black;
    border-left: 4px solid #e00000;
    padding-left: 16px;
    margin: 30px 0;
}

.underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: #fe5800;
    animation: slide 3s infinite;

    h2 {
        font-size: 20px;
        color: #0058ff;
        text-align: left;
    }
}

@keyframes slide {

    0%,
    100% {
        width: 0;
    }

    25%,
    75% {
        width: 100%;
    }
}

.advantages {
    padding-top: 9rem !important;
    color: #000000;

    h2 {
        color: #d9091e;
        font-weight: 700;
        font-size: clamp(1.75rem, 4vw, 3rem);
    }
}

.advantages_List {
    font-size: 16px;
    margin-top: 0px;
    /* text-align: justify; */
    text-align: left;
    padding: 0px;
}

ul {
    list-style-type: none;
    /* margin: 10px; */

}

dl,
ol,
ul {
    margin-top: 0.5rem;
}

.advantages_List li {
    padding-top: 1px;
    padding-bottom: -1px;

}

.PPC {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0px 10px 25px;
    /* space between icon and text */
}

.PPC i {
    color: green;
    margin-top: 4px;
    /* slight alignment tweak */
    flex-shrink: 0;
}

.PP {
    color: #000000;
    font: 16px system-ui;
    line-height: 200%;
    /* text-align: left; */
    text-align: justify;
}

.advantages_List li i {
    color: rgb(56, 193, 21);
}

/* p{
    margin-bottom: 0%;
} */

@media screen and (max-width: 776px) {
    .advantages_List {
        padding: 5px 0px;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 0;
    }

    ol,
    ul {
        padding-left: 0rem;
    }

    .underline_img {
        width: 100%;
    }

    ol.criteria,
    ol.procedure {
        padding: left 1rem;
    }
}

.parallax-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 70%;
    /* height: 140%; */
    background:
        /* linear-gradient(to right,
            rgba(179, 0, 0, 0.85),
            rgba(0, 0, 0, 0.85)), */
        url("../images/karnatakabg.png") center / cover no-repeat;
    z-index: 0;
    transform: translateY(0);
    will-change: transform;
}

.parallax-section>.container {
    position: relative;
    z-index: 2;
    background: transparent;
    color: white;
    padding: 2rem;
    border-radius: 6px;
}