/* Variables */
:root {
  --td-green: #4EAE52;
  --td-blue: #2097F1;
  --td-teal: #24AA8E;
  --td-navy: #0F1D47;
  --td-text: #859CCF;
  --td-text-light: #8FAAE5;
  --td-gray: #3F4A6C;
  --td-gray-50: rgba(118, 118, 118, 0.5);
  --td-light-gray: #E7E8ED;
  --td-light-blue: #B6DDFA;
  --td-light-green: #C5E4C6;
  --td-light-teal: #B7E3DA;
  --td-mid: #5BBA7D;
  --td-white: #fff;
  --lexend: "Lexend", "Usual", sans-serif;
  --usual: "Usual", "Lexend", sans-serif;
}


/* Typography */
/* <uniquifier>: Use a unique and descriptive class name
/  <weight>: Use a value from 100 to 900 */

html {
  scroll-behavior: smooth;
}

html, body, article, div, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Lexend", "Usual", sans-serif;
  color: var(--td-navy);
  letter-spacing: -0.03em;
}

h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
  letter-spacing: 0.08px !important;
}

blockquote, p, .subheader, a {
  font-family: "Usual", "Lexend", sans-serif;
  color: var(--td-gray);
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.08px;
}

h1, .h1 {
  font-style: normal;
  font-weight: 300;
  font-size: 4em;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-navy);
}
h2, .h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-navy);
}

h3, .h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-navy);
}

h4, .h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-navy);
}

h5, .h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-navy);
}

.subheader {
  font-style: normal;
  margin: 1.5rem 0 2rem;
  padding: 0.5rem 0 0.5rem;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--td-navy);
  border-bottom: 1px dashed rgba(118, 118, 118, 0.5);
}

/* Navigation */
.navbar-default {
  background: rgba(255,255,255,.8);
  border: none;
  backdrop-filter: saturate(180%) blur(10px);
}

.navbar-default .container {
  border-bottom: 1px solid var(--td-gray-50);
  padding-right: 0;
}

.navbar-brand {
  margin-top: 0;
  padding: 1rem 0;
}


.navbar-right {
  margin-bottom: -2px;
}

.navbar-nav > li {
  padding: 28px 12px 16px 12px;
  font-size: 18px;
  font-family: var(--usual);
  border-bottom: 3px solid transparent;
  transition: 0.2s all;
}




.navbar-nav > li:hover { border-bottom: 3px solid var(--td-navy); }

.navbar-nav > li.end:hover { border-bottom: none; }

li.end.active a, .navbar-default .navbar-nav > .end.active > a  { background: var(--td-navy); }

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: var(--td-navy);
    background-color: transparent;
  }

.navbar-nav > li > a {
  transition: 0.2s all;
  height: 52px;
}

.navbar-default .navbar-nav > li > a.btn {
    color: var(--td-white);
    transition: 0.2s all;
    height: 52px;
    padding-top: 14px !important;
    border: 2px solid var(--td-navy);
}
.navbar-default .navbar-nav > li > a.btn:hover {
    color: var(--td-navy);
    background: var(--td-white);
    border: 2px solid var(--td-navy);
    box-shadow: 5px 5px 0px var(--td-navy) !important;
}

.navbar-shrink .container {
  border-bottom: 0;
}

.navbar-shrink {
  transition: 0.5s all;
  box-shadow: 0 0 30px rgba(0,0,0,.25);
}

.logo-wrap {
  max-height: 6rem;
}

.navbar-brand {
  height: auto;
  margin-top: 0 !important;
}

.navbar-brand > img {
  padding-top: 3rem;
}

.service .nav-link {
  color: var(--td-navy);
  transition: 0.33s all;
  /* opacity: 0.8; */
}


.home header .nav-link {
  color: white;
  transition: 0.33s all;
  /* opacity: 0.8; */
}

.home header .nav-link:hover {
  color: white;
  transition: 0.33s all;
    opacity: 1;
}

.nav-link:hover {
  color: var(--td-navy);
  opacity: 1;
}
.nav-link.text-light-blue:hover {
    color: var(--td-white)!important;
}

.dropdown-menu > li > a {
  display: block;
  padding: 11px 16px;
  clear: both;
  font-size: 16px;
  transition: 0.33s all;
  opacity: .75;
  /* backdrop-filter: saturate(180%) blur(10px); */
  border-left: 4px solid transparent;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 8px;
}

.menu-circle {
  display: inline-flex;
  position: fixed;
  top: 4vh;
  right: 6vw;
  width: 48px;
  height: 48px;
  color: var(--td-navy);
  border: 2px solid var(--td-navy);
  border-radius: 50px;
  background: white;
  font-size: 22px;
  z-index: 1000;
}

.offcanvas-header {
    padding: 2.5rem 2rem 0rem 1.5rem;
}
.offcanvas {
      border-radius: 36px 0px 0 0;
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 4px;
  border: none;
  /* background: rgba(255,255,255,0.85); */
  background: rgba(255,255,255);
  padding: 16px 10px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: var(--td-navy);
    text-decoration: none;
    background-color: #1f97f11a;
    opacity: 1;
}

.navbar-default .navbar-nav > .open > a {
  color: var(--td-navy) !important;
  background-color: var(--td-white) !important;
}

/* Sections */
#hero {
  /* margin-top: 10rem; */
  padding: 5rem 0;
  /* background: url('../img/mesh.svg') no-repeat center right; */
}

/* body.home {
  background: url('../img/hero-bg.svg') no-repeat center right;
  background-position: top;
  background-size: 100%;
} */

.home .hero {
  background: url(../img/td-arrows.svg) no-repeat 121% 130%, var(--td-navy);
  margin-top: -1.5rem;
  background-size: 43%;
  padding-bottom: 3rem;
}

.home #services {
  background: url('../img/top-slice-3.svg') no-repeat, top center;
  background-size: 100%;
  margin-top: -2px !important;
  padding-top: 14rem !important;
}


.home .hero .d-flex.flex-wrap.py-3.my-4 {
  padding-top: 2.5rem !important;
}

.rounded-4 {
  border-radius: 36px;
}

.careers-container {
  border-radius: 48px;
  background: url('../img/career-bg.svg') no-repeat 104% 80%, var(--td-navy);
  backdrop-filter: blur(12px);
  background-size: 45%;
  padding: 3rem 6rem;
}

.careers-container .card {
  border-radius: 24px;
  border: 0px;
  padding: 2.5rem .4rem .5rem;
}

.career-feature {
  background: rgb(32 151 241 / 33%);
  margin: 0.8rem 0.8rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  background-size: 33%;
}

.career-feature p { margin-top: 1rem; }
.career-feature.people {
    background: url('../img/people2.svg') no-repeat top right, var(--td-light-blue);
    background-position: 126% 50%;
    padding: 2rem 4rem 1rem 2rem;
}
.career-feature.passion {
    background: url('../img/passion2.svg') no-repeat top right, var(--td-light-teal);
    background-position: -144% 6%;
    padding: 2rem 2rem 1rem 2rem;
}
.career-feature.integrity {
    background: url('../img/integrity2.svg') no-repeat top right, var(--td-light-green);
    background-position: -144% 22%;
    padding: 2rem 2rem 1rem 2rem;
}

.people h4, .people p {
  color: #043e6c !important;
}
.passion h4, .passion p {
  color: #105d4a !important;
}
.integrity h4, .integrity p {
  color: #065309 !important;
}

#benefits p {
    font-size: 16px;
    font-weight: 200;
}

#benefits .card {
    min-height: 106px;
}

.lined-list.dark {
  margin-left: 0;
  margin-top: 1.5rem;
  padding-left: 0;
}
.lined-list.dark li, .lined-list.dark li:hover {
  color: var(--td-navy);
  border-bottom: 1px solid var(--td-light-gray);
}

.lined-list.dark li:last-child {
  border: none;
}

.additional-text {
  font-size: 14px !important;
color: #6a7eba;
line-height: 2;
}
.additional-text a {
  color: white;
  font-size: 14px;
}


.job-type {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px !important;
opacity: .6;
}

body.service {
  background: url('../img/bg-top-service.svg') no-repeat top right;
  background-position: 75% -5%;
  background-size: 50%;
}

body.careers {
  background: url('../img/bg-top-service.svg') no-repeat top right;
  background-position: 75% -20%;
  background-size: 50%;
}

.strategic-assessments {
  background: url('../img/strategic-assessments.svg') no-repeat center right, url('../img/mesh.svg') no-repeat center right;
}

.service #hero {
  padding-bottom: 10rem;
  background: url('../img/top-slice-1.svg') no-repeat bottom center;
  background-size: 100%;
  margin-bottom: -2px;
}

.hero-img {
  margin: 0 auto;
  float: right;
  margin-bottom: -9rem;
}

#hero p {
 font-weight: 400;
 font-size: 18px;
 line-height: 28px;
 color: var(--td-gray);
}

#need {
  padding: 3rem 0 8rem;
  /* padding: 4rem 0; */
  background: var(--td-navy);
  background-size: contain;
}

.blue-bottom-line {
  border-bottom: 1px solid var(--td-blue);
  margin-bottom: 2rem;
}

.offering-group {
  border-top-right-radius: 36px;
  border-top: 2px solid #E7E8ED;
  padding-top: 3rem;
  margin-bottom: 3rem;

}

.contracts {

  padding: 2rem 2rem 0 2rem;
  border-radius: 24px;
  background: #02021E;
}

.contracts .inner {
  padding: 24px 0px 30px 30px;
  background: linear-gradient(161.63deg, #4EAE52 -68.73%, rgba(78, 174, 82, 0) 39.13%);
  border-radius: 16px 0px 0px 0px;
  transform: translate(-10px, 0px);
}

#offerings {
  padding: 12rem 0 24rem;
  background: url('../img/bottom-slice-1.svg') no-repeat 100% -2px, url('../img/top-slice-2.svg') no-repeat 100% 100%;
  background-size: 100%;
}

#approach {
  padding-top: 12rem;
  background: url('../img/bottom-slice-1.svg') no-repeat 100% -2px;
  background-size: 100%;
}

#approach .approach-inner {
  padding: 4rem 0rem 8rem 4rem;
  background: rgba(255, 255, 255, 0.3);
  border-left: 4px solid #E7E8ED;
  /* BG Blur */
  backdrop-filter: blur(12px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 36px 36px 36px 0px;
}

#approach .wrapper {
  background: url('../img/bg-boomerang.svg') no-repeat -50% -10%;
  background-size: 50%;
}

#feature {
  background: url('../img/inner-slice-1.svg') no-repeat 100% -2px, var(--td-navy);
  padding: 3rem 0;
  margin-top: -2px;
  background-size: 18%;
  background-position: 100% -10%;
}

#feature .left-lined {
  border-color: #e7e8ed1f;
  padding-bottom: 1.5rem;
}

#feature p {
  color: #8FAAE5;
}

#feature .img-fluid {
  -webkit-filter: drop-shadow(36px 36px 48px rgba(0, 0, 0, .25));
  filter: drop-shadow(36px 36px 48px rgba(0, 0, 0, .25));
}

.feature-tag {
  color: white !important;

  font-size: 14px;
  line-height: 17px;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-tag i {
  color: var(--td-green);
  margin-right: 24px;
  margin: 0 28px 0px -12px;
  font-size: 24px;

}

.feature-item .inner {
  padding: 0 ;
  border-radius: 36px;
  padding: 2.5rem 3rem 3rem;
  background:radial-gradient(215.15% 133.11% at 0% 0%, #1A3F77 0%, #0F1D47 69.5%, #0F1D47 100%);
  background-blend-mode: overlay;
  border-radius: 36px;
}

.feature-item .inner p {
font-size: 18px;
line-height: 200%;

color: #8FAAE5;


}

.divider-blue, .divider-teal, .divider-green {
  height: 2px;
  width: 100%;
  margin: 2rem 0;
  background-color: var(--td-blue);
  border-radius: 8px;
}

.divider-teal {
  background-color: var(--td-teal);
}

.divider-gradient {
  background: linear-gradient(90.15deg, #4EAE52 0.12%, #2392EF 99.98%) !important;
  border-radius: 6px;
  height: 6px;
  margin: 4rem 0 4rem;
}

.divider-green {
  background-color: var(--td-green);
}

.tag {
  border: 1px solid rgba(255, 255, 255, .05);
  background: rgba(255,255,255,.08) !important;
  border-radius: 24px !important;
  margin-right: 8px;
  margin-bottom: 16px;
  padding: 10px 20px !important;
  font-size: 16px !important;
  cursor: text !important;
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.tag:hover, .tag:active {
  border: 1px solid rgba(255, 255, 255, .05);
  background: rgba(255,255,255,.08) !important;
  color: white;
}
button.btn.tag:active {
    border-color: rgba(255, 255, 255, .2) !important;
    color: white !important;
}
.calendly-badge-widget .calendly-badge-content {
  font-family: var(--usual) !important;
  letter-spacing: -.25px;
  font-weight: 600 !important;
  transition: 0.2s all;
  background: var(--td-blue) !important;
}

.calendly-badge-widget .calendly-badge-content:hover {
  background: var(--td-navy) !important;
}

.calendly-badge-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1044;
}


.need-item {
  padding: 0 ;

  border-radius: 36px;
  background-blend-mode: overlay;
}

.need-item:first-child {
  padding-right: 12px;
}

.need-item:nth-child(2) {
  padding: 0 6px;
}

.need-item:last-child {
  padding-left: 12px;
}

.need-item .inner {
  padding: 8rem 3rem 3rem;
  width: 100%;
}

.need-item p {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 18px;
/* line-height: 200%; */
  color: #8FAAE5;
  opacity: 0.9;

}

.need-item:nth-child(1) .inner {
  background: url('../img/need1.svg') no-repeat top right, radial-gradient(215.15% 133.11% at 0% 0%, #1A3F77 0%, #0F1D47 69.5%, #0F1D47 100%);
  background-blend-mode: overlay;
  border-radius: 36px;
}

.need-item:nth-child(2) .inner {
  background: url('../img/need2.svg') no-repeat top right, radial-gradient(215.15% 133.11% at 0% 0%, #1A3F77 0%, #0F1D47 69.5%, #0F1D47 100%);
  background-blend-mode: overlay;
  border-radius: 36px;
}

.need-item:nth-child(3) .inner {
  background: url('../img/need3.svg') no-repeat top right, radial-gradient(215.15% 133.11% at 0% 0%, #1A3F77 0%, #0F1D47 69.5%, #0F1D47 100%);
  background-blend-mode: overlay;
  border-radius: 36px;
}

#need .vertical-center:first-child {
  padding-right: 3rem;
}

.icon-list {
  background: var(--td-white);
  padding: 5rem 0rem 5rem 5rem;
}

.icon-list h5 { margin-bottom: 0.5rem !important; }

.detail { margin-bottom: 4rem; }
.detail h5, .icon-list h5 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.detail p {
  font-size: 18px;
  line-height: 170%;
  color: #0F1D47;
  opacity: 0.8;
}

.detail i {
  display: inline-flex;
  padding-bottom: 4px;
  margin: 1rem 0 1rem;
  color: var(--td-blue);
  font-size: 36px;
  width: 68px;
  height: 68px;
  background: #DBECF9;
  border-radius: 16px 16px 50px 50px;
  justify-content: center;
  align-items: center;
}

.detail i.teal {
  color: var(--td-teal);
  background: #D8F5EF;
}

.detail i.green {
  color: var(--td-green);
  background: #DAEEDA;
}

#contracts i.green {
  color: var(--td-green);
  background: #DAEEDA;
  display: inline-flex;
  padding-bottom: 4px;
  margin: -3rem 0 1rem;
  font-size: 36px;
  width: 68px;
  height: 68px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transform: translate(-1rem, -0.5rem);
}

.contract-tag {
  font-size: 12px;
  color: var(--td-green);
  border-top: 1px solid var(--td-green);
  padding: 8px 0;
  font-weight: 600;
  border-radius: 0;
  /* background: #DAEEDA; */
  display: flex;
  margin-top: 1rem;
}

.contract-top {
  border-bottom: 2px solid #DAEEDA;
}

.cta-underline {
  text-decoration: none;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 2px solid #0f1d4821;
  margin-left: 2rem;
  color: #707791;
  transition: 0.2s all;
  display: inline-flex;
}

.cta-underline:hover {
  border-bottom: 2px solid var(--td-navy);
  color: var(--td-navy);
}

.approach-item {
padding: 1.75rem 2rem;
margin-bottom: 1.25rem;
background: rgba(219, 236, 249, 0.5);
/* BG Blur */
backdrop-filter: blur(12px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 36px;
align-items: center;
}

.subhead {
  color: var(--td-blue);
  margin-bottom: 1rem !important;
}


#hero .icon-list {
  box-shadow: 0px 0px 20px 0 #3199e824;
  border: 1px solid #3199e8;
  padding: 3.5rem 3rem 0rem 3rem;
}

#hero .icon-list .dashed {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.lined-list {
  color: var(--td-white);
  list-style: none;
}

.lined-list li {
  border-bottom: 1px dotted rgba(255,255,255,0.25);
  padding: 1rem 0;
  transition: 0.2s all;
}
.lined-list li:hover {
  border-bottom: 1px solid rgba(255,255,255,1);
}

.lined-list li a {
  color: white;
  text-decoration: none;
  font-family: var(--usual);
  transition: 0.2s all;
  padding: 1rem 0;
  font-size: 18px;
}

.lined-list li a:hover {
  padding-left: 1rem;
}

.tag-bar {
  background: var(--td-green);
  /* display: inline-block; */
  padding: 0.75rem 1.5rem;
  color: var(--td-navy) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

#hero p.tag-bar {
  font-size: 12px !important;
  line-height: 20px !important;
  background: #ecf5fd;
  margin-top: -2rem !important;
  margin-bottom: 2rem;
}

.approach-image { padding-left: 6rem; }
.dark-shadow {
  box-shadow: -20px -20px;
  margin-left: 2.25rem;
}

.item { padding: 2rem 0; }
.item h4 { font-size: 22px; }

#contact { padding-top: 7rem; }

#contact .container {

  background: var(--td-navy);

padding: 60px 30px 30px;

border-radius: 120px 48px 48px 48px;
position: relative;


}

#contact .container:before {
    border-radius: 100%;
    content: '';
    background-image: linear-gradient(to right, var(--td-blue), var(--td-green));
    border-radius: 120px 48px 48px 48px;
    padding: 10px;
    width: 100%;
    height:100%;
    top: 16px;
    left: 0;
    position: absolute;
    z-index:-1;
}

.contact-info { padding-left: 3rem; }

.contact-form {
  background: var(--td-white);
  padding: 3rem;
  border: 20px solid var(--td-navy);
  margin-top: -8rem;
  margin-bottom: 2rem;
border-radius: 44px;
    margin-right: -30px;

}
.contact-form label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--usual);
}

.contact-form input, .contact-form textarea {

  border-radius: 0;

  margin-bottom: 1.5rem;

border: 1px solid rgba(15, 29, 71, 0.3);
border-radius: 8px;

padding: 12px 16px;

}

.contact-form-message {
  padding-top: 10px;
}

.light-gradient-offset {
  padding: 0 3rem 3rem 0;
  background: url('../img/light-gradient.svg') no-repeat bottom right;
  background-position: 3rem 3rem;
}

.light-gradient-offset2 {
  padding: 0 2rem 2rem 0;
  background: url('../img/light-gradient.svg') no-repeat bottom right;
  background-position: 2rem 2rem;
}

.contact-list {
  padding: 1rem 2.5rem 2rem;
  margin-top: 2.5rem;
  background: radial-gradient(95.15% 123.11% at 0% 0%, #1A3F77 0%, #0F1D47 49.5%, #0F1D47 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  border-radius: 36px;
  transform: translate(-30px, 30px);
}

.contact-list .contact-item {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}

.contact-list .contact-item:first-of-type {
  border-top: 1px solid rgba(255,255,255,0);
  padding: 1rem 0;
}

.contact-list .contact-item i {
  font-size: 20px;
  margin-right: 1rem;
}

.footer {
  background: url('../img/footer-bg.svg') no-repeat top center, var(--td-navy);
  background-size: 100%;
  margin-top: 3rem;
  padding: 8rem 0;
  padding-top: 20rem;
}

.copyright {
  display: inline-flex;
  height: 100%;
  align-items: center;
}

/* Buttons */
.btn, a.btn {
  font-size: 18px;
  letter-spacing: 0;
  font-family: var(--usual);
  border-radius: 0;
  background-color: var(--td-navy);
  color: var(--td-white);
  padding: 16px 24px;
}



.btn-solid {
  font-family: var(--usual);
  background-color: var(--td-navy);
  color: var(--td-white);
  padding: 10px 18px !important;

border-radius: 8px;

}

.btn-solid:hover {
  background-color: var(--td-blue);
  color: var(--td-white);
  padding: 10px 18px !important;
}

.btn-outline {
  font-family: var(--usual);
  padding: 10px 18px;
  background: var(--td-white) !important;
  color: var(--td-navy) !important;
  border: 2px solid var(--td-navy) !important;
  box-shadow: 5px 5px 0px var(--td-navy);
  transition: 0.3s all;
  margin-bottom: 3px;
}
.btn-outline:hover {
  background: var(--td-navy) !important;
  color: var(--td-white) !important;
  box-shadow: 0px 0px 0px var(--td-navy) !important;
  margin-top: 3px;
  margin-left: 3px;
  margin-bottom: 0;
}
.btn i, .btn-solid i, .btn-outline i {
  font-size: 20px;
  margin-left: 12px;
}

.btn-social {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  margin-right: 0.8rem;
  font-size: 20px;
  transition: 0.2s all;
}

.va-swam {
  padding-top: 4rem;
  margin-top: 0rem;
  background: url('../img/va-map.svg') no-repeat top center;
}

.btn-social:hover {
  background: var(--td-navy);
  color: var(--td-white);
  text-decoration: none;
}

.btn-social i, .btn-social:hover i, .social a i { background: transparent; background-color: transparent; }
.btn-social:hover i { color: var(--td-white); text-decoration: none; }

.btn-contact {
  margin-top: -5px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
  background: var(--td-navy);
  border: 2px solid #FFFFFF;
  box-shadow: 0px 25px 10px rgba(4, 14, 32, 0.02), 0px 14px 8px rgba(4, 14, 32, 0.08), 0px 6px 6px rgba(4, 14, 32, 0.13), 0px 2px 3px rgba(4, 14, 32, 0.15);
  border-radius: 16px !important;
  transition: 0.2s all;
}

.btn-contact:hover {
  background: white;
  color: var(--td-navy) !important;
  border-radius: 24px 24px 24px 24px !important;
}

.service .btn-contact {
  margin-top: -5px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
  background: white;
  color: var(--td-navy) !important;
  border: 2px solid var(--td-navy);
  box-shadow: none;
  border-radius: 16px !important;
  transition: 0.2s all;
}

.service .btn-contact:hover {
  background: var(--td-navy);
  color: white !important;
  border-radius: 24px 24px 24px 24px !important;
}


/* Tab to Select */
.tab {
	 overflow: hidden;
	 background-color: var(--td-white);
	 transition: all 2s;
}
 .tab button {
	 background-color: inherit;
	 float: left;
	 border: 1px solid var(--td-gray-50);
	 outline: none;
	 cursor: pointer;
	 padding: 4px;
	 transition: 0.3s;
	 font-size: 1.125rem;
}
 .tab button:hover {
	 background-color: var(--td-gray-50);
}
 .tab button.active {
	 background-color: var(--td-navy);
	 color: #fff;
}
 .tabcontent {
	 display: none;
}

.tabcontent .client-img {
  max-width: 72px;
}

.tablinks, .client-item {
  background: white;
  border-radius: 24px;
  padding: 14px;
  border: 3px solid #dbedf9;
}

 .is-hidden {
	 display: none !important;
}
 .is-desktop {
	 display: block;
}

.btn-tag {
  padding: 0.75rem 1.25rem;
  border: 1px solid;
  margin-right: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.toggle-btn, .clickable-btn {
  display: block;
  border-top: 1px solid var(--td-navy);
  color: var(--td-navy);
  text-decoration: none;
  padding: 1.25rem 0;

}

.toggle-btn:hover, .clickable-btn:hover {
  text-decoration: none;
}

#details1, #details2, #details3, #details4, #details5, #details6 {
  scroll-margin-top: 150px;
}




 @media (max-width: 768px) {
	 .is-desktop {
		 display: none !important;
	}
}
 .is-mobile {
	 display: none !important;
}
 @media (max-width: 768px) {
	 .is-mobile {
		 display: block !important;
	}

  .need-item:first-child, .need-item:nth-child(2), .need-item:last-child {
    padding: 0;
  }


  select.is-mobile {
    border: 2px solid var(--td-navy);
    background: white;
    font-size: 16px;
    padding-left: 16px;
  }
  .tabcontent .client-img { display: none; }
  .tabcontent .img-responsive { margin-bottom: 2rem;}
  .tabcontent .collapse, .tabcontent .collapse .col-12 { padding: 0; }
}
 select {
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
	/* Remove default arrow */
	 width: 100%;
	 padding: 1rem;
	 font-size: 1.125rem;
	 background-color: #f0f0f0;
	 border: none;
}
 select::-ms-expand {
	 display: none;
}
 .select {
	 position: relative;
}
 @media (max-width: 768px) {
	 .select:after {
		 content: "";
		 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg stroke='none'%3E%3Cpath d='M21.293,12.293,16,17.586l-5.293-5.293a1,1,0,0,0-1.414,1.414l6,6a1,1,0,0,0,1.414,0l6-6a1,1,0,0,0-1.414-1.414Z' fill='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
		 background-position: center;
		 background-size: contain;
		 position: absolute;
		 top: 50%;
		 transform: translateY(-50%);
		 right: 1rem;
		 pointer-events: none;
		 width: 32px;
		 height: 32px;
	}
}



/* Utility Classes */
.flex { display: flex; }
strong.green { color: var(--td-green); }
.vertical-center {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.logo {
  max-height: 40px;
}

.vertical-center-row {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: center;
}

.no-underline {
  color: var(--td-navy);
  text-decoration: none;
  transition: 0.2s all;
  font-family: var(--lexend);
  font-size: 16px;
  font-weight: 300;
}

.no-underline:hover {
  color: var(--td-navy);
  text-decoration: underline;
}

.top-divider {
  padding-top: 3rem;
  background: url('../img/mini-divider.svg') no-repeat top left;
}

.top-divider-1 {
  padding-top: 3rem;
  background: url('../img/divider-1.svg') no-repeat top left;
}

.top-divider-2 {
  padding-top: 3rem;
  background: url('../img/divider-2.svg') no-repeat top left;
}

.top-divider-3 {
  padding-top: 3rem;
  background: url('../img/divider-3.svg') no-repeat top left;
}

.bottom-divider {
  padding-bottom: 3rem;
  background: url('../img/divider.svg') no-repeat bottom left;
}

.dashed-border {
  padding-bottom: 2rem;
  border-bottom: 1px dashed var(--td-gray-50);
}

.dashed {
  border-bottom: 1px dashed var(--td-gray-50);
}

.text-white {
    color: var(--td-white);
}

.text-green {
    color: var(--td-green);
}

.text-blue {
    color: var(--td-blue);
}

.text-gray {
    color: var(--td-text);
}

.text-light-gray {
    color: var(--td-light-gray) !important;
}

.text-light-blue {
    color: var(--td-text-light) !important;
}

.contracts .text-green {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.case-studies {
  background: var(--td-navy);
}
.case-studies h4, .case-studies p {
  color: white;
}

hr.dashed { margin: 3rem 0; }

.solid-border-top {
  border-top: 1px solid var(--td-navy);
}

.hide { display: none; }

.border-box {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--td-navy);
}
.border-box i {
  font-size: 24px;
}

.body-text { font-family: var(--usual); }

.normal { font-weight: 300; }
.semibold { font-weight: 600; }
.bold { font-weight: 700; }

.divider { border-color: var(--td-navy); }

.blue-icon {
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/blue-plate.svg) no-repeat center center;
  background-size: 100%;
}

.blue-icon i {
  font-size: 32px;
  color: var(--td-white);
}

.link-span{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;

  /* edit: fixes overlap error in IE7/8,
     make sure you have an empty gif
  background-image: url('empty.gif');*/
}
.hoverable {
  transition: 0.3s all;
  margin-top: 3px;
  margin-left: 3px;
  margin-bottom: 0;
 }
.hoverable:hover {
  box-shadow: 5px 5px 0px var(--td-navy);
  margin-top: 0;
  margin-bottom: 3px;
}

.case-studies a.btn-outline {
  background: var(--td-navy) !important;
  border-color: var(--td-white) !important;
  color: var(--td-white) !important;
}

.dropdown-menu {
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  opacity: 0;
  transform: translate3d(0px, 66px, 0px);
  padding: 10px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid #d5e3f0e0;
}
.dropdown-menu.show {
  opacity: 1;
  background: #fff;
}

.case-studies a.btn-outline:hover {
  margin-bottom: 0;
  margin-top: 2rem;
}

#services .container, .left-lined {
  /* background: url('../img/service-section-bg.svg') no-repeat center left; */
  padding-left: 3rem;
  border-left: 2px solid var(--td-light-gray);
}

#services p.text-white {
  font-size: 16px;
}

#services .coop-contracts {
    display: block;
    font-size: 15px;
    line-height: 1!important;
}

.service-list {
  margin-top: 1rem;
}

a.service-block {
    width: 100%;
    transition: 0.33s all;
    text-align: left;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-radius: 16px;
    border-top-right-radius: 36px;
    color: white !important;
    border: 0;
    box-shadow: none;
    outline: 0px solid transparent;
    gap: 16px;
    margin-top: 8px;
    font-weight: 400;
    font-size: 18px;
    font-family: var(--lexend);
    line-height: 1.4;
    background: linear-gradient(42.44deg, #0F1D47 38.86%, #2392EF 174.57%) !important;
}

a.service-block:hover {
  margin-top: 0;
  outline: 4px solid #1f97f161 !important;
  border-top-right-radius: 64px;
      box-shadow: 28px 36px 36px -30px #1f97f1de;
}

a.service-block.green {
  background: linear-gradient(45.03deg, #0F1D47 39.5%, #20B048 156.78%) !important;
  outline: 0px solid transparent;
}
a.service-block.green:hover {
  outline: 4px solid #4eae5261 !important;
  box-shadow: 28px 36px 36px -30px #4eae52de;
}
.service-block i {
  transition: 0.33s all;
  font-size: 42px;
  display: inline-flex;
  margin-left: 0;
  margin-bottom: 0.5rem;
  padding-left: 0;
  color: var(--td-blue);
}

.service-block.green i {
  color: var(--td-green);
}

.service-block:hover i {
  transform: scale(110%);
}


.service-tiles .service-block {
    min-height: 200px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
  }

  .service-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
  }
  
  .service-title i {
    font-size: 2rem;
    margin-right: 0.75rem;
    color: var(--td-blue);
    margin-bottom: 0;
  }
  
  .service-block.green .service-title i {
    color: var(--td-green);
  }
  
  .service-subtext {
    font-size: 1rem;
    color: #cfe2ff;
    opacity: 0.95;
    font-weight: 300;
    margin-top: 0;
  }
  
  @media (max-width: 768px) {
    .service-title {
      font-size: 1.1rem;
    }
    .service-block {
      padding: 1.2rem 1rem;
    }
  }
  

#clients {
  background: url('../img/green-accent-bg.svg') no-repeat;
  background-size: 3% 100%;

  padding-top: 5rem;
  padding-bottom: 5rem;
}

.client-block {
  display: block;
  border: 1px solid var(--td-gray-50);
  margin-bottom: 1.5rem;
}

.client-img {
  max-width: 100%;
}

#methodology {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background: url('../img/focus-bg.svg') no-repeat;
  background-size: 100%;
}

.method1, .method2, .method3 {
  padding-left: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  padding: 2.75rem 2.25rem;
  gap: 10px;
  background: var(--td-navy);
  border-radius: 16px 32px 16px 16px;
  position: relative;
}

.method1 span, .method2 span, .method3 span {
  border-bottom: 2px solid;
  display: flex;
  font-family: var(--usual);
  font-size: 18px;
  font-weight: 600;
  padding: 0.5rem 0;
  margin-bottom: 1.75rem;
}

.method1 .icon, .method2 .icon, .method3 .icon {
  padding: 20px 26px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  font-size: 30px;
  top: -44px;
  right: 8%;
  backdrop-filter: blur(14.7px);
  border-radius: 16px 32px 16px 16px;
}

.method1 .icon {
  background: rgba(31, 151, 241, 0.75);
  border: 1px solid rgba(31, 151, 241, 0.37);
}

.method2 .icon {
  background: rgba(35, 169, 141, 0.75);
  border: 1px solid rgba(35, 169, 141, 0.37);
}

.method3 .icon {
  background: rgba(78, 174, 82, 0.75);
  border: 1px solid rgba(78, 174, 82, 0.37);
}

.method1 span { border-color: var(--td-blue); color: var(--td-blue); }
.method2 span { border-color: var(--td-mid); color: var(--td-mid); }
.method3 span { border-color: var(--td-green); color: var(--td-green); }


#about {
  background: url("../img/right-bg.svg") no-repeat center right;
  padding: 8rem 0;
  background-size: 310px 100%;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.check-list li {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  background-image: url("../img/checkmark.svg");
  background-repeat: no-repeat;
  padding-left: 30px;
  margin-bottom: 0.5rem;
}

#team {
  padding: 14rem 0 5rem;
  background: url("../img/top-slice-4.svg") no-repeat top center, var(--td-navy);
  background-size: 100%;
}

.leadership {
  padding-top: 3rem;

}

.leader-block {
  position: relative;
  padding: 0.75rem 2rem 0.75rem 2rem;
  background: white;
  border-radius: 16px;
  margin-right: 30px;
  transition: 0.33s all;
}

.leader-block .user-img {
  position: absolute;
  top: -45%;
  right: -30px;
  max-width: 120px;
  border-radius: 100%;
  outline: 5px solid var(--td-navy);
  transition: 0.33s all;
  margin-top: 0px;
}

.top-line:hover .user-img {
  outline: 5px solid var(--td-green);
  margin-top: -20px;
}

.top-line:hover {
  padding-top: 22px;
  padding-bottom: 8px;
}

.leader-block h4 {
  padding-top: 1rem;
}

.leader-block p {
  color: var(--td-green);
  border: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: -5px;
}

.leader-block:hover {
  border-bottom-right-radius: 36px;
}


.top-line {
  padding-top: 14px;
  padding-bottom: 28px;
  background: url('../img/top-line-long.svg') no-repeat top center;
  background-size: contain;
  transition: 0.33s all;
}

.management-block p {
  color: var(--td-blue);
  border-top: 1px solid var(--td-blue);
  padding-top: 1rem;
  font-size: 12px;
}

#testimonials {
  padding: 12rem 0 4rem;
  background: url("../img/bottom-slice-1.svg") no-repeat top center;
  background-size: 100%;
}


.testimonial-block {
  border: 1px solid var(--td-blue);
  background: var(--td-white);
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative !important;

  padding: 30px 30px 70px;

  background: rgba(219, 237, 249, 0.89);
  mix-blend-mode: normal;
  border: 3px solid rgba(219, 237, 249, 0.1);
  backdrop-filter: blur(14.4px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 16px 16px 64px 16px;

}

.testimonial-block.green {

  background: rgba(213, 236, 213, 0.89);
  mix-blend-mode: normal;
  border: 3px solid rgba(213, 236, 213, 0.1);

}

.author-block {
  /* Frame 3654 */
  position: absolute;
  bottom: -2.75rem;
  box-sizing: border-box;

/* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px 12px 20px;
  gap: 10px;


background: rgba(255, 255, 255, 0.6);
border: 2px solid rgba(255, 255, 255, 0.43);
backdrop-filter: blur(19.2px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 16px 16px 32px 16px;

}

.btn-cta {
  padding: 16px 9px 16px 24px !important;
  background: var(--td-navy);
  border-radius: 16px 28px 16px 16px !important;
  border: 3px solid var(--td-navy);
  transition: 0.2s all;
}

.btn-cta:hover {
  background: white;
  border-radius: 16px 28px 16px 16px !important;
  color: var(--td-navy);
  border-color: var(--td-navy) !important;
}



.btn-cta i {
  padding: 12px;
  border-radius: 8px 16px 8px 8px;
  background: white;
  color: var(--td-navy);
  margin-left: 2rem;
  transition: 0.2s all;
}

.btn-cta:hover i {
  background: var(--td-navy);
  color: white;
  margin-left: 3rem;
}


.btn-cta-outline i {
  padding: 12px;
  border-radius: 8px 16px 8px 8px;
  background: var(--td-navy);
  color: white;
  margin-left: 2rem;
  transition: 0.2s all;
}

.btn-cta-outline {
  color: var(--td-navy) !important;
  padding: 16px 9px 16px 24px !important;
  border: 3px solid var(--td-navy);
  background: white !important;
  border-radius: 16px 24px 16px 16px !important;
  transition: 0.2s all;
}

.btn-cta-outline:hover {
  background: var(--td-navy) !important;
  border-radius: 16px 24px 16px 16px !important;
  color: white !important;
  border-color: white !important;
  transition: 0.2s all;
}

.btn-cta-outline:hover i {
  background: white;
  color: var(--td-navy);
  transition: 0.2s all;
  margin-left: 3rem;
}

.user-icon {
  background: var(--td-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 60px;
  height: 60px;
  float: left;
  margin-right: .5rem;
  border-radius: 64px;

}

.testimonial-block.green .user-icon {
    background: var(--td-green);
}
.author-block .author {

font-family: var(--lexend);
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 22px;
letter-spacing: 0px !important;
/* identical to box height */

color: #072208;

}

.company {

  font-family: var(--usual);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0;

  color: var(--text-gray);
  opacity: 0.7;

}
/* .testimonial-block::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/quote-icon.svg") no-repeat center center;
  aspect-ratio: 1;
  width: 64px;
  height: 64px;
  right: 15px;
  bottom: 1px;
} */

.mobile-only, .nav > li.mobile-only { display: none; }
.desktop-only { display: flex; }

.ng {
  margin-left: -30px;
  margin-right: -30px;
}

/* .mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; } */

/* Mobile Landscape */
@media only screen and (max-height: 575.98px) and (orientation: landscape) {
  .blue-icon { max-width: 60px; margin-bottom: 2rem; }
  .navbar-default .navbar-toggle {
    border-radius: 0;
    margin-right: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    border-color: var(--td-navy);
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--td-navy);
  }
  .img-responsive.hero-img {
    max-width: 100%;
  }
  #contracts i.green {
    margin-top: 1rem;
    transform: translate(0rem, -0.5rem);
  }
  .cta-underline {
    margin-left: 0;
    margin-top: 1rem;
  }

  #contracts h3.h4.ms-md-3.lh-sm {
    margin: 1.5rem 0 1rem;
  }

  #contracts {
    padding-bottom: 2rem !important;
  }

  #contracts .contract-tag {
    font-size: 12px !important;
  }

  #hero h1, #hero .h1, .h1, h1, .hero .h2 {
    font-size: 2.5rem !important;
  }
  .offering-group .col-12.col-md-3 {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: -1rem;
  }

  .approach-inner .col-12.col-md-4, .approach-inner .col-12.col-md-8 {
    width: 100%;
    margin-top: 1rem }

  .col.need-item {
    width: 50%;
  }

  .inner {
    max-width: 100%;
  }

  .service-list .col-xs-6.col-md-3 {
    width: 50%;
    margin-bottom: .8rem;
}
.service-list { margin-top: 1rem !important; }

.service .hero .container, .service #hero .container, .home .hero .container {
    max-width: 100%;
    padding: 0 2rem;
}

.service #hero {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

  #feature {
    background-position: 100% 0%;
  }

  #feature .col-12.col-md-6:first-child {
    width: 66.6666%;
}
#feature .col-12.col-md-6:last-child {
  width: 33.3333%;
  padding: 0 !important;
}

#offerings {
        padding: 8rem 0 10rem !important;
    }



    p, .body-text, p.lh-lg {
    font-size: 16px !important;
    line-height: 1.55 !important;
    }
    .author-block {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
      left: 10px;
    }
    .author-block .author {
      font-size: 14px !important;
      margin-bottom: 0 !important;
    }
    .company {
      font-size: 12px !important;
  }
  .testimonial-block {
        padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  }
  #contact {
    padding-top: 0rem;
  }

  #contact .col-12.col-md-6 {
    padding: 0 1rem;
    width: 100%;
  }

  #contact .col-12.col-md-6.mt-2.p-lg-5.pb-lg-2 {
    width: 100%;
    padding: 0 3rem;
    margin-top: 1rem;
  }
  #contact .contact-form {
    margin-top: 2rem;
    width: 100%;
  }

  .footer .col-12.col-md-5.text-left, .footer .col-12.col-md-7.text-right.px-4.px-md-1 {
    margin-bottom: 1rem;
    width: 100%;
}
  .footer {
    padding-top: 11rem;
  }

  #approach {
    padding-top: 8rem;
  }
  #approach .wrapper {
    background-position: -30% 0%;
  }

  .contact-list .contact-item {
    padding: .75rem 0 !important;
    font-size: 13px;
  }
  .contact-item, .no-underline {
    font-size: 13px;
  }
    .user-icon {
      width: 48px;
      height: 48px;
      margin-right: 4px !important;
      font-size: 26px;
    }
    #contact .container {
      padding: 3.5rem 1.5rem 1rem;
    }
    #contact .top-divider {
      margin-bottom: 0 !important;
    }
    .contact-list { margin-top: 0.5rem !important; }
    .body-text { margin-bottom: 2rem !important;}
    #hero h1, #hero .h1, .h1, h1, .hero .h2 {
      font-size: 2.5rem !important;
    }
    h3, .h3 {
      font-size: 1.75rem !important;
    }
    h4, .h4 {
      font-size: 1.25rem !important;
    }

    .offering-group {
      padding-top: 2rem;
    }
    .tag {
      font-size: 12px !important;
      padding: 8px 14px !important;
      cursor: text !important;
      -webkit-touch-callout: text;
      -webkit-user-select: text;
      -khtml-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
      user-select: text;
    }

    .contracts .inner p {
      font-size: 12px !important;
      line-height: 1.4 !important;
    }

    .top-divider {
      padding-top: 1.5rem;
      margin-bottom: 1rem !important;
    }
    .feature-tag {
      font-size: 11px !important;
      font-weight: 400;
    }
}

/* Mobile */
@media only screen and (max-width: 600px) {
  nav.navbar.navbar-default.navbar-fixed-top {
    padding-top: 0px !important;
  }
  html {
    width: 100vw;
height: 100vh;
overflow-y: scroll;
overflow-x: hidden;
  }
  body {
    /* overflow-x: hidden; */
    padding-right: 0 !important;
    /* position: absolute; */
    width: 100vw;
    overflow-x: hidden !important;
  }
  #contracts i.green {
    margin-top: 1rem;
    transform: translate(0rem, -0.5rem);
  }
  .careers-container {
    border-radius: 24px;
    background: url(../img/career-bg.svg) no-repeat 104% 80%, var(--td-navy);
    backdrop-filter: blur(12px);
    background-size: 45%;
    margin-top: -1rem !important;
    padding: 2rem 1rem !important;
    margin-bottom: 3rem;
  }
  .careers-container h1 {
    margin-bottom: .5rem !important;
    padding-left: 1rem;
  }
  .cta-underline {
    margin-left: 0;
    margin-top: 1rem;
  }



  #contracts h3.h4.ms-md-3.lh-sm {
    margin: 1.5rem 0 1rem;
  }

  #contracts {
    padding-bottom: 2rem !important;
  }

  #contracts .contract-tag {
    font-size: 12px !important;
  }

  .offcanvas {
        height: 100vh;
  }

  .home .hero .logo {
    max-height: 34px;
  }
  #hero h1, #hero .h1, .h1, h1, .hero .h2 { font-size: 3.75rem !important; }
  #hero {
    margin-top: 4rem;
    padding-bottom: 1rem;
  }

  .offering-group .row.flex {
    display: block;
  }

  .va-swam {
    padding-top: 4rem;
    margin-top: 0rem;
    background: url('../img/va-map.svg') no-repeat top right;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ffffff21;
    margin-bottom: 2rem;
  }

  .footer .nav.flex-column {
    margin-bottom: 2rem;
  }

  .footer .text-right {
    float: left;
    opacity:1 !important;
  }
  #hero .img-responsive {
    margin-top: 3rem;
    max-height: 240px;
    margin-right: 0;
    float: right;
    margin: 0rem auto 0;
    margin-bottom: -3rem;
    margin-top: 2rem;
    display: block;
}

  #contact .container {
    border-radius: 24px 24px 36px 36px;
    padding: 60px 30px 30px;
}

.offcanvas .dropdown-menu > li > a {
  padding-left: 0.25rem;
  padding-right: .5rem;
  opacity: 1;
  color: var(--td-navy) !important;
}

.offcanvas .nav-link {
  color: var(--td-navy) !important;
}
.offcanvas ul.navbar-nav {
  padding: 1rem;
  /* border-top-left-radius: 36px;
  border-top: 2px solid var(--td-light-gray);
  border-left: 2px solid var(--td-light-gray);
  margin-top: 1rem; */
}
#hero .container, #contracts .container, #services .container, .home .hero .container, #clients .container, #team .container, #testimonials .container, #about .container, #methodology .container {
  padding: 0 1.75rem;
}
.offcanvas .btn-close {
  border-radius: 50px;
background: #fff var(--bs-btn-close-bg) center / 1em auto no-repeat;
/* color: white; */
border: 2px solid var(--td-navy);
/* padding: 8px; */
width: 32px;
height: 32px;
}

  .offcanvas-body {
    padding-right: 0;
  }

  .contact-list {
    transform: none;
background: none;
padding: 1rem 0.25rem;
  }
  .contact-form {
    margin: 0;
    /* padding: 0; */
    border: none;
    padding: 2rem 2rem;
    border-radius: 30px;
  }

  .feature-item .inner {
    width: 100%;
    padding: 2.5rem 2rem 2rem;
  }
  #feature .img-fluid {
    margin-top: 0;
  }
  .vertical-center {
    padding-left: 2rem;
  }
  .col.need-item {
    padding: 5px;
}
  .feature-item .inner {
    padding-top: 2rem;
  }

  .divider-blue, .divider-teal, .divider-green {
    margin: 1.25rem 0;
  }


  #approach .approach-inner {
    padding: 0;
    border: none;
    background: transparent;
    margin-top: 3rem;
  }

  .need-item .inner {
    padding: 2.5rem 2rem 3rem;
    margin-bottom: 8px;
  }

  .service #hero {
    padding: 0;
    margin-top: 1rem;
  }

  .navbar-default .container {
    padding: 0 15px;
    max-width: 100vw;
    margin: 0;
    background: #ffffffe8;
  }
  #offerings {
    padding-top: 5rem;
    padding: 5rem 1rem 4rem 1rem;

  }
  #approach {
    padding: 1rem;
    margin-top: -2px;
  }
  .footer {
    padding-top: 6rem;
  }
  .offcanvas .navbar-nav > li:hover {
    border: none;
  }
  .offcanvas .dropdown-menu {
    border: 1px solid !important;
    transform: translate3d(8px, 53px, 0px);
    border-radius: 20px;
  }
  .approach-inner .col-12.col-md-8 {
    padding: 1rem 1rem 0;
    background: #eef5fc;
    border-radius: 36px;
    margin-top: 1rem;
    padding-bottom: 1.5rem;
    border: 8px solid white;

  }

  .approach-item {
    padding: 1.75rem 1.25rem;
    background: #eef5fc;
    margin-bottom: -1rem;
  }

  .approach-item .col-md-8 {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
  }

  #need { background: var(--td-navy); padding-bottom: 2rem; }
  #need .col-md-5.vertical-center {
    padding: 2rem;

  }

  #need .row.flex.row-cols-1.row-cols-lg-3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -0.75rem;
    margin-top: -4rem;
    width: 100vw !important;
    padding: 0 1rem;
    padding-top: 3rem;
  }

  #feature .row.mt-5.flex.row-cols-1.row-cols-lg-3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -1.5rem;

    width: 100vw !important;
    padding: 0 1rem;
  }

  #need .row.flex.row-cols-1.row-cols-lg-3::-webkit-scrollbar, #feature .row.mt-5.flex.row-cols-1.row-cols-lg-3::-webkit-scrollbar {
  	 display: none;
  }

  .col.need-item, .feature-item {
    padding: 5px;
    max-width: 80vw;
  }

  .col.need-item .inner {
    border-top: 1px solid #4d638c;
    box-shadow: 0 -50px 50px -30px #3ba6ff0d;
  }

  #feature {
    background-position: 100% 150% !important;
  }

  #need .divider-blue {
    display: none;
  }

  #offerings .top-divider {
    margin-bottom: 2rem !important;
  }

  .home #services {
    background: url('../img/top-slice-3.svg') no-repeat, top center;
    background-size: 100%;
    margin-top: -2px !important;
    padding-top: 5rem !important;
  }



  #contact .col-12.col-md-6.mt-2.p-lg-5.pb-lg-2 {
    padding: 0 2rem;
}

  .feature-tag i {
    margin-left: 0;
    margin-right: 8px;
  }
  #feature .left-lined, #about .left-lined {
    border: none;
    padding-left: 0;
  }
  #feature .container {
    padding: 0 1.5rem;
  }
  #contact { padding-top: 5rem; }
  .icon-list { padding-left: 2rem; }
  .border-box { margin-bottom: 2rem; }
  .footer .text-right { float: left; opacity: 0.65;}
  .navbar-default .navbar-toggle {
    border-radius: 0;
    margin-right: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    border-color: var(--td-navy);
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--td-navy);
  }
  .navbar-right {
    width: 100vw;
  }
  a.navbar-brand.page-scroll {
    padding: 15px 15px 0px 15px;
  }
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
    width: 100vw;
  }
  .navbar-nav > li > a {
    transition: 0.2s all;
    height: auto;
  }
  .navbar-nav > li { padding: 0.5rem; }
  .contact-info { margin: 3rem 0; padding-top: 2rem; }
  .hero-img {
    padding-left: 0rem;
    float: none;
    padding-top: 1rem;
  }
  .dark-shadow { margin-left: 0; margin-top: 2.25rem; }
  .approach-image { padding-left: 1.5rem; }
  .blue-icon { max-width: 60px; margin-bottom: 2rem; }
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }

  li.mobile-only { padding-top: 0; padding-bottom: 0; }
  .navbar-brand > img {
    padding-top: 1rem;
  }
  #need .vertical-center:first-child {
    padding-right: 2rem;
  }
  .mb-xs-0 { margin-bottom: 0 !important; }
  #offerings { margin-top: -2px; padding-top: 5rem; }

  /*-- Home Mobile --*/
  #hero.home-hero {
    padding-bottom: 3rem;
    background-position: 125% 0%;
    background-size: 61%;
    background: none;
  }

  a.service-block {
    font-size: 14px;
    margin-bottom: 1rem;
    padding: 1rem 0.5rem 1rem 1.2rem;
  }

  #services .row.mb-2 {
    margin-bottom: 0;
  }

  .leadership {
    padding-right: 1rem;
  }

  .leader-block p {
    font-size: 12px !important;
  }

  #clients {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  /* #clients .top-divider {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  } */
  #services .container {
    margin-bottom: 0rem !important;
    margin-top: 1rem !important;
  }
  .service-list {
    margin-top: 0 !important;
  }
  .divider-gradient {
    margin: 1rem 0 3rem !important;
  }

  #methodology {
    padding-top: 1rem;
    padding-bottom: 1rem;

    background-position: 60% center;
  }
  .row.equal-height-row {
    padding-top: 1.25rem !important;
  }

  #methodology img {
    margin-left: -4rem;
  }

  #clients {
    background: white;
  }

  #services {
    margin-bottom: 0;
  }

  .method1, .method2, .method3 {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 2.25rem;
    padding-top: 1rem;
  }

  #about img.img-responsive {
    margin-top: -3rem;
  }

  #about {
    padding: 0rem 0 3rem;
    background-size: 44%;
    background-position: 100% 100%;
  }

  .service-list {
    margin-top: 1rem;
}

  #team {
    padding-bottom: 1rem;
    padding-top: 7rem;
    margin-top: -1px !important;
  }

  .light-gradient-offset2 {
    margin-bottom: 3rem;
  }

  .leader-block .user-img {
    max-width: 90px;
    max-height: 90px;
    top: -30%;
  }

  #team .h3 {
    margin-bottom: 2rem;
  }

  .leader-block {
    margin-bottom: 1rem;
    padding: 0.25rem 1.25rem;
  }

  .leadership {
    margin-bottom: -2rem;
    padding-top: 0;
  }

  .management-block {
    margin-bottom: 1rem;
  }

  .management-block h5 {
    margin-top: 2rem;
  }

  #testimonials {
    padding-top: 3rem;
    margin-top: -3px !important;
  }

  #testimonials .quote-bg {
    margin-bottom: 3rem;
  }

  .testimonial-block::after {
    bottom: -29px;
  }

  .ng {
    margin-left: 15px;
    margin-right: 15px;
  }
  p, .body-text, p.lh-lg {
  font-size: 16px !important;
  line-height: 1.55 !important;
  }
  .author-block {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    left: 10px;
  }
  .author-block .author {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }
  .company {
    font-size: 12px !important;
}
.testimonial-block {
      padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}
#contact {
  padding-top: 0rem;
}
#contact .col-12.col-md-6.mt-2.p-lg-5.pb-lg-2 {
  padding: 0 1rem;
}
.contact-list .contact-item {
  padding: .75rem 0 !important;
  font-size: 13px;
}
.contact-item, .no-underline {
  font-size: 13px;
}
  .user-icon {
    width: 48px;
    height: 48px;
    margin-right: 4px !important;
    font-size: 26px;
  }
  #contact .container {
    padding: 3.5rem 1.5rem 1rem;
  }
  #contact .top-divider {
    margin-bottom: 0 !important;
  }
  .contact-list { margin-top: 0.5rem !important; }
  .body-text { margin-bottom: 2rem !important;}
  #hero h1, #hero .h1, .h1, h1, .hero .h2 {
    font-size: 2.5rem !important;
  }
  h3, .h3 {
    font-size: 1.75rem !important;
  }
  h4, .h4 {
    font-size: 1.25rem !important;
  }

  .offering-group {
    padding-top: 2rem;
  }
  .tag {
    font-size: 12px !important;
    padding: 8px 14px !important;
    cursor: text !important;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }

  .contracts .inner p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .top-divider {
    padding-top: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .feature-tag {
    font-size: 11px !important;
    font-weight: 400;
  }

  .career-feature {
    padding: 2rem 2rem 1rem 2rem !important;
    margin: 1rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100%;
    background-position: 280% 30% !important;
  }

  .career-feature.integrity {
    background-position: 840% 30% !important;
  }

  .careers-container {
    margin-top: 2rem !important;
    padding: 3rem 2rem !important;
    background-position: 320% 23%;
    background-size: 80%;
  }

  .lined-list.dark {
    margin-left: 0;
    margin-top: 1.5rem;
    padding-left: 0;
    margin: 0 .5rem;
  }
  .lined-list.dark li, .lined-list.dark li:hover {
    color: var(--td-navy);
    border-bottom: 1px solid var(--td-light-gray);
  }
}

/* Mobile */
@media only screen and (max-width: 420px) {
  #hero h1, #hero .h1, .h1, h1, .hero .h2 {
    font-size: 2.5rem !important;
  }
}

/* #region Careers */

.mission-statement {
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.mission-statement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--td-green) 0%, rgba(0,32,96,0.1) 100%);
}

.mission-statement strong.green {
    color: var(--td-green);
    font-weight: 600;
}

.mission-statement em {
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-statement {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .btn-cta {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}


#benefits {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,32,96,0.03) 100%);
    padding: 4rem 0;
}

.benefit-card {
    border: none;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--td-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.25rem;
}

.benefit-card .card-title {
    color: var(--td-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* #endregion Careers */
