* {
    box-sizing: border-box;
}

:root {
    --blue: #0F2137;
    --lightText: #5A6A7A;
    --orange: #E8611A;
    --orange2: #e67539;
    --offWhite: #F1F4F8;
    --transTime: 200ms;
    --gradStart: #0A1628FC;
    --gradEnd: #0A1628D4;
}

body {
    font-family: "dm-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "archivo", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0px;
    color: var(--blue);
}

.white {
    color: white !important;
}

h1 {
    font-size: 72px;
    line-height: 79.2px;
    font-weight: bold;
}

h2 {
    font-size: 44.88px;
    line-height: 53.86px;
    font-weight: bold;
}

@media(max-width: 767px) {
    h1 {
        font-size: 40px;
        line-height: 40px;
    }

    h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0px auto;
    padding: 0px 20px;
}

.miniContainer {
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
    padding: 0px 20px;
}

a,
a:visited,
a:hover {
    color: var(--blue);
    text-decoration: none;
}

.sectionHead {
    margin-top: 95px;
}

.sectionSpacer {
    margin-top: 65px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.flex-between.end {
    align-items: end;
}

.flex-between.nowrap {
    flex-wrap: nowrap;
}

.flex {
    display: flex;
    gap: 20px;
}

.wrap {
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grow-1 {
    flex-grow: 1;
}

.grow-2 {
    flex-grow: 2;
}

.grow-3 {
    flex-grow: 3;
}

.uppercase {
    text-transform: uppercase;
}

.limit-400 {
    width: 100%;
    max-width: 400px;
}

.limit-500 {
    width: 100%;
    max-width: 500px;
}


.lightText {
    color: var(--lightText);
    font-size: 14px;
    line-height: 21px;
}

.smallTitle {
    font-size: 24px;
    line-height: 28px;
}

.max {
    width: max-content;
}

@media(max-width: 767px) {
    .x-mobile {
        display: none;
    }
}

button {
    font-family: inherit;
    cursor: pointer;
}

.formRow {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.inputRow {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 14px 16px;
    background-color: var(--offWhite);
    border-radius: 8px;
    border: 1px solid #0000001f;
}

textarea {
    width: 100%;
    min-height: 150px;
}

.breadCrumbs {
	color: var(--lightText);
	display: flex;
	align-items: center;
	gap: 6px;
}

.breadCrumbLink {
	color: var(--lightText) !important;
}

.breadCrumbLink:hover,
.breadCrumbLink.active {
    color: white !important;
}

.breadCrumbArrow {
	width: 15px;
}

.subHeader {
	margin: 0px;
	text-transform: uppercase;
	color: var(--orange);
	font-size: 14px;
}

.serviceContent1 {
	padding: 65px 20px;
}