@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: "Darker Grotesque", sans-serif;
  color: #fff;
}
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;
}

#header-slider .item {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
}
#header-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
}
#header-slider .content-container {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1400px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}
#header-slider .content-container h2 {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 900;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
#header-slider .content-container p {
  margin: 0;
  padding: 0;
  line-height: 4rem;
}
#header-slider .content-container .btn {
  margin-top: 30px;
}
#header-slider .btn {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  color: #000;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
  background-color: #fff;
  transition: all 0.3s;
}
#header-slider .btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 100%;
  top: 50%;
  left: 100%;
  background-color: #fff;
  transform: translate(-7.5px, -50%) skew(-15deg);
  transition: all 0.3s;
  z-index: -1;
}
#header-slider .btn:hover {
  background-color: #ffdf00;
  color: #1c1c1c;
}
#header-slider .btn:hover::before {
  width: 30px;
  background-color: #ffdf00;
}
#header-slider .owl-dots {
  display: block;
  position: absolute;
  bottom: 0px;
  right: 90px;
  height: 40px;
}
#header-slider .owl-dots::after {
  display: block;
  position: absolute;
  content: "";
  right: -54px;
  top: 0px;
  width: 50px;
  height: 40px;
  background: #fff;
  transform: skewX(-15deg);
  z-index: 0;
}
#header-slider .owl-dots .owl-dot span {
  width: 15px;
  height: 40px;
  background: white;
  transform: skewX(-15deg);
  display: inline-block;
  margin: 5px;
  border-radius: 0;
  margin: 0 5px;
}
#header-slider .owl-dots .owl-dot.active span {
  background: yellow;
  width: 40px;
}
#header-slider .owl-nav {
  display: flex;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #fff;
  padding: 0;
  z-index: 1;
}
#header-slider .owl-nav button {
  width: 40px;
  height: 40px;
  margin: 0 !important;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
#header-slider .owl-nav button i {
  color: #000;
}
#header-slider .owl-nav button:hover {
  background: #ffdf00 !important;
  color: #000 !important;
}/*# sourceMappingURL=header-slider.css.map */