@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-Light.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5,
a {
  font-size: 1rem;
}

p,
blockquote {
  font-size: 1.125rem;
}

small {
  font-size: 0.875rem;
}

/* Modern CSS Reset
   - Named: modern-css-reset.css
   - Purpose: opinionated, accessible, and small reset to provide consistent baseline across browsers
   - Usage: import or include as the very first stylesheet in your project
*/
/* 1) Box-sizing and inheritance */
:root {
  --focus-ring: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) Remove default spacing */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
pre {
  margin: 0;
}

/* 3) Make images and media behave */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 4) Set sensible defaults for the document */
html {
  line-height: 1.5; /* good default line-height */
  -webkit-text-size-adjust: 100%; /* prevent font size adjustments after orientation changes in iOS */
}

body {
  min-height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  background-color: #fff;
  color: #111;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 5) Improve form element defaults */
input,
button,
textarea,
select {
  font: inherit; /* make form elements use the same font as body */
}

button {
  background: none;
  border: none;
  padding: 0;
}

/* Remove native number input arrows in Firefox/Chrome */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 6) Anchor defaults */
a {
  color: inherit;
  text-decoration: none;
}

/* 7) Lists */
ul[role="list"],
ol[role="list"],
ul,
ol {
  list-style: none;
}

/* 8) Accessibility: focus styles */
:focus {
  outline: none;
}

:focus-visible {
  outline: max(3px, var(--focus-ring)) solid Highlight;
  outline-offset: 2px;
}

/* 9) Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* 10) Pre and code */
pre {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New",
    monospace;
  overflow: auto;
}

code {
  font-family: inherit;
}

/* 11) Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* 12) Utility tweaks */
.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 13) Small opinionated helpers (optional) */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

/* 14) Color-scheme support (allow UA to choose light/dark form controls) */
:root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}
/* 15) Small reset for fieldset and legend */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/* End of reset - add project-specific base styles after this file */
body {
  font-family: "Montserrat", system-ui, sans-serif;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col--6 {
  width: 50%;
}

.col--3 {
  width: 23%;
}

/* Width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: #39a8df;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: #00467f;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.navbar__hamburger-btn {
  display: none;
  height: 60px;
  width: 60px;
  cursor: pointer;
}
.navbar__wrapper {
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
}
.navbar__logo {
  max-width: 14rem;
}
.navbar__nav {
  display: flex;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
.navbar__nav-wrapper {
  margin-left: auto;
}
.navbar__link {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: all ease-out;
  font-weight: 500;
}
.navbar__link:hover {
  opacity: 1;
}
.navbar__link.active {
  opacity: 1;
  font-weight: 500;
}

.hamburger_menu {
  display: block;
}

.menu_close {
  display: none;
}

/* ===========================
   Navbar base
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Transparent over hero */
.navbar--transparent {
  background-color: transparent;
  box-shadow: none;
}

/* White after scrolling past hero */
.navbar__logo--black {
  display: none;
  max-width: 14rem;
}

.navbar--scrolled {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}
.navbar--scrolled .navbar__logo {
  display: none;
}
.navbar--scrolled .navbar__logo--black {
  display: block;
}

.navbar--scrolled svg line {
  stroke: #000;
}

/* Hide navbar */
.navbar--hidden {
  transform: translateY(-100%);
}

/* Visible navbar */
.navbar--visible {
  transform: translateY(0);
}

.navbar__link {
  transition: color 0.3s ease;
}

.navbar--transparent .navbar__link {
  color: #ffffff;
}

.navbar--scrolled .navbar__link {
  color: #111111;
}

/* ≤ 2400px */
/* ≤ 1920px */
/* ≤ 1400px */
/* ≤ 1200px */
@media screen and (max-width: 1200px) {
  h5,
  a {
    font-size: 0.9rem;
  }
  .navbar__nav {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .navbar {
    padding: 1rem;
  }
}
/* ≤ 768px */
@media screen and (max-width: 800px) {
  .navbar--transparent .navbar__link {
    color: #333;
  }
  .navbar__nav-wrapper {
    position: relative;
  }
  .navbar__nav {
    position: absolute;
    right: 0;
    top: 60px;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    padding: 2rem;
    background: #fff;
    display: none;
  }
  .navbar__nav--open {
    display: flex;
  }
  .navbar__link {
    color: #373f45;
  }
  .navbar__hamburger-btn {
    display: block;
  }
}
/* ≤ 576px */
@media screen and (max-width: 576px) {
  .navbar__logo,
  .navbar__logo--black {
    max-width: 9rem;
  }
  .roles__title,
  .approach__title {
    font-size: 5rem;
  }
  .hamburger_menu,
  .menu_close {
    height: 40px;
    width: 40px;
  }
  .navbar__hamburger-btn {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* ≤ 360px */
@media screen and (max-width: 360px) {
  .navbar .container {
    padding: 0 1rem;
  }
}
.hero {
  background: #373f45;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.hero__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  transform: translateY(10%);
  color: #fff;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.4rem;
  z-index: 3;
  opacity: 1;
  font-size: 3.5rem;
}

@media screen and (max-width: 900px) {
  .hero__title {
    opacity: 1;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

/* ≤ 2400px */
/* ≤ 1920px */
/* ≤ 1400px */
/* ≤ 1200px */
@media screen and (max-width: 1200px) {
  .hero__title {
    font-size: 2.8rem;
  }
  .hero {
    height: 80vh;
  }
}
/* ≤ 768px */
@media screen and (max-width: 800px) {
  .hero__title {
    font-size: 2rem;
  }
}
/* ≤ 576px */
/* ≤ 360px */
@media screen and (max-width: 360px) {
  .hero__title {
    font-size: 1rem;
  }
}
.ribbon-grid {
  border-bottom: 1px solid #e2e2e2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.1rem;
  color: #373f45;
  letter-spacing: 0.3px;
}

.ribbon-item {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  width: 100%;
}
.ribbon-item:first-child {
  border-right: 1px solid #e5e5e5;
}

.ribbon-item__text {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .ribbon {
    padding: 1rem 0;
  }
  .ribbon-item {
    padding: 0.75rem 0;
    margin: 0.75rem 0;
  }
  .ribbon-item__text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.about {
  padding: 6rem 0 7rem;
  background: #fff;
}
.about .row {
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
}
.about .col--6 {
  display: flex;
  justify-content: flex-end;
}
.about__content {
  max-width: 47rem;
  padding-left: 4rem;
}
.about__title {
  text-transform: uppercase;
  font-weight: 500;
  color: #373f45;
  letter-spacing: 2px;
  font-size: 2.6rem;
}
.about__img--mobile {
  display: none;
}
.about__img--desktop {
  -o-object-fit: cover;
  object-fit: cover;
}
.about__desc,
.about__quote {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
}
.about__desc {
  padding: 1rem 0 3rem;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 3rem;
}

.founder {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.founder__image {
  max-width: 3.75rem;
  max-height: 3.75rem;
}
.founder__name {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 0.7rem;
}

/* ≤ 2400px */
/* ≤ 1920px */
/* ≤ 1400px */
@media screen and (max-width: 1400px) {
  .about__img--desktop {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
/* ≤ 1200px */
/* ≤ 768px */
@media screen and (max-width: 800px) {
  .about {
    padding: 2rem 0 5rem;
  }
  .about .col--6 {
    width: 100%;
  }
  .about .col--6:first-child {
    display: none;
  }
  .about__img--desktop {
    display: none;
  }
  .about__img--mobile {
    display: block;
    margin: 1rem 0;
  }
  .about__content {
    padding: 0;
  }
  .about__title {
    font-size: 2.8rem;
  }
}
/* ≤ 576px */
@media screen and (max-width: 576px) {
  .about__title {
    font-size: 2rem;
  }
  .about__desc,
  .about__quote {
    font-size: 1rem;
  }
}
/* ≤ 360px */
@media screen and (max-width: 360px) {
  .about__title {
    font-size: 1.5rem;
  }
  .about__desc,
  .about__quote,
  .founder__name {
    font-size: 0.8rem;
  }
  .founder__details small {
    font-size: 0.8rem;
    line-height: 0.2;
  }
}
/* --------------------------------------------
   ROLES BLOCK (BEM)
   -------------------------------------------- */
.roles {
  padding: 8rem 0;
  background: #fff;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(218, 241, 252) 100%
  );
}
.roles__wrapper {
  padding-top: 3rem;
}
.roles__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #373f45;
}
.roles__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  padding-left: 2rem;
}
.roles__grid {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-row-gap: 1.5rem;
  grid-column-gap: 1.5rem;
}
.roles__item {
  background: #fff;
  padding: 2rem 3rem;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 8rem;
  flex-grow: 1;
  text-transform: uppercase;
  color: #373f45;
  cursor: pointer;
  transition: all 0.05s ease-in;
}
.roles__item:hover {
  transform: translateY(-1px);
  box-shadow: 5px 5px 17px 5px rgba(0, 0, 0, 0.02);
}
.roles__text {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
}
.roles__toggle-btn {
  background: #00467f;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
}
.roles__toggle-btn:hover {
  color: #fff;
  background: #39a8df;
}

.is-hidden {
  display: none;
}

/* ≤ 2400px */
/* ≤ 1920px */
/* ≤ 1400px */
@media screen and (max-width: 1400px) {
  .roles__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 1.5rem;
    grid-column-gap: 1.5rem;
  }
  .roles__text {
    font-size: 0.9rem;
  }
  .roles__title {
    font-size: 2.5rem;
  }
}
/* ≤ 1200px */
@media screen and (max-width: 1200px) {
  .roles__item {
    min-width: 31%;
    padding: 1rem 1rem;
    min-height: 6rem;
  }
}
/* ≤ 768px */
@media screen and (max-width: 800px) {
  .roles__header {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  .roles__header .col--6 {
    width: 100%;
    text-align: center;
  }
  .roles__title {
    font-size: 2rem;
  }
  .roles__desc {
    padding: 0;
    font-size: 1rem;
  }
  .roles__text,
  .roles__toggle-btn {
    font-size: 0.8rem;
    letter-spacing: 0.01px;
  }
  .roles__wrapper {
    padding-top: 0;
  }
}
/* ≤ 576px */
@media screen and (max-width: 576px) {
  .roles__item {
    min-width: 45%;
    padding: 1rem 1rem;
    min-height: 6rem;
  }
  .roles__title {
    text-align: left;
  }
  .roles__desc {
    padding: 0;
    font-size: 0.9rem;
    text-align: left;
  }
}
/* ≤ 360px */
#sectorPaginationBtn {
  background: #00467f;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

#sectorPaginationBtn:hover {
  background: #39a8df;
}

.sectors {
  padding: 9rem 0;
}
.sectors__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #373f45;
}
.sectors__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  padding-left: 2rem;
}

/* ============================
   BLOCK: sector
   ============================ */
.sector-details__wrapper {
  padding-right: 5rem;
}
.sector-details {
  padding: 2rem 0;
}
.sector-details__image {
  height: 25rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sector-details__title {
  font-weight: 500;
  color: #373f45;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sector-details__desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
.sector__wrapper {
  margin-top: 4.5rem;
}
.sector__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sector__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 1rem;
  align-items: center;
  padding: 1rem 1rem;
  background: #f5f5f5;
  color: #373f45;
  cursor: pointer;
  filter: invert(0); /* black */
  /* ============================
     ELEMENT: icon (nested under item)
     ============================ */
  /* ============================
     ELEMENT: text (nested under item)
     ============================ */
}
.sector__item.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00467f;
  color: #fff;
}
.sector__item:hover {
  background: #39a8df;
  color: #fff;
}
.sector__item:hover path {
  fill: #fff;
  transition: none;
}
.sector__item .sector__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: filter 0.2s;
}
.sector__item .sector__icon::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #e2e2e2;
  right: -0.5rem;
}
.sector__item .sector__text {
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sector__item.sector-active {
  background: #39a8df;
  color: #fff;
}
.sector__item.sector-active path {
  fill: #fff;
  transition: none;
}

.second_page {
  display: none;
}

/* ≤ 2400px */
/* ≤ 1920px */
/* ≤ 1400px */
@media screen and (max-width: 1400px) {
  .sectors__title {
    font-size: 2.5rem;
  }
}
/* ≤ 768px */
@media screen and (max-width: 800px) {
  .sectors__title {
    font-size: 2rem;
  }
}
/* ≤ 576px */
@media screen and (max-width: 576px) {
  .sectors {
    padding: 6rem 0;
  }
  .sector-details__wrapper {
    display: none;
  }
  .sector__title {
    row-gap: 1rem;
  }
  .sector__list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 3rem;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
  .sector__item {
    flex: 0 0 0;
    width: 100%;
    flex-grow: 1;
    gap: 1rem;
  }
  .sectors__title {
    text-align: left;
  }
  .sectors__desc {
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
  }
  .sector__wrapper {
    margin-top: 2rem;
  }
}
/* ≤ 360px */
.approach {
  background: #00467f;
  padding: 10rem 0 10rem;
  color: #fff;
}
.approach__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #fff;
}
.approach__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  padding-left: 2rem;
  opacity: 0.8;
}

.steps {
  background: var(--color-bg);
  padding-top: 6rem;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}

.step-card {
  padding: 4rem 3rem;
  background: #043964;
}
.step-card__number {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
}
.step-card__text {
  padding-top: 1rem;
}
.step-card__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
}
.step-card__desc {
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.8px;
  padding-top: 1rem;
}

@media screen and (max-width: 1180px) {
  .steps {
    padding-top: 4rem;
  }
  .steps__grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    grid-gap: 2rem;
  }
  .step-card {
    display: flex;
    gap: 1rem;
    padding: 1.8rem 2.5rem;
    align-items: center;
  }
  .step-card__text {
    padding-top: 0;
  }
  .step-card__title {
    font-size: 1.2rem;
  }
  .step-card__desc {
    font-size: 0.9rem;
    padding-top: 0.5rem;
  }
  .step-card__number {
    width: 5rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2rem;
  }
  .approach__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .approach {
    padding: 6rem 0;
  }
  .approach .row {
    flex-direction: column;
    gap: 1rem;
  }
  .approach .col--6 {
    width: 100%;
  }
  .approach__title {
    text-align: left;
    font-size: 2rem;
  }
  .approach__desc {
    font-size: 0.9rem;
    padding: 0;
    text-align: left;
  }
}
#map path {
  cursor: pointer;
  transition: 0.2s ease;
  fill: #39a8df;
}
#map path:hover {
  fill: #00467f;
}

path.map-active {
  fill: #00467f !important;
}

.nationwide {
  padding: 9rem 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(218, 241, 252) 100%
  );
}
.nationwide__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #373f45;
}
.nationwide__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  padding-left: 2rem;
}
.nationwide__locations {
  padding-top: 5rem;
}
.nationwide__locations--wrapper {
  background: #fff;
  padding: 2rem;
}
.nationwide .location {
  display: flex;
  align-items: center;
  flex: 1 0 30%;
}
.nationwide .location__title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.5rem;
  color: #373f45;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgrey;
  margin-bottom: 1.5rem;
}
.nationwide .location__group {
  display: flex;
  align-items: center;
}
.nationwide .location__group p {
  font-weight: 500;
  font-family: "Montserrat", system-ui, sans-serif;
  color: #373f45;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1px;
  margin-left: 0.2rem;
}
.nationwide .location__icon {
  height: 25px;
  width: 25px;
  margin-top: -2px;
}

.locations {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

@media screen and (max-width: 1400px) {
  .approach__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 800px) {
  .nationwide {
    padding: 6rem 0;
  }
  .nationwide .row {
    flex-direction: column;
    gap: 1rem;
  }
  .nationwide .col--6 {
    width: 100%;
  }
  .nationwide__title {
    text-align: left;
    font-size: 2.8rem;
  }
  .nationwide__desc {
    font-size: 0.9rem;
    padding: 0;
    text-align: left;
  }
  .row.nationwide__locations {
    gap: 5rem;
  }
  .location__group p {
    font-size: 1rem;
  }
  .locations {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .nationwide__title {
    font-size: 2rem;
  }
}
.blog {
  padding: 7rem 0;
}
.blog__title--wrapper {
  margin-bottom: 6rem;
}
.blog .col--3 {
  width: 22%;
}
.blog .col--6 {
  width: 48%;
}
.blog__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #373f45;
}
.blog__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  padding-left: 2rem;
}
.blog__headline {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1.5rem;
  color: #373f45;
}
.blog__excerpt {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.5;
  padding-top: 1rem;
}
.blog__btn {
  padding-top: 1rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  color: #39a8df;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.7;
}
.blog__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
}
.blog__wrapper .col--6 {
  width: 100%;
}
.blog__wrapper--horizontal {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-column-gap: 2rem;
  align-items: center;
}
.blog__wrapper--horizontal img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 300px;
}
.blog__wrapper--bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 2rem;
  margin-top: 4rem;
}
.blog__wrapper--bottom .col--3 {
  width: 100%;
}
.blog__wrapper--vertical .blog__image {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog__wrapper--vertical .blog__headline {
  font-size: 1.2rem;
  padding-top: 1.5rem;
}

@media screen and (max-width: 1400px) {
  .blog__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .blog .col--3 {
    flex-grow: 1;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .blog {
    padding: 6rem 0;
  }
  .blog__title {
    font-size: 2rem;
    text-align: left;
  }
  .blog__desc {
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
  }
  .blog__wrapper--horizontal {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }
  .blog__wrapper--horizontal .blog__image {
    width: 100%;
    height: 220px;
  }
  .blog__wrapper--horizontal .blog__content {
    margin: 0;
  }
  .blog__wrapper--horizontal .blog__headline {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
  .blog__wrapper--horizontal .blog__btn {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .blog .col--3 {
    flex-grow: 1;
    max-width: 48%;
  }
  .blog .col--3:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .blog .row {
    flex-direction: column;
    row-gap: 1rem;
  }
  .blog .col--6 {
    width: 100%;
  }
  .blog .blog__wrapper--horizontal {
    margin-top: 0;
    padding-top: 1.5rem;
  }
  .blog .col--3 {
    width: 100%;
    max-width: none;
  }
}
.contact {
  padding: 10rem 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(218, 241, 252) 100%
  );
}
.contact__wrapper {
  display: flex;
  align-items: center;
}
.contact .col--6:first-child {
  padding-right: 7rem;
}
.contact__title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 3rem;
  color: #373f45;
}
.contact__desc {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact .testimonial__quote {
  line-height: 1.8;
}
.contact .testimonial-giver__wrapper {
  padding-top: 2rem;
}
.contact .testimonial-giver__details {
  display: flex;
}
.contact .testimonial-giver {
  margin-left: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.contact .testimonial-giver__image {
  width: 5rem;
  height: 5rem;
}
.contact .testimonial-giver__name {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
}
.contact .testimonial-giver__position {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1px;
}

.contact__text {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #373f45;
}

.contact__icon {
  height: 20px;
  width: 20px;
}

.call-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #39a8df;
  color: #39a8df;
  border: 1px solid #39a8df;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  transition: 0.2s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.call-btn path {
  fill: #39a8df;
}

.call-btn:hover {
  background-color: #00467f;
  color: white;
}
.call-btn:hover path {
  fill: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form label {
  font-size: 1rem;
  font-weight: 500;
  color: #373f45;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.two-cols {
  flex-direction: row;
  gap: 1rem;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
}

input,
textarea,
select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
}

/* Focus state */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007bff;
}

/*Error*/
.form-error {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: #ea7000;
  display: none;
}

input.is-error {
  border-color: #ea7000;
}

/* Remove default select styling */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-row--hidden {
  display: none;
}

/* Upload wrapper */
.file-upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border: 1px dashed #ccc;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Text */
.file-upload__text {
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-upload__text img {
  height: 1rem;
}

.file-upload__hint {
  font-size: 0.875rem;
  color: #777;
}

/* Focus / hover */
.file-upload:hover,
#resume:focus-visible + .file-upload {
  border-color: #007bff;
}

/* When file selected */
.file-upload.is-filled {
  border-color: #007bff;
}

/* Error (optional) */
.file-upload.is-error {
  border-color: #dc3545;
}

.btn-send {
  padding: 0.9rem 2rem;
  display: inline-block;
  background: #39a8df;
  text-transform: uppercase;
  color: #fff;
  border: none;
  font-size: 1rem;
  max-width: 60%;
  cursor: pointer;
}

.btn-send:hover {
  background: #00467f;
}

.small-contact__title {
  display: none;
}

/* Responsive for mobile */
@media (max-width: 1200px) {
  .contact .col--6:first-child {
    display: none;
  }
  .contact .col--6:last-child {
    width: 100%;
    padding: 0 4rem;
  }
  .small-contact__title {
    display: block;
    padding-bottom: 4rem;
  }
  .contact-form {
    max-width: none;
  }
}
@media (max-width: 1200px) {
  .two-cols {
    flex-direction: column;
  }
  .contact .col--6:last-child {
    padding: 0 1rem;
  }
}
@media (max-width: 800px) {
  .contact {
    padding: 4rem 0;
  }
  .contact__title {
    font-size: 2rem;
  }
}
.footer {
  background: #373f45;
  padding: 2rem 0 1rem;
}
.footer__logo {
  width: 14rem;
}
.footer__wrapper {
  align-items: center;
  padding: 2rem 0;
}
.footer__link--group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
}
.footer__link--group--mobile {
  display: none;
}
.footer__link {
  padding-left: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social__icons {
  display: flex;
}

.social__icon {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  margin-left: 1rem;
}
.social__icon:hover {
  background: #fff;
}
.social__icon:hover path {
  fill: #39a8df;
}

.p-0 {
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .footer .row {
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
  }
  .social__icons {
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .footer__link--group {
    padding: 0;
  }
  .footer__link--group--desktop {
    display: none;
  }
  .footer__wrapper {
    padding: 1rem 0 1rem 0;
  }
  .footer__link--group--mobile {
    display: block;
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }
  .footer__link--group--mobile a {
    font-size: 1rem;
  }
}
.page-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  transform-origin: top;
}

@media (max-width: 1490px) {
  .about__title {
    font-size: 2.4rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 1rem;
  }
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title {
    font-size: 2.4rem;
  }
  .step-card {
    padding: 2.5rem;
  }
  .step-card__title {
    font-size: 1.2rem;
  }
  .step-card__desc {
    font-size: 0.8rem;
  }
}
@media (max-width: 1410px) {
  .about__title {
    font-size: 2.2rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 1rem;
  }
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 1400px) {
  .sectors,
  .contact,
  .approach,
  .nationwide {
    padding: 7rem 0;
  }
  .roles {
    padding: 6rem 0;
  }
  .roles__wrapper {
    padding-top: 1rem;
  }
  .roles__item {
    padding: 1rem;
    min-height: 6rem;
  }
  .step-card__title {
    font-size: 1rem;
  }
  .contact__desc {
    padding: 1rem 0 2rem;
  }
}
@media (max-width: 1340px) {
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title {
    font-size: 2rem;
  }
  .about__desc {
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1300px) {
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 0.9rem;
  }
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title {
    font-size: 1.8rem;
  }
  .locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1250px) {
  .nationwide .location__group p {
    font-size: 0.9rem;
  }
  .about__desc {
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
  }
  .founder {
    margin-top: 1.2rem;
  }
  .founder__details p {
    font-size: 1rem;
  }
  .founder__details small {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 3rem 0 6rem;
  }
}
@media screen and (max-width: 1180px) {
  .about__img--desktop {
    height: 40rem;
  }
  .sector-details__wrapper {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 1140px) {
  .about__img--desktop {
    height: 38rem;
  }
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title,
  .nationwide .location__title {
    font-size: 1.5rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 0.9rem;
  }
  .about__content {
    padding-left: 3rem;
  }
  .founder__details p {
    font-size: 0.8rem;
  }
  .founder__details small {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1000px) {
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title,
  .nationwide .location__title {
    font-size: 1.4rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote,
  .blog__excerpt {
    font-size: 0.9rem;
  }
  .sector__wrapper .col--6:first-child {
    width: 45%;
  }
  .sector__wrapper .col--6:last-child {
    width: 55%;
  }
  .blog__headline {
    font-size: 1rem;
  }
  .blog__wrapper--vertical .blog__headline {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 970px) {
  .container {
    padding: 0 2rem;
  }
  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector__item .sector__icon {
    width: 40px;
    height: 40px;
  }
  .sector__wrapper {
    flex-direction: column-reverse;
    row-gap: 1rem;
  }
  .sector__wrapper .col--6:first-child {
    width: 100%;
  }
  .sector__wrapper .col--6:last-child {
    width: 100%;
  }
  .sector__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .col--6.sector-details__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    align-items: center;
  }
  .roles__text {
    font-size: 0.8rem;
  }
  .row.container.nationwide__locations {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .blog__wrapper--horizontal {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
  .blog__excerpt,
  .blog__btn {
    display: none;
  }
  .blog__wrapper--bottom {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 2rem;
  }
  .sector-details__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .about__content {
    padding: 0;
  }
  .blog__wrapper--horizontal {
    grid-row-gap: 0;
  }
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title,
  .nationwide .location__title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 1rem;
    text-align: left;
  }
  .row.sector__title.sector__title--wrapper,
  .row.approach__title--wrapper {
    flex-direction: column;
    text-align: center;
  }
  .row.sector__title.sector__title--wrapper .col--6,
  .row.approach__title--wrapper .col--6 {
    width: 100%;
  }
  .sectors__desc,
  .approach__desc {
    padding: 0;
  }
  .about {
    padding: 1rem 0 6rem;
  }
  .about__title {
    margin-bottom: 1.5rem;
  }
  .row.roles__header,
  .row.container.blog__title--wrapper {
    row-gap: 0;
    margin-bottom: 1rem;
  }
  .sector-details__desc {
    font-size: 0.9rem;
  }
  .blog__wrapper--horizontal .blog__headline,
  .blog__wrapper--vertical .blog__headline {
    font-size: 1rem;
  }
  .blog__wrapper--bottom {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 760px) {
  .steps__grid {
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
  }
  .step-card {
    padding: 1rem 2rem;
  }
  .step-card__title {
    font-size: 1rem;
  }
  .roles__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 760px) {
  .sector__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .col--6.sector-details__wrapper {
    display: none;
  }
  .sector__item.first_page.sector-active {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 1rem;
    align-items: center;
    padding: 1rem 1rem;
    background: #f5f5f5;
    color: #373f45;
    cursor: pointer;
    filter: invert(0);
  }
  .sector__item.first_page.sector-active path {
    fill: #373f45;
  }
}
@media screen and (max-width: 560px) {
  .about__title,
  .roles__title,
  .sectors__title,
  .approach__title,
  .nationwide__title,
  .blog__title,
  .contact__title,
  .nationwide .location__title {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .about__desc p,
  .about__quote,
  .roles__desc,
  .sectors__desc,
  .sector-details__desc,
  .approach__desc,
  .nationwide__desc,
  .blog__desc,
  .contact__desc,
  .contact .testimonial__quote {
    font-size: 0.9rem;
    text-align: left;
  }
  .step-card {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 560px) {
  .roles__grid {
    grid-template-columns: 1fr 1fr;
  }
  .navbar {
    padding: 1rem 0;
  }
  .roles__item {
    min-height: 4rem;
  }
  .blog .col--3:nth-child(3),
  .blog .col--3:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .sector__item,
  .sector__item.first_page.sector-active {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sector__text {
    text-align: center;
  }
  .sector__icon::after {
    display: none;
  }
  .sector__item.button {
    display: none;
  }
  .sectors,
  .contact,
  .approach,
  .nationwide {
    padding: 5rem 0;
  }
  .row.container.blog__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .blog .blog__wrapper--horizontal {
    padding-top: 0;
    align-items: flex-start;
  }
  .row.container.blog__wrapper--bottom {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    margin-top: 0.5rem;
  }
  .blog .col--3:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .sector__text {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 360px) {
  .roles__grid,
  .sector__list {
    grid-template-columns: 1fr;
  }
  .step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
  .sector__icon::after {
    display: block;
  }
  .step-card__number {
    height: 3rem;
  }
  .sector__item,
  .sector__item.first_page.sector-active {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .locations {
    grid-template-columns: 1fr;
  }
} /*# sourceMappingURL=main.css.map */

/* Form Input */
.cf7-upload {
  width: 100%;
  margin-top: 8px;
}

.cf7-upload__label br {
  display: none;
}

.cf7-upload__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px dashed #d1d5db;
  cursor: pointer;
  background: #ffffff;
  transition: 0.2s ease;
}

.cf7-upload__label:hover {
  border-color: #39a8df;
  background: #f5f7ff;
}

.cf7-upload__icon {
  font-size: 22px;
}

.cf7-upload__text {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

/* Hide ugly native file input */
.cf7-upload__input {
  display: none;
}

/* CF7 error state */
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #dc2626;
  margin-top: 6px;
}

.cf7-upload__text.has-file {
}
