*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

*:focus-visible {
  outline: none;
  /* outline: 2px dotted #3182ce;
  outline-offset: 6px; */
  box-shadow: 0 0 0 6px rgba(49, 130, 206, 0.436);
}

input,
button {
  font-family: inherit;
  line-height: 1;
}

/* .btn:focus {
} */

a {
  text-decoration: none;
}

img {
  width: 100%;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #555;
  color: #4a5568;
  font-family: Rubik, sans-serif;
  /* font-family: "Work Sans", sans-serif; */
}

/* ######################################## */
/* #### HELPERS #### */
/* ######################################## */
.mr-sm {
  margin-right: 1.6rem !important;
}

.mb-sm {
  margin-bottom: 1.6rem !important;
}

.mt-sm {
  margin-top: 1.6rem !important;
}

.mt-md {
  margin-top: 2rem !important;
}

.mb-md {
  margin-bottom: 2.4rem !important;
}

.mb-lg {
  margin-bottom: 3.2rem !important;
}

.mb-xl {
  margin-bottom: 4.4rem !important;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 1.2rem;
  padding: 0 2.4rem;
}

/* ######################################## */
/* #### TYPOGRAPHY #### */
/* ######################################## */

.heading-primary,
.heading-secondary {
  color: #343a40;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-primary {
  font-size: 5.2rem;
  /* line-height: 5.4rem; */
  line-height: 1.05;
}

.heading-secondary {
  font-size: 4.2rem;
  line-height: 1.05;
}

.heading-description {
  /* max-width: 56rem; */
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  /* letter-spacing: -1.5px; */
  /* letter-spacing: -0.1px; */
  margin-bottom: 4.8rem;
}

.section-title-indicator {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #3182ce;
  display: inline-block;
}

.online_services {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 7.2rem;
}

.online_services--header {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2c75b9;
  margin-bottom: 9.6rem;
  text-align: center;
}

/* ############### */
/* ### Sticky NAVIGATION ## */
/* ##############*/

.sticky .navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  background-color: rgba(255, 255, 255, 0.942);
  z-index: 999;
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* ######################################## */
/* #### LINK / BUTTON #### */
/* ######################################## */

.btn,
.btn:link,
.btn:visited {
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  outline: none;
  cursor: pointer;
}

.btn:disabled {
  background-color: #788397;
  cursor: not-allowed;
}

.btn--full:link,
.btn--full:visited {
  color: #fff;
  background-color: #3182ce;
  transition: all 0.4s;
}

.btn--full:hover,
.btn--full:active {
  /* // TODO Give the BG a darker tint */
  background-color: #1d4e7c;
}

.btn--outline:link,
.btn--outline:visited {
  color: #555;
  color: #4a5568;
  gap: 1rem;
  transition: all 0.4s;
  font-size: 2rem;
}

.btn--outline:hover,
.btn--outline:active {
  /* Give it a BG */
  box-shadow: inset 0 0 0px 2px #3182ce;
  background-color: #eaf3fa66;
}

.btn-form {
  background-color: #3182ce;
  background-color: #468fd3;
  background-color: #2c75b9;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 1.8rem;
  border: none;
  margin-top: 4rem;
  line-height: 1;
}

.btn-form svg {
  stroke: #fff;
  height: 1em;
  padding-bottom: 2px;
  padding-left: 2px;
  vertical-align: middle;
}

/* .check-mark {
  position: absolute;
  color: transparent;
  transition: 200ms;
}

.check-mark--show {
  color: rgba(29, 123, 29, 0.709);
} */

/* ######################################## */
/* #### MODIFIERS #### */
/* ######################################## */

.navigation-list .navigation-item.navigation-item--active a {
  color: #3182ce;
}

.text-highlighting {
  position: relative;
}

.text-highlighting::after {
  content: "";
  position: absolute;
  background-color: #98c1e7;
  width: 102.5%;
  height: 14px;
  /* bottom: 8px; */
  bottom: calc(1em / 6.6);
  left: -1%;
  z-index: -1;
}

.btn--arrow {
  width: 1.6rem;
  height: 1em;
  vertical-align: middle;
}

/* .nav-open {
} */

/* ###################################### */
/* #### LAYOUT / GRID #### */
/* ###################################### */

.grid {
  display: grid;
  /* gap: 4.8rem; */
  gap: 7rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-40x60 {
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  grid-template-columns: 2fr 3fr;
}

.grid--cols-60x40 {
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  grid-template-columns: 3fr 2fr;
}

.grid--cols-45x55 {
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  grid-template-columns: 2.25fr 2.75fr;
}

.grid-items-center {
  align-items: center;
}

.grid--footer {
  /* grid-template-columns: minmax(0,1.5fr) 1.5fr 1fr 1fr 1.5fr; */
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(
      0,
      1.5fr
    );
}
