:root {
    --fcpro-primary: #0073aa;
    --fcpro-secondary: #222;
    --fcpro-font: Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Darker Grotesque";
  src: url("../DarkerGrotesque-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  background: #1c1c1c;
}

body {
  margin: 0;
  margin-top: 76px;
  padding: 0;
  font-family: var(--fcpro-font);
  color: var(--fcpro-secondary);
}
body.logged-in header {
  margin-top: 32px;
}

* {
  box-sizing: border-box;
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.15rem;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

h3 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
}

h4 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: bold;
}

.coming-soon h1 {
  font-size: 50px;
  text-align: center;
  margin-top: 100px;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #333;
  color: #fff;
}
.footer-menu .column {
  flex: 1;
  padding: 0 10px;
}
.footer-menu .column ul {
  list-style: none;
  padding: 0;
}
.footer-menu .column ul li {
  margin-bottom: 10px;
}
.footer-menu .column ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-menu .column ul li a:hover {
  text-decoration: underline;
}

.footer-bar {
  background-color: #1c1c1c;
  color: white;
  padding: 10px 20px;
  display: flex;
  position: relative;
  justify-content: space-between;
}
.footer-bar .left-column,
.footer-bar .right-column {
  width: 50%;
  display: block;
  position: relative;
}
.footer-bar .left-column {
  text-align: left;
}
.footer-bar .right-column {
  text-align: right;
}
.footer-bar .right-column a {
  color: white;
  text-decoration: none;
}
.footer-bar .right-column a:hover {
  text-decoration: underline;
}

.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #1c1c1c;
  z-index: 1000;
  transition: top 0.3s;
  border-bottom: 1px solid #ffdf00;
}
.fixed-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.fixed-header .logo img {
  max-height: 70px;
  width: auto;
  margin-top: -10px;
  margin-bottom: -10px;
}
.fixed-header .main-navigation {
  display: flex;
}
.fixed-header .main-navigation ul#menu-main {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0px;
}
.fixed-header .main-navigation ul#menu-main > li {
  display: flex;
  margin-top: -10px;
  margin-bottom: -10px;
  height: 76px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  margin-left: 0px;
  position: relative;
}
.fixed-header .main-navigation ul#menu-main > li:has(.sub-menu)::after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-bottom: 10px solid #ffdf00;
  border-left: 10px solid transparent;
  bottom: 5px;
  right: 5px;
}
.fixed-header .main-navigation ul#menu-main > li > a {
  display: block;
  position: relative;
  padding: 30px 20px 10px 20px;
  height: 100%;
  color: white;
  text-decoration: none;
  position: relative;
}
.fixed-header .main-navigation ul#menu-main > li:hover .sub-menu {
  display: flex;
}
.fixed-header .main-navigation ul#menu-main > li:hover > a {
  background-color: #ffdf00;
  color: #1c1c1c;
  font-weight: bold;
}
.fixed-header .main-navigation .current-menu-item > a {
  color: #ffdf00 !important;
  font-weight: bold;
}
.fixed-header .main-navigation .current-menu-item:hover > a {
  color: #1c1c1c !important;
}
.fixed-header .main-navigation .current-menu-item:has(.sub-menu):hover::after {
  border-bottom-color: #1c1c1c !important;
}
.fixed-header .main-navigation .sub-menu {
  display: none;
  position: absolute;
  background-color: #1c1c1c;
  border-top: 1px solid #ffdf00;
  border-bottom: 1px solid #ffdf00;
  z-index: 1000;
  top: 100%;
  min-width: 150px;
  min-height: 48px;
  flex-direction: column;
  list-style: none;
  gap: 0px;
  padding: 0;
}
.fixed-header .main-navigation .sub-menu li {
  position: relative;
  margin-left: 0px;
}
.fixed-header .main-navigation .sub-menu li a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  text-align: right;
  padding: 10px;
}
.fixed-header .main-navigation .sub-menu li a:hover {
  background-color: #ffdf00;
  color: #1c1c1c;
  font-weight: bold;
}

.button {
  position: relative;
  padding: 10px 30px;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #1c1c1c !important;
  text-transform: uppercase;
  z-index: 1;
  font-weight: 800;
  cursor: pointer;
}
.button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transform: skewX(-15deg);
  transition: background-color 0.3s;
  box-shadow: 0 0 20px -10px #1c1c1c;
}
.button:hover::before {
  background-color: #ffdf00;
}/*# sourceMappingURL=brand.css.map */