@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
    font-size: clamp(15px, 2vw, 18px);
    font-family: "Instrument Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
.h1 {
    font-size: clamp(25px, 4vw, 45px);
    line-height: 1.2em;
    font-family: "Instrument Sans", sans-serif;
}


h2,
.h2 {
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1.1em;
    font-family: "Instrument Sans", sans-serif;
}

.text-font-size h1 {
    font-size: clamp(28px, 2.604vw, 50px);
}

h3,
.h3 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2em;
    font-weight: 600;
    font-family: "Instrument Sans", sans-serif;
}

h4,
.h4 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2em;
    font-family: "Instrument Sans", sans-serif;
}

h5,
.h5 {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.2em;
    font-family: "Instrument Sans", sans-serif;
}

h6,
.h6 {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4em;
    color: #565656;
    font-family: "Instrument Sans", sans-serif;
}

p,
a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px !important;
    color: #565656;
    font-family: "Instrument Sans", sans-serif;
}

.footer-main p,
.footer-main a {
    color: #fff !important;
}

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

    header ul li::marker,
    footer ul li::marker {
        content: unset;
    }

@media (min-width: 576px) {
    .footer-logo {
        max-width: 300px;
    }
}

ul li::marker {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 33 34' fill='none'><path d='M32.1083 17.9084L5.69402 0C9.86969 3.42596 9.96459 7.91604 9.49008 9.73284L24.0417 19.9848L3.79599 33.7405L32.1083 17.9084Z' fill='%231475CF'/><path d='M8.38297 11.6793C8.1299 12.6137 5.85226 13.9719 4.74508 14.5343L14.8679 21.2824L0 34L20.562 19.9847L8.38297 11.6793Z' fill='%23259821'/></svg>");
}


a,
a:hover,
a:focus {
    text-decoration: none !important;
}

.color-green {
    color: #38972C;
}

.color-blue {
    color: #1658A6;
}

.bg-green {
    background-color: #38972C;
}

.bg-blue {
    background-color: #1658A6;
}

.bg-grey {
    background: #E4E4E4;
}

img {
    border-style: none;
}

/*header*/
/* Top Green Bar */


@media (min-width:768px) {
    .navbar-custom a {
        position: relative;
    }

        .navbar-custom a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 0px;
            right: 0;
            background: #fff;
            transition: width .5s ease-in-out;
        }

        .navbar-custom a:hover:after, .navbar-custom a.active:after {
            width: 100%;
            left: 0;
            background: #fff;
        }

    .navbar-collapse,
    .navbar-custom li:last-child > a {
        padding-right: 0;
    }
}

.top-bar {
    background: linear-gradient(69deg, #fff 32%, #38972C 32%);
    color: #fff;
    font-size: 15px;
    padding: 6px 20px;
}

@media (max-width: 992px) {
    .navbar-custom .nav-link {
        color: #1658A6 !important;
    }

    .top-bar {
        background: linear-gradient(69deg, #fff 50%, #38972C 50%);
        /*border-bottom: 5px solid #38972C;*/
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }

    p,
    a {
        font-size: 16px !important;
    }
}

.top-bar .logo,
.navbar-custom .logo {
    font-weight: bolder;
    font-size: 25px;
    color: #38972C;
}

.top-bar small {
    color: #fff;
}

/* Contact Button */
/*.btn-contact
{
    background: #fff;
    color: #1658A6;
    border: 1px solid #1658A600;
    border-radius: 50px;
    font-size: 14px;
    padding: 6px 18px;
    gap: 6px;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

    .btn-contact:hover
    {
        background: #1658A6;
        color: #FFF;
    }*/


/* btn-contact styles */
.btn-contact {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #1658A6;
    font-size: 18px;
    padding: 11px 18px;
    width: 150px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    /* button-bg-1 */
    transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
    .btn-contact {
        background-color: #1658A6;
        color: #fff;
    }
}

.btn-contact:before {
    content: "\F5C1";
    font-family: "bootstrap-icons";
    font-size: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 40px;
    transition: all 0.5s ease-in-out;
}

.btn-contact:hover {
    text-indent: -20px;
}

    .btn-contact:hover:before {
        opacity: 1;
        text-indent: 0px;
    }

/* btn-contact styles */
.btn-green {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 18px;
    padding: 13px 18px;
    width: 190px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #38972C;
    /* button-bg-1 */
    transition: all 0.5s ease-in-out;
}


    .btn-green:before {
        content: "\F64D";
        font-family: "bootstrap-icons";
        font-size: 15px;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        opacity: 0;
        height: 100%;
        width: 40px;
        transition: all 0.5s ease-in-out;
    }

.contact-form .btn-green:before {
    content: "\F6C0";
    font-family: "bootstrap-icons";
    font-size: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 40px;
    transition: all 0.5s ease-in-out;
}

.btn-green:hover {
    text-indent: -20px;
}

    .btn-green:hover:before {
        opacity: 1;
        text-indent: 0px;
    }

.btn-white {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #38972C;
    font-size: 18px;
    padding: 6px 18px;
    width: 200px;
    border-radius: 50px;
    font-weight: 700;
    overflow: hidden;
    background-color: #fff;
    /* button-bg-1 */
    transition: all 0.5s ease-in-out;
}


    .btn-white:before {
        content: "\F64D";
        font-family: "bootstrap-icons";
        font-size: 15px;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        opacity: 0;
        height: 100%;
        width: 40px;
        transition: all 0.5s ease-in-out;
    }

    .btn-white:hover {
        text-indent: -20px;
    }

        .btn-white:hover:before {
            opacity: 1;
            text-indent: 0px;
        }


.btn-green-button {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 18px;
    padding: 6px 18px;
    width: 200px;
    border-radius: 50px;
    font-weight: 500;
    overflow: hidden;
    background-color: #38972C;
    transition: all 0.5s ease-in-out;
}


    .btn-green-button:before {
        content: "\F64D";
        font-family: "bootstrap-icons";
        font-size: 15px;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        opacity: 0;
        height: 100%;
        width: 40px;
        transition: all 0.5s ease-in-out;
    }

    .btn-green-button:hover {
        text-indent: -20px;
    }

        .btn-green-button:hover:before {
            opacity: 1;
            text-indent: 0px;
        }

.btn-green-button {
    width: 310px;
    border-radius: 0;
    padding-block: 15px;
}

    .btn-green-button:before {
        content: "\F30A";
        font-family: "bootstrap-icons";
    }

.saving-card-btn.btn-white {
    width: 310px;
    border-radius: 0;
    padding-block: 15px;
}

    .saving-card-btn.btn-white:before {
        content: "\F30A";
        font-family: "bootstrap-icons";
    }

.submit-button .btn-white {
    width: 111px;
}

    .submit-button .btn-white:before {
        content: "\F6B9";
    }

.submit-report-button .btn-white {
    width: 159px;
}

.green-patch {
    border-radius: 8px 8px 0 0;
    background-color: #38972C;
    font-weight: 600;
    width: fit-content;
    margin: auto;
    color: #fff;
    padding: 6px 18px;
}

/* Blue Navbar */
.navbar-custom {
    background-color: #1842b6;
    padding: 0;
}

    .navbar-custom .nav-link {
        color: #fff !important;
        padding-block: 9px;
        margin-block: 14px;
    }

/*        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            border-bottom: 1px solid #fff
        }*/

@media (max-width: 992px) {
    .navbar-custom .nav-link {
        color: #1658A6 !important;
    }
}

.navbar-custom .nav-link.active, .footer ul li p a.active {
    font-weight: 600;
}

/*.navbar-custom .nav-link:hover {
    text-decoration: underline;
}*/


/* navbar-toggler white color */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}


.offcanvas-header {
    border-bottom: 1px solid #1D3FAF;
}

/*-------banner--------*/
#hm-banner {
    background: url(../img/targeted-treatment-for-uncomplicated-uuti.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 120px;
    padding-block: 100px;
}

@media (max-width:991px) {
    #hm-banner {
        padding-block: 60px;
        margin-top: 70px;
        background: url(../img/targeted-treatment-for-uncomplicated-uuti-mob.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width:400px) {
    .saving-card-btn.btn-white {
        width: 250px;
    }
}

.hm-banner-content {
    max-width: 560px;
}

#inner-banner {
    background: url('../img/pivya-inner-banner-img.png'), url('../img/pivya-inner-banner-img.webp');
    margin-top: 133px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

@media(max-width: 992px) {
    #inner-banner {
        margin-top: 50px;
    }
}


@media(max-width: 576px) {
    #inner-banner {
        margin-top: 74px;
    }
    .btn-green-button{
        width:auto;
    }
}

@media(max-width: 432px) {
    #inner-banner {
        margin-top: 74px;
    }
}


#saving-card {
    background: url(../img/pivya-saving-card-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-info h5 {
    color: #1475CF;
    margin-top: 20px;
}

.contact-info p {
    margin: 0;
}

.contact-card {
    border: 1px solid #ACACAC;
    border-radius: 4px;
    padding: 20px;
    background: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #E2EEF9;
    border: none;
    border-radius: 8px;
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        background: #E2EEF9;
        box-shadow: unset;
    }

.icon-circle {
    width: 60px;
    height: 60px;
    background: #C0FFBE;
    color: #259821;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Emergency box */
.emergency-box {
    background: #f3f6f9;
    border-radius: 6px;
}

.step-list {
    list-style-type: decimal;
}


    .step-list li::marker {
        color: #1658A6;
    }


.text_grey {
    color: #565656;
}

.color_blue_light {
    color: #1475CF;
}

ul.list_normal li::marker {
    content: unset;
}

.table thead th {
    background-color: #b8f5c2; /* green header */
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    padding-left: 25px;
    padding-bottom: 20px;
}

table {
    color: #565656;
}

.table tbody td {
    color: #565656;
    font-weight: 600;
    white-space: nowrap !important;
    padding-left: 25px;
    /*    vertical-align: middle;
*/
}

.trial-label {
    font-weight: bold;
    text-align: left;
    background-color: #f8f9fa;
}

.row-highlight td {
    background: #1475CF1F;
    color: #565656 !important; /* optional */
}

.no-wrap {
    white-space: nowrap !important;
}

.table_success td {
    background: #C0FFBE;
    padding-top: 20px;
    font-size: 20px;
    padding-bottom: 20px;
}

.text-blue-hover:hover {
    color: #1475CF !important;
}

.pivya-point-icon {
    margin-top: -30px;
}

#inner-banner .font-awe {
    font-size: clamp(16px, 2vw, 20px) !important;
}

#sitemap-content h3 a {
    font-size: 25px !important;
    font-weight: 500 !important;
    transition: 0.3s ease-in-out;
}


.btn-greens {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 14px 33px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #38972C;
    transition: all 0.5s ease-in-out;
}

    .btn-greens:hover {
        background-color: #2f7d25; /* slightly darker green */
        box-shadow: 0 6px 15px rgba(56, 151, 44, 0.35);
    }


@media(max-width: 1200px) and (min-width: 992px) {
    .navbar-custom .nav-link {
        font-size: 15px !important;
    }
}

.text-small {
    font-size: 14px !important;
}

#safety-info-footer {
    height: 0px;
    overflow-y: scroll;
    background: #FFF;
    color: #000;
    transition: all 0.5s ease-in-out;
}

    #safety-info-footer.expanded {
        height: 200px;
    }

.safety-info-footer.fixed {
    position: fixed !important;
    width: 100%;
    bottom: 0 !important;
    z-index: 999;
    animation: slideup 0.5s ease-in-out;
}
.safety-info {
    position: fixed;
    width: 100%;
    bottom: 0px;
}

.footer-bottom {
    margin-bottom: 50px;
}



@media(max-width: 768px) {
    .footer-bottom {
        margin-bottom: 46px;
    }
}

.form-control {
    padding: 18px 15px;
}
.form-control:focus{
    box-shadow:unset;
}



#adverse-event .stepper .nav-link.current-step {
    color: #004FA8;
    font-weight: bold;
    border-bottom: 2px solid #004FA8;
}

@media(max-width: 576px) {
    #adverse-event .stepper .nav-link.current-step {
        color: #fff;
        font-weight: bold;
        border-bottom: 2px solid #004FA8;
    }
}

#adverse-event .stepper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 2rem;
}

    #adverse-event .stepper .nav-link {
        position: relative;
        font-weight: 600;
        background: none;
        border: none;
        color: #393939;
    }

        #adverse-event .stepper .nav-link.active {
            color: #004FA8;
            font-weight: bold;
        }

        #adverse-event .stepper .nav-link::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -80px;
            width: 80px;
            height: 1px;
            background: #393939;
            transform: translateY(-50%);
            z-index: -1;
        }

    #adverse-event .stepper .nav-item:first-child .nav-link::before {
        content: none;
    }

@media (max-width: 575.98px) {
    #adverse-event .stepper {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

        #adverse-event .stepper .nav-link {
            display: block;
            width: 100%;
            background: #004FA8;
            color: #fff;
            border-radius: 6px;
            padding: 10px 15px;
            text-align: center;
        }

            #adverse-event .stepper .nav-link.active {
                background: #003580;
                color: #fff !important;
            }

            #adverse-event .stepper .nav-link::before {
                display: none;
            }
}

#adverse-event ul li::marker {
    content: unset !important;
}

#adverse-event .underline-below {
    text-decoration: underline;
    text-decoration-color: #004FA8;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
}

#adverse-event .custom-padd {
    padding: 28px 25px 45px 25px;
}

#adverse-event .btn-prev {
    border: 1px solid #004FA8;
    background-color: #ffffff;
    color: #004FA8 !important;
    padding: 14px 33px;
    transition: 0.3s;
    border-radius: 50px;
}

#adverse-event .btn-next {
    background-color: #008FD6;
    color: #ffffff !important;
    padding: 14px 33px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
    border-radius: 50px;
}

#adverse-event .btn-prev:hover {
    background-color: #004FA8;
    color: #ffffff !important;
}

#adverse-event .btn-next:hover {
    background-color: #007bb7;
}

#adverse-event .form-control, #adverse-event select {
    background: #E2EEF9 !important;
    border: none !important;
    border-radius: 8px;
}

#adverse-event .form-check-input {
    border: 1px solid rgb(0, 0, 0);
}

#adverse-event .btn-greens {
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 14px 33px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #38972C;
    transition: all 0.5s ease-in-out;
    border: hidden;
}

.otp_border {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.btn_otp {
    background: #1842b6;
    font-weight: 600;
    z-index: 0;
}

    .btn_otp:hover {
        background: #38972c;
    }

.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 575.98px) {
    .btn_otp {
        font-size: 11px;
        padding: 2px !important;
    }

    #adverse-event .custom-padd {
        padding: 28px 10px 45px 10px;
    }
}