body {
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#ppsnon {
    height: 0;
    padding: 0;
    border: 0 !important;
    background: #fff;
    margin: 0 !important;
    top: -999px;
    position: absolute;
}

.text-center {
    text-align: center;
}

.f-600 {
    font-weight: 600;
}


h1 {
    font-size: 65px;
    font-weight: bold;
    line-height: 1.2;
    font-family: "Poppins";
    margin: 10px 0px;
    color: #fff;
}

h2 {
    font-size: 50px;
    color: rgb(0, 0, 0);
    line-height: 1.2;
    font-weight: bold;
    width: 70%;
    margin: 20px auto;
}

.sub-heading {
    margin: 20px auto;
    font-size: 26px;
}

p {
    font-size: 18px;
}

.container {
    padding: 50px;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
}


.img-highlight {
    background-image: url(/img/capture-highlight.png);
    object-position: center;
    object-fit: contain;
    background-repeat: no-repeat;
    color: #000;
}

.num-text {
    font-family: Anton, sans-serif;
    font-weight: 500;
}

.highlight {
    background: #efec10;
    font-weight: 600;
    width: fit-content;
    margin: 20px auto;
    color: #000;
}

.important-note {
    color: red;
}

.header-sec {
    background: linear-gradient(to bottom, #4329b1 0%, #4329b1 25%, #8231c3 70%, #8231c3 100%);
    color: white;
    text-align: center;
    padding-bottom: 8rem;
}

.header-sec .list-sec {
    text-align: start;
    width: 800px;
    margin: 50px auto;
}

.header-sec .highlight {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}

.header-sec .container::after {
    content: "";
    background-image: url(/img/arrow.png);
    width: 60px;
    height: 100px;
    object-position: center;
    object-fit: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 48%;
    bottom: unset;
    margin-top: 30px;
    animation: upDown 2s infinite ease-in-out;
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.form-details {
    margin-top: -12%;
    z-index: 1;
    position: relative;
    text-align: center;
}

.form-details .sec-top-mask {
    background: #fff;
    padding-top: 30px;
    margin-top: -8px;
}

.form-sec .form-step-1 .form-input-body {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    /* max-width: 800px; */
    margin: 70px auto 30px;
    text-align: start;
    gap: 20px;
}

.form-sec label,
.radio-heading {
    font-weight: 600;
}

.form-sec .text-field input {
    width: 92%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}

.capture1 .form-sec .form-step-1 .submit input {
    width: 98%;
}

.form-sec .form-step-1 .submit input {
    width: 50%;
    text-transform: uppercase;
    font-weight: 600;
}

.form-sec {
    max-width: 800px;
    margin: 0 auto;
}

.form-step-1 form {
    margin-bottom: 50px;
}

.form-sec [type="submit"] {
    width: 100%;
    margin-top: 25px;
    cursor: pointer;
    background: #4329b1;
    color: #fff;
}

.form-sec [type="submit"]:hover {
    background: #8231c3;
}

@media screen and (max-width: 1032px) {
    h2 {
        width: 100%;
    }

    .form-details .sec-top-mask {
        padding-top: unset;
    }

    .form-sec .form-step-1 .form-input-body {
        margin: 30px auto 30px;
    }
}

@media screen and (max-width: 768px) {
    .header-sec .list-sec {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 42px;
    }

    .container {
        padding: 20px 20px;
    }

    .header-sec .highlight {
        font-size: 22px;
    }

    h2 {
        width: 100%;
        font-size: 32px;
    }

    .sub-heading {
        width: 100%;
    }

    .form-sec .form-step-1 .form-input-body,
    .personal-info .form-input-body {
        grid-template-columns: repeat(1, 1fr);
    }

    .personal-info .submit input,
    .form-sec .form-step-1 .submit input {
        width: 100%;
    }

    .header-sec .container::after {
        left: 42%;
    }

    .header-sec {
        padding-bottom: 8rem;
    }
}

.error, .unhappyMessage {
    color: red;
    font-weight: 300 !important;
    font-size: 12px;
}

.error {
    font-size:15px;
}