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

  :root {
    --sage: #013a80;
    --sage-rgb: 1, 58, 128;
    --deep: #013a80;
    --deep-rgb: 1, 58, 128;
    --blue: #009cdb;
    --light: #adc4e8;
    --bg: #f0f4f8;
    --accent: #B8AD91;
    --dark: #001a3d;
    --dark-rgb: 0, 26, 61;
    --container: 1440px;
    --gutter: 80px;
    --font-body: "Cormorant Garamond", serif;
  }

  button,
  input,
  select,
  textarea {
    font-family: inherit;
  }

  body {
    font-family: var(--font-body) !important;

    overflow-x: hidden;
  }

a {
    text-decoration: none !important;
}

.page-head {
    font-size: 56px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--blue);
}
