:root {
    --background: #fff;
    --foreground: #171717;
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    color: var(--foreground);
    background: var(--background);
    font-family: Arial Adjusted, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
  color: #95A0A7;
  text-decoration: underline;
  text-decoration-color: #6439FF;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3.375rem;
}

h4 {
    font-size: 2.25rem;
}

h5 {
    font-size: 1.75rem;
}

h6 {
    font-size: 1.25rem;
    text-decoration: underline;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
}

ul {
    list-style-position: outside;
    margin-left: 2rem;
}

p.with-checkmark {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

p.with-checkmark + p.with-checkmark {
  margin-top: 0; 
}

p.with-checkmark::before {
  content: "";
  background: transparent;
  border-radius: 50%;
  border: 3px solid #6439FF;
  width: 35px;
  height: 35px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  margin-right: 0.5rem;
}

p.with-checkmark::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: rotate(40deg) translate(-50%, -50%);
  height: 18px;
  width: 8px;
  border-bottom: 3px solid #6439FF;
  border-right: 3px solid #6439FF;
  box-sizing: border-box;
}

.two-col-list {
  column-count: 2;
  column-gap: 1.75rem;
}

@font-face {
    font-family: Arial Adjusted;
    src: local("Arial");
    ascent-override: 90.49%;
    descent-override: 22.56%;
    line-gap-override: 0.00%;
    size-adjust: 107.06%;
}

textarea {
    font-family: Arial Adjusted;
    resize: none;
}

.highlight-underline-on-view {
  background: linear-gradient(to right, #6439FF 0%, #6439FF 100%) bottom no-repeat;
  background-size: 0% 0.375rem;
  background-position: left bottom;
  transition: background-size 0.6s ease;
}

.highlight-underline-on-view.in-view {
  background-size: 100% 0.375rem;
}

.main-layout-container,
.main-header {
    max-width: 1920px;
    margin: 0 auto;
}

.header {
    background-color: #0B0E28;
    width: 100%;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-areas: "logo navv";
    grid-template-columns: 2fr 3fr;
    align-items: center;
    padding: 1rem 8rem;
    background-color: #0B0E28;
    z-index: 999;
    transition: border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #95A0A7;
}

.main-header * {
    color: #fff;
}

.header-logo {
    grid-area: logo;
    max-width: 100%;
    height: auto;
}

.main-header-nav {
    grid-area: navv;
    display: grid;
    grid-template-columns: 5fr 1fr;
    align-items: center;
}

.main-header-nav-links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.nav-link {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.main-header-nav-btns {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

.contact-us-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #3DAAF4;
    color: #fff;
    min-width: 8.75rem;
    width: fit-content;
    text-wrap: nowrap;
}

.contact-us-btn:hover {
    background-color: #2756FF;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.telephone-link-class {
    color: #3DAAF4;
}

.hamburger {
  display: none;
  height: 1.625rem;
  margin-right: 1.625rem;
  position: relative;
}

.hamburger a.main-nav-toggle {
  display: block;
  width: 1.625rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger a.main-nav-toggle:after,
.hamburger a.main-nav-toggle:before {
  content: '';
  position: absolute;
  top: 0;
  height: 0;
  border-bottom: 3px solid #bbb;
  width: 100%;
  left: 0;
  right: 0;
  transition: all ease-out 0.15s;
}

.hamburger a.main-nav-toggle:after {
  top: 100%;
}

.hamburger a.main-nav-toggle i {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 3px;
  background-color: #bbb;
  width: 100%;
  position: absolute;
  top: 50%;
  transition: all ease-out 0.1s;
}

.hamburger a.main-nav-toggle.active-menu:after {
  transform: rotate(-45deg);
  transform-origin: center;
  top: 50%;
}

.hamburger a.main-nav-toggle.active-menu:before {
  transform: rotate(45deg);
  transform-origin: center;
  top: 50%;
}

.hamburger a.main-nav-toggle.active-menu i {
  opacity: 0;
}

/* Mobile Navigation Styles */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0B0E28;
  z-index: 998;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  transform: translateY(0);
}

.mobile-nav {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #3DAAF4;
}

.footer-container {
    padding: 8.75rem 8rem;
    background-color: #0B0E28;
    color: #fff;
}

.footer-container ul {
    list-style-type: none;
}

.footer-top-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "footer-top-company-container . footer-top-link-col footer-top-link-col footer-top-link-col";
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    border-bottom: 1px solid #2e4e73;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.footer-top-container div {
    flex-basis: 200px;
}

.footer-top-company-container img {
    margin-bottom: 1rem;
}

.footer-bottom-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.footer-bottom-container ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-bottom-container ul li {
    font-weight: 300;
}

.main-body-container {
    max-width: 1920px;
    margin: 0 auto;
    overflow: visible
}

.why-ths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 3.5dvw;
    padding-top: 2dvw;
}

.why-ths-grid-card {
  padding: 5%;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.why-ths-grid-card-wrapper {
  border: 3px solid #252423;
  border-radius: 10px;
  color: #252423;
  text-decoration: none;
  width: 100%;
}

.why-ths-grid-card-wrapper h5{
  text-decoration: underline solid transparent;
  transition: text-decoration-color 0.3s ease;
}

.why-ths-grid-card-wrapper:hover {
  border: 3px solid #6439FF;
  box-shadow: 0 10px 20px rgba(100, 57, 255, 0.15);
}

.why-ths-grid-card-wrapper:hover h5 {
  text-decoration: underline;
  text-decoration-color: #6439FF;
}

.why-ths-card-image-container {
  width: 80%;
  height: 8dvh;
  max-height: 70px;
  max-width: 225px;
  min-height: 45px;
  min-width: 125px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.why-ths-card-image {
  max-height: 100%;
  object-fit: contain;
}

.solutions-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: auto;
  grid-auto-flow: row;
}

.solutions-wrapper {
  /*display: grid;
  grid-template-columns: 1fr 3fr;*/
  display: flex;
  flex-direction: column;
  border: 3px solid #252423;
  border-radius: 10px;
  text-decoration: none;
  padding: 1.25rem;
  gap: 0.75rem;
}

.solutions-wrapper h5{
  text-decoration: underline solid transparent;
  transition: text-decoration-color 0.3s ease;
}

.solutions-wrapper:hover {
  border: 3px solid #6439FF;
  box-shadow: 0 10px 20px rgba(100, 57, 255, 0.15);
}

.solutions-wrapper:hover h5 {
  text-decoration: underline;
  text-decoration-color: #6439FF;
}

.solutions-grid-card {
    padding-bottom: 2rem
}

.solutions-grid-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.solutions-image-container {
  width: 100%;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.solutions-image {
  max-height: 200px;
  max-width: 200px;
  /*max-height: 100%;*/
  object-fit: contain;
}

.solutions-image-overflow {
  width: 400px;
  height: 400px;
  overflow: visible;
  position: relative;
}

.our-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
}

.our-approach-wrapper {
  display: grid;
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  border: 3px solid #252423;
  border-radius: 10px;
}

.our-approach-wrapper:hover {
  border: 3px solid #6439FF;
  box-shadow: 0 10px 20px rgba(100, 57, 255, 0.15);
}

.our-approach-grid-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.our-approach-image-container {
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    display: flex;
    padding: 0.25rem;
}

.our-approach-image {
  width: 100%;
  height: auto;
}

.our-approach-image img {
  max-height: 50px;
  height: auto;
  object-fit: contain;
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 3.5dvw;
    padding-top: 2dvw;
}

.who-we-serve-grid-card {
  padding: 5%;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.who-we-serve-grid-card-wrapper {
  border: 3px solid #FFF;
  border-radius: 10px;
  color: #FFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out;
}

.who-we-serve-grid-card-wrapper h5{
  transition: text-decoration-color 0.3s ease;
}

.who-we-serve-grid-card-wrapper:hover {
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.lottie {
  display:block;
  pointer-events:none;
}

/*.lottie {
  width:100%;
  max-width:600px;
  max-height: 200px;
  min-height: 150px;
  height:auto;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display:block;
  pointer-events:none;
}*/

.main-body-split-section-container {
    padding: 8.75rem 8rem;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1
}

.main-body-split-grid-text-container {
    flex-basis: 60%;
    z-index: 1;
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}

.main-body-11to19ratio-grid-container {
    padding: 8.75rem 8rem;
    display: grid;
    grid-template-columns: 11fr 19fr;
    gap: 2.5rem;
}

.sticky-section-wrapper {
    flex: 0 0 30%;
    display: flex;
    align-items: flex-start;
    position: relative;
    height: 100%;
}

.sticky-header-wrapper {
    width: 100%;
    padding-right: 1rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
}

.sticky-header-wrapper h2 {
    margin-bottom: 24px
}

.main-body-button {
    margin-top: 60px;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    background-color: #3DAAF4;
    color: #fff;
    position: relative;
    z-index: 1
}

/* Default: inline (no break) */
.break-point {
    display: inline;
}

.main-body-split-section-dark-blue-bg {
    background-color: #0B0E28;
    color: #fff;
}

.main-body-split-section-light-blue-bg {
    background-color: #3DAAF4;
    color: #fff
}

.main-body-split-section-light-purple-gradient-bg {
    background: linear-gradient(white, 80%, #efe6ff);
}

.gradient-box {
  background: linear-gradient(to bottom right, #0B0E28, 80%, #8e44ad);
  color: #fff;
  min-height: 750px;
}

.main-section-centered {
    padding: 6.25rem 8rem;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    position: relative;
    overflow: visible;
    gap: 1.5rem;
}

.main-section-centered p {
    line-height: 30px
}

.privacy-section-container {
    padding: 6.25rem 8rem;
    background-color: #0B0E28;
    color: #fff;
    display: flex;
    flex-flow: column nowrap;
}

.privacy-section-subcontainer {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.25rem
}

.privacy-section-subcontainer h5{
    padding-top: 2rem;
}

.privacy-section-subcontainer h6{
    padding-top: 0.75rem;
}

.privacy-section-subcontainer p{
    line-height: 1.5rem;
}

.privacy-section-subcontainer ul{
    padding-left: 2rem;
    list-style-position: outside;
}

.call-to-action-section-container {
    padding-top: 8.5rem;
    background-color: #0B0E28;
    color: #fff;
    display: flex;
    flex-flow: column nowrap;
    align-items: center
}

.call-to-action-section-subcontainer {
    max-width: 750px;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 2.5rem
}

.call-to-action-section-subcontainer p {
    font-size: 24px;
    font-weight: 300;
    line-height: 2.25rem;
}

.call-to-action-section-subcontainer button {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #3DAAF4;
    color: #fff;
    border: none
}

/*Contact Form */

.contact-us-main-container {
    display: flex;
    align-items: center;
    min-height: 25vh;
    background-color: #F3F4F6; /*6439FF F3F4F6*/
    width: 100%;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.needs-validation {
    width: 100%;
}

.contact-us-subcontainer {
    display: flex;
    gap: 15px;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-us-small-element-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contact-us-large-element-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}

.contact-us-form-field-label-text {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #718096;
}

.contact-us-form-character-count-text {
    color: #718096;
    font-size: 0.75rem;
    text-align: left;
    padding-top: 0.25rem;
}

.my-input {
  width: 100%; /* w-full */
  padding-right: 0.75rem; /* px-3 */
  padding-left: 0.75rem; /* px-3 */
  padding-top: 0.5rem; /* py-2 */
  padding-bottom: 0.5rem; /* py-2 */
  --tw-placeholder-opacity: 1;
  /*color: rgba(209, 213, 219, var(--tw-placeholder-opacity));*/ /* placeholder-gray-300 */
  border-width: 2px; /* border-2 */
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity)); /* border-gray-200 */
  border-radius: 0.375rem; /* rounded-md */
}

.my-input:focus {
  outline: 2px solid transparent; /* focus:outline-none (part of focus ring setup) */
  outline-offset: 2px; /* focus:outline-none (part of focus ring setup) */
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); /* focus:ring-indigo-100 */
  --tw-ring-opacity: 1;
  --tw-ring-width: 4px; /* focus:ring (default width is 3px in newer tailwind versions, but this uses ring class logic) */
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-width) + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); /* Applies the ring shadow */
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity)); /* focus:border-indigo-300 */
}

/* Specific styling for the placeholder text */
.my-input::placeholder {
  color: #d1d5db; /* This is the specific color value for gray-300 */
  opacity: 1; /* Required to ensure the color shows correctly across browsers */
}

.contact-us-form-message-response-container {
    display: flex;
    flex-direction: row;
}

.contact-us-submit-button-container {    
  width: 100%; /* w-full */
  box-sizing: border-box;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-us-submit-button {
  width: 100%; /* w-full */
  box-sizing: border-box;
  min-height: 44px;
  padding: 0 16px;
  color: #ffffff; /* text-white */
  background-color: #3DAAF4; /*was 6366f1 for bg-indigo-500 */
  border-radius: 0.375rem; /* rounded-md */
}

.contact-us-submit-button:focus {
  background-color: #2756FF; /* was 4f46e5 for focus:bg-indigo-600 */
  outline: 2px solid transparent; /* focus:outline-none */
  outline-offset: 2px;
}

.contact-us-invalid-entry-warning-text {
    color: #FC8181;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media screen and (max-width:1600px) {
    .main-header {
        padding: 1rem 6.25rem;
    }

    .main-body-split-section-container {
        padding: 8.75rem 6.25rem;
    }

    .main-section-centered {
        padding: 8.75rem 6.25rem;
    }

    .main-body-11to19ratio-grid-container {
        padding: 8.75rem 6.25rem;
    }

    .call-to-action-section-container {
        padding: 8.75rem 6.25rem;
    }

    .footer-container {
        padding: 8.75rem 6.25rem;
    }
}

@media screen and (max-width:1400px) {
    .main-header {
        padding: 1rem 5%;
    }

    .main-header-nav {
        grid-template-columns: 4fr 1fr;
    }

    /*.main-body-split-section-container {
        padding: 8.75rem 5%;
        gap: 3.125rem;
    }*/

    .main-section-centered {
        padding: 8.75rem 5%;
    }

    .main-body-11to19ratio-grid-container {
        padding: 8.75rem 5%;
        gap: 3.125rem;
    }

    .footer-container {
        padding: 5rem 5%;
    }

    .footer-top-container div {
        flex-basis: 12.5rem;
    }
}

@media screen and (max-width:1100px) {
    .main-header {
        width: 100%;
        grid-template-columns: 13fr 27fr;
    }

    .main-header-nav-links {
        gap: 1.5rem;
        padding-right: 1.25rem;
    }

    .two-col-list {
    column-count: 1;
    column-gap: 0;
    }

    .main-body-split-grid-text-container {
        flex-basis: auto;
        width: 80%;
    }

    .break-point {
        display: block; /* Turns the span into a line break */
    }

    .call-to-action-section-container {
        padding: 5rem 5%;
    }

    .footer-container {
        padding: 1.25rem 2%;
    }

    .footer-top-container {
        padding-bottom: 2.5rem;
    }
}

@media screen and (max-width:940px) {
    .main-header {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between
    }

    .main-header-nav {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between
    }

    .main-header-nav-links {
        display: none
    }

    .nav-bar-btn {
        display: none;
    }

    .hamburger {
        display: inline-block
    }

    .our-approach-grid {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .footer-top-container {
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 1.875rem;
        padding-bottom: 1.5rem;
    }

    .footer-top-container div {
        flex-basis: auto;
        max-width: 33rem;
    }

    .footer-bottom-container {
        gap: 1.25rem;
    }

    .footer-bottom-container ul {
        gap: 1rem;
    }
}

@media screen and (max-width:850px) {
    .main-body-split-section-container {
        padding: 5rem 5%;
        flex-flow: column nowrap;
        justify-content: center;
        text-align: center;
    }

    .main-body-split-grid-text-container {
        flex-basis: auto;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .break-point {
        display: block; /* Turns the span into a line break */
    }
}

@media screen and (max-width:768px) {
    .main-body-split-grid-text-container {
        padding-bottom: 0rem;
    }

    .why-ths-grid, .who-we-serve-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
    }

    .why-ths-grid-card-wrapper, .who-we-serve-grid-card-wrapper {
        grid-column: span 2;
    }

    .why-ths-grid-card-wrapper:last-child, .who-we-serve-grid-card-wrapper:last-child {
        grid-column: 2 / span 2;
    }

    .sticky-section-wrapper {
        height: auto !important;
    }

    .sticky-header-wrapper {
        position: static !important;
        top: auto !important;
        width: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .main-body-11to19ratio-grid-container {
        display: block;
    }

    .footer-bottom-container {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom-container ul {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
}

@media screen and (max-width:570px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 3.25rem;
    }

    h5 {
        font-size: 1.5rem;
    }

    .why-ths-grid, .who-we-serve-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    .why-ths-grid-card-wrapper, .who-we-serve-grid-card-wrapper {
        grid-column: 1 / -1;
    }

    .why-ths-grid-card-wrapper:last-child, .who-we-serve-grid-card-wrapper:last-child {
        grid-column: 1 / -1;
    }

    .our-approach-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }
}
