:root {
    --primary-color: #00529B; /*main blue*/
    --secondary-color: #00315D; /*darker blue*/
    --accent-color1: #7D92C4; /*purple*/
    --accent-color2: #A6AA14; /*green*/
    --neutral-dark: #1B1D1E; /*black*/
    --neutral-light: #FFFCF4; /*white*/
    --neutral-light-shade: #F0F1D4; /*light green*/
    --error-color: #dc3545;
    --header-font: 'Hind', sans-serif; /*Headers, titles, labels*/
    --body-font: 'Montserrat', sans-serif; /*Body only*/
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--body-font);
    background-color: var(--neutral-light);
}

img {
    width: 100%;
    height: auto;
}

main {
    background-color: var(--neutral-light);
}

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background-color: rgb(0 0 0 / 21%);
    width: 100%;
    height: 100%;
    z-index: 49000;
    pointer-events: fill;
}

.loading-spinner {
    position: fixed;
    text-align: center;
    top: 40%;
    width: 100%;
    height: 100%;
    z-index: 50000;
    opacity: 0.5;
}

.span-error {
    color: var(--error-color);
    font-weight: bold;
}

/*Buttons and Links*/
.btn {
    padding: 8px 24px 8px 24px;
    line-height: 1;
    border-radius: 0;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--neutral-light);
    transition: all .5s;
    border: 0;
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
    }

    .btn-primary.active {
        background-color: var(--neutral-light);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

.btn-outlined {
    background-color: var(--neutral-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .5s;
}

    .btn-outlined:hover {
        background-color: var(--primary-color);
        color: var(--neutral-light);
    }

.arrow-link-primary, .arrow-link-light-neutral {
    font-family: var(--header-font);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
}

a, a:hover {
    color: var(--secondary-color);
}

.arrow-link-primary, .arrow-link-primary:hover {
    color: var(--secondary-color);
}

.arrow-link-light-neutral, .arrow-link-light-neutral:hover {
    color: var(--neutral-light);
}

/*Form styles*/
.radio-btn {
    opacity: 0;
    width: 85px;
    height: 34px;
    background-color: #fff;
    position: absolute;
    left: calc(var(--bs-gutter-x) * .5);
}

    .radio-btn:checked + .radio-label {
        background-color: var(--primary-color);
        color: var(--neutral-light);
    }

.radio-label {
    background-color: var(--neutral-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .5s;
    width: 85px;
    padding: 8px 24px 8px 24px;
}

/*Headers and Titles*/
h1, h2, h3, .title, .title2 {
    font-family: var(--header-font);
}

h1 {
    font-weight: bold;
    font-size: 40px;
}

h2 {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.title {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.title2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

/*Colors*/
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--neutral-light) !important;
}

.bg-accent1 {
    background-color: rgba(125,146,196,.5);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.light-color {
    color: var(--neutral-light);
}

.accent1 {
    color: var(--accent-color1);
}

.accent2 {
    color: var(--accent-color2);
}

/*Body Texts*/
p {
    font-family: var(--body-font);
    color: var(--neutral-dark);
    font-size: 16px;
}

.small-body {
    font-family: var(--body-font);
    color: var(--neutral-dark);
    font-size: 12px;
}

label, .label {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
}

/*Generic Styles*/
.white-box {
    background: var(--neutral-light);
    padding: 32px;
}

.desktop-only {
    display: none;
}

.hr-neutral {
    height: 2px !important;
    background-color: var(--neutral-light);
    opacity: .9 !important;
}

label {
    color: var(--primary-color);
    line-height: 1;
    font-weight: 600;
    display: block;
}

.form-control {
    border: 1px solid var(--brand-primary, #00529B);
    background: var(--neutral-light, #FFFCF4);
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 0;
}

.custom-ul li {
    list-style-type: none;
}

    .custom-ul li:before {
        font-family: 'FontAwesome';
        content: '\f105';
        margin: 0 5px 0 -10px;
        color: var(--accent-color2);
    }

/*Navbar Styles*/
.logo-img {
    width: 227px;
}

.navbar {
    background: var(--neutral-light);
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

.navbar-toggler i {
    color: var(--secondary-color);
}

.nav-item {
    padding-left: 16px;
    padding-right: 16px;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
}

/*Footer Styles*/
.footer {
    background-color: var(--neutral-light-shade);
}

    .footer img {
        width: 255px;
        max-width: 100%;
    }

    .footer .title {
        color: var(--primary-color);
    }

.socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 255px;
}

    .socials a {
        width: 50px;
        height: 50px;
        display: inline-block;
        text-align: center;
        border-radius: 100%;
        font-size: 2rem;
        background-color: var(--neutral-light);
        color: var(--neutral-dark);
    }

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--accent-color2);
    margin-top: 3rem;
}

    .footer-nav ul {
        margin: 0;
        padding: 0;
        text-align: center;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .footer-nav li:not(last-child) {
        display: inline-block;
        margin-right: 24px;
    }

    .footer-nav a {
        color: var(--neutral-light);
        text-decoration: none;
        padding: 8px;
        display: block;
    }

/*Home Page Jumbo Styles*/
.hero {
    background-image: url(../images/fieldscene.png);
    height: 230px;
    background-size: cover;
    background-position: left;
}

.neutral-box {
    background: var(--neutral-light, #FFFCF4);
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
    padding: 32px;
}

.main-content {
    position: relative;
    top: -445px;
}

.seasonal-banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/35bg.png), lightgray -533.983px -111.394px / 432.161% 117.407% no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 27px;
}

.casestudy-circle {
    border-radius: 4px 4px 100% 4px;
    background: linear-gradient(0deg, rgba(0, 49, 93, 0.50) 0%, rgba(0, 49, 93, 0.50) 100%), url(../images/hero2.jpg), lightgray 50% / cover no-repeat;
    box-shadow: 0px 1.85185px 3.14815px 0px rgba(201, 201, 201, 0.02), 0px 8.14815px 6.51852px 0px rgba(201, 201, 201, 0.03), 0px 20px 13px 0px rgba(201, 201, 201, 0.04), 0px 38.51852px 25.48148px 0px rgba(201, 201, 201, 0.04), 0px 64.81481px 46.85185px 0px rgba(201, 201, 201, 0.05), 0px 100px 80px 0px rgba(201, 201, 201, 0.07);
    height: 375px;
    background-size: cover;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    color: var(--neutral-light, #FFFCF4);
    padding: 48px 48px 0 54px;
}

    .casestudy-circle p {
        color: var(--neutral-light, #FFFCF4) !important;
    }

.cs-img {
    width: 345px;
    height: 270px;
    overflow: hidden;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

.clients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.client {
    width: 145px;
    padding: 25px 15px 24px 15px;
}

.careers {
    background: linear-gradient(93deg, rgba(0, 49, 93, 0.20) 1.06%, rgba(255, 255, 255, 0.00) 98.23%), url(../images/mobile-onphone.png), lightgray 50%;
}

.contact-hero {
    background: url(../images/aboutbg.png), lightgray 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.quote-form {
    margin-left: 32px;
    margin-right: 32px;
}

.region img {
    max-width: 225px;
    height: 200px;
    object-fit: cover;
}

.region p, .region h4 {
    font-weight: 600;
}

.region h4 {
    font-size: 20px;
}

.contentbg {
    margin: 12px 0px 12px 0px;
    background: #29555e;
    background-image: linear-gradient(rgba(81,82,48,0.8),rgba(81,82,48,0.9)), url(/images/peas.png);
    padding: 30px 20px 30px 20px;
    display: table;
    height: 250px;
}

    .contentbg p {
        color: var(--neutral-light);
    }

.contentbgtable {
    display: table-cell;
    vertical-align: middle;
}

/*BD PAGES STYLES*/
.alt-profile-pic {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px white solid;
    border-radius: 100%;
    justify-self: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .social-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        border: 1px solid white;
        text-decoration: none;
        font-size: 1.2rem;
    }

#galleryCarousel img {
    object-fit: contain;
    height: 400px;
}

#galleryCarousel p {
    font-size: 0.9rem;
    color: #6c757d;
}

#galleryCarousel_alt img {
    object-fit: cover;
    height: 400px;
    object-position: center;
}

#galleryCarousel_alt p {
    font-size: 0.9rem;
    color: #6c757d;
}

.profile-tabs {
    border-bottom: none;
}

.profile-tab-link {
    border: 1px solid var(--primary-color) !important;
    border-radius: 30px !important;
    color: var(--primary-color) !important;
}

    .profile-tab-link.active {
        border: 1px solid var(--primary-color) !important;
        border-radius: 30px !important;
        background: var(--primary-color) !important;
        color: var(--neutral-light) !important;
    }

.article-box {
    background: white;
    margin: 10px;
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
}
/*BD PAGES STYLES END */

@media screen and (min-width: 770px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    .careers {
        background: linear-gradient(93deg, rgba(0, 49, 93, 0.20) 1.06%, rgba(255, 255, 255, 0.00) 98.23%), url(../images/associatehero.png), lightgray 50%;
        background-size: cover;
        height: 450px;
        padding: 100px;
        background-repeat: no-repeat;
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
        color: white;
    }

        .careers p {
            color: white !important;
        }

    .region img {
        height: 285px;
    }
}

@media screen and (min-width: 1000px) {
    .hero {
        background-image: url(../images/fieldscene.png);
        height: 430px;
        background-position: center;
    }

    .footer-nav {
        margin-top: 1rem;
    }

    .clients {
        grid-template-columns: repeat(4, 1fr);
    }

    .casestudies {
        margin-right: 5%;
    }
}
/*end 1000px*/

@media screen and (min-width: 1245px) {
    h1, h2 {
        font-size: 40px;
    }

    .jumbo-contianer {
        top: -914px;
        left: -28%;
        height: 1000px;
    }

    .big-circle {
        width: 983px;
        height: 983px;
        border-radius: 983px;
        background: var(--neutral-light, #FFFCF4);
        box-shadow: 1.20076px 0.08417px 15.81944px 0px rgba(158, 158, 158, 0.04), 5.28333px 0.37034px 32.75555px 0px rgba(158, 158, 158, 0.06), 12.96818px 0.90902px 65.325px 0px rgba(158, 158, 158, 0.08), 24.97575px 1.7507px 128.04445px 0px rgba(158, 158, 158, 0.10), 42.02651px 2.94588px 235.43056px 0px rgba(158, 158, 158, 0.12), 64.8409px 4.54508px 402px 0px rgba(158, 158, 158, 0.16), 20px 0px 60px 0px rgba(0, 0, 0, 0.30);
    }

    .main-content {
        top: -1093px;
    }

    .jumbo-text {
        text-align: left;
        padding-top: 424px;
        padding-left: 33%;
        padding-right: 30%;
    }

    .seasonal-banner {
        background-position: center;
        padding: 80px;
    }

    .white-box {
        width: 1000px;
        margin: 0 auto;
    }

    .casestudy-circle {
        padding: 51px 75px 0 44px;
    }

    .quote-form {
        margin-left: 15%;
        margin-right: 15%;
    }
}
/*end 1245px*/
@media screen and (min-width: 1400px) {
    .jumbo-contianer {
        left: -19%;
    }

    .jumbo-text {
        padding-left: 24%;
        padding-right: 43%;
    }
}

@media screen and (min-width: 1600px) {
    .jumbo-contianer {
        left: -11%;
    }

    .jumbo-text {
        padding-left: 20%;
        padding-right: 48%;
    }
}

/****** Get a quote *******/
#div_thankyou {
    display: none;
}

#quote_inputs {
    display: block;
}

#tableInspectionInfo td {
    text-align: center;
    vertical-align: middle;
}

.addBtnStyle {
    cursor: pointer;
}

.invalid-input {
    border: 2px solid red !important;
}

.invalid-feedback {
    color: red;
}

.yes-sections {
    display: none;
    padding-left: 24px;
}

    .yes-sections hr {
        display: none;
        border-top: 1px solid #1E8BC3;
        margin-top: 15px;
        margin-bottom: 15px;
    }

/****** Get a quote *******/
