/* stylelint-disable value-list-comma-newline-after */

/* roboto-regular - latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-200 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-300 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-regular - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-500 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 500;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-600 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-700 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-800 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 800;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cairo-900 - latin */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url('../Fonts/cairo-v28-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --font-primary: 'Cairo', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --clr-primary: #241f82;
  --clr-secondary: #eb9719;
  --clr-grayDarkest: #121212;
  --clr-grayDark: #3b3b3b;
  --clr-grayMedium: #505050;
  --clr-grayLight: #e8e8e9;

  --font-clr-primary: #4a4a4a;

  --content-width: 1455px;
}

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

html,
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: normal;
  color: #4a4a4a;
  color: var(--font-clr-primary);
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
}

body {
  overflow-x: hidden;
  width: 100vw;
}

a {
  text-decoration: none;
  color: #241f82;
  color: var(--clr-primary);
}

ul {
  padding-left: 0;
  list-style: none;
}

li {
  padding: 1rem;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

.Main {
  position: relative;
  z-index: 1;
}

.headerImage {
  position: relative;
  height: 330px;
  border-top: 5px solid #eb9719;
  background-color: #e8e8e9;
  background-color: var(--clr-grayLight);
  background-image: url('../Images/Page-background-image.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 1026px) {

.headerImage {
    height: 550px;
}
  }

.headerImage::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/BowHeader.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }

#main {
  position: relative;
  padding-bottom: 40px;
  background-color: #e8e8e9;
  background-color: var(--clr-grayLight);
}

.contentWrapper {
  position: relative;
  z-index: 1;
  background-color: #e8e8e9;
  background-color: var(--clr-grayLight);
}

.contentWrapper > h1 {
    margin: 0 0 24px 0;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #4a4a4a;
    color: var(--font-clr-primary);
  }

.u-contentWidth {
  --paddingX: 20px;

  width: min(100% - var(--paddingX), 1455px);

  width: min(100% - var(--paddingX), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {

.u-contentWidth {
    --paddingX: 60px;
}
  }

@media screen and (min-width: 1026px) {

.u-contentWidth {
    --paddingX: 100px;
}
  }

@media screen and (min-width: 1367px) {

.u-contentWidth {
    --paddingX: 160px;
}
  }

.u-contentWidth--small {
  max-width: 810px;
  margin-right: 20px;
  margin-left: 20px;
}

@media screen and (min-width: 769px) {

.u-contentWidth--small {
    margin-right: 60px;
    margin-left: 60px;
}
  }

@media screen and (min-width: 1026px) {

.u-contentWidth--small {
    margin-right: auto;
    margin-left: auto;
}
  }

@media screen and (max-width: 1024px) {
  .Section-content.u-contentWidth--small {
    max-width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  top: auto;
  left: -10000px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.neos-contentcollection > [class^='style__addEmptyContentCollectionOverlay'] {
    flex: 1 1 100%;
  }

/* MARGIN BOTTOM */

.mb-1 {
  margin-bottom: 15px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-5 {
  margin-bottom: 45px !important;
}
