/* Global reset, fonts, shared utilities. */

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --site-font-family: "Roboto", Arial, sans-serif;
  --site-container-max-width: 1140px;
  --site-container-gutter: 30px;
  --site-container-gutter-mobile: 24px;
  --color-primary: #012e41;
  --color-primary-rgb: 1, 46, 65;
  --color-accent: #f28705;
  --color-accent-rgb: 242, 135, 5;
  --color-teal-dark: #025158;
  --color-teal: #028c8c;
  --color-teal-rgb: 2, 140, 140;
  --color-surface: #eeeeee;
  --color-surface-soft: #f7f9f9;
  --color-text: #012e41;
  --color-text-muted: #52666d;
  --color-border: rgba(var(--color-primary-rgb), 0.1);
  --shadow-soft: 0 16px 40px rgba(var(--color-primary-rgb), 0.08);
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-ui: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--site-font-family);
  background: #ffffff;
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
label,
blockquote,
cite,
figcaption,
small,
strong,
em {
  font-family: var(--site-font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: #ffffff;
  background: var(--color-teal);
}

:focus-visible {
  outline: 3px solid rgba(var(--color-accent-rgb), 0.45);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

/* div {
  border: 1px solid red;
} */

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

.container {
  width: min(100% - var(--site-container-gutter), var(--site-container-max-width));
  margin: 0 auto;
}

.ftco-section {
  padding: 1em 0 6em 0;
  position: relative;
}

.ftco-no-pt {
  padding-top: 0;
}

.bg-light {
  background: var(--color-surface-soft);
}

@media (max-width: 575.98px) {
  .container {
      width: min(100% - var(--site-container-gutter-mobile), var(--site-container-max-width));
    }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
