@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Nunito',
        sans-serif;

}

:root {

    --blue: #1571C2;
    --white: #fff;
    --grey: #53555A;
    --primary-heading-font-size: 30px;
    --paragraph-font: 15px;
    --button-font: 18px
}

a {
    text-decoration: none;
}

.breadcrumb-bg {
    min-height: 290px;
    background-position: top -250px center;
    background-repeat: no-repeat;
    background-size: 100%;
}
@media (max-width:1700px) and (min-width:1601px) {
    .breadcrumb-bg {
        background-position: top -210px center;
    }
}
@media (max-width:1600px) and (min-width:1501px) {
    .breadcrumb-bg {
        background-position: top -180px center;
    }
}
@media (max-width:1500px) and (min-width:1200px) {
    .breadcrumb-bg {
        background-position: top -180px center;
    }
}

@media (max-width:1199px) {
    .breadcrumb-bg {
        background-position: center;
    }
}

@media (max-width:640px) {
    .breadcrumb-bg {
        background-size: cover;
    }
}


.breadcrumb-overlay {
    min-height: inherit;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 45.96%)
}

.breadcrumb-title h2 {

    color: var(--white);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px;
}

.section-heading h2 {
    color: var(--blue);
    font-size: var(--primary-heading-font-size);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.section-paragraph {
    font-size: var(--paragraph-font);
    color: var(--grey);
    font-weight: 400;
    line-height: 22px;
    text-align: justify;

}

.button-section a {
    color: var(--white);
    font-weight: 600;
    line-height: 122%;
    padding: 20px 40px;
    background-color: var(--blue);
    display: inline-block;
    border-radius: 40px;
    width: 280px;
    text-align: center;
}

.button-section {
    margin-bottom: 1rem;
}

.pe-lg-5,.ps-lg-5
{
    margin: auto;
}
@media only screen and (max-width: 768px) {

    :root {
        --primary-heading-font-size: 24px;
        --paragraph-font: 15px;
        --button-font: 16px
    }

    .button-section a {
        padding: 10px 20px;
    }

    .first-row .row,
    .third-row .row {
        flex-direction: column-reverse;
    }

    .section-heading h2 {
        padding-top: 15px;
    }

    .breadcrumb-title h2 {
        font-size: 28px;
    }
    .button-section .row {
        row-gap: 10px;
    }
        .breadcrumb-bg{
            min-height: 300px;

        }
}