:root {
  --beige: #FEF6E1;
  --black: #000000;
  --white: #ffffff;
  --header: "Proto Mono", monospace;
  --paragraph: "Review", arial;
  --accent: "Proto Mono", monospace;
}

@font-face {
  font-family: 'Proto Mono';
  src: url('../assets/fonts/proto-mono/Proto-Mono-Semi-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Review';
  src: url('../assets/fonts/review/commercial-type-2508-HHNDLM-desktop/Review-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

* {
  font-family: var(--paragraph);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

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

html {
  scroll-behavior: smooth;
}

html, 
body {
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

body {
  color: var(--beige);
  background-color: var(--black);
}

a:hover, 
a:hover * {
  cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 45px;
  text-transform: capitalize;
}

p {
  font-size: 25px;
  padding-bottom: 20px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.container-larger {
  max-width: 1300px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
}

.middle-col {
  width: 795px;
  max-width: 100%;
  flex: 0 0 auto;
  text-align: center;
}

.left-col,
.right-col {
  flex: 1 1 0;
}

.left-col span {
  font-size: 15px;
  font-family: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.right-col {
  text-align: right;
}

.right-col img {
  width: 31px;
  height: auto;
}

.v-center {
  align-items: center;
}

.center {
  text-align: center;
}

.g-50 {
  gap: 50px !important;
}

.g-25 {
  gap: 25px !important;
}

.btn {
  font-weight: 700;
  font-size: 17px;
  color: var(--beige);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid var(--beige);
  width: 166px;
  height: 55px;
  padding: 16px 24px;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--beige);
  color: var(--black);
}

.btn i {
  margin-left: 15px;
}

img {
  max-width: 100%;
}


header {
  height: 100vh;
  min-height: 650px;
  background: var(--black);
  align-items: center;
  align-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header img {
  margin-bottom: 100px;
  width: 864px;
  height: auto;
}

nav {
  width: 624px;
  max-width: 100%;
  min-height: 81px;
  background: var(--black);
  border-radius: 10px;
  border: 1px solid var(--beige);
  align-items: center;
  align-content: center;
  padding: 10px 10px 10px 50px;
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
  transition: all 0.3s ease;
}

nav.fixed-nav {
  position: fixed;
  top: 0;
  bottom: unset;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

nav ul li a {
  font-weight: 700;
  font-size: 17px;
  color: var(--beige);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

nav ul li a:hover {
  border-bottom: 1px solid var(--beige);
}

main section {
  padding: 145px 0 100px 0;
  position: relative;
}

.section-bg-top {
  background-image: url('../assets/images/bg.svg');
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 125%;
  position: absolute;
  top: -25%;
}

.section-bg-bottom {
  background-image: url('../assets/images/bg.svg');
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 125%;
  position: absolute;
  bottom: -25%;
}

.s-light {
  background-color: var(--beige);
  color: var(--black);
}

.content span {
  font-size: 15px;
  font-family: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 45px;
  display: block;
}

.content p img {
  width: 22px;
  height: auto;
  margin-left: 15px;
}

.s-light .right-col img {
  filter: invert(1) brightness(0);
}

.pb-extra {
  padding-bottom: 175px;
}

.pt-extra {
  padding-top: 175px;
}

.s-03 {
  padding-bottom: 50px;
}

.s-03 .content {
  padding: 0 50px;
}

.box {
  background-color: var(--beige);
  color: var(--black);
  padding: 15px;
  margin: 75px 0;
}

.box-image {
  height: 366px;
  width: 100%;
  align-content: center;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.box-image p {
  color: var(--white);
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.25;
}

.box-info {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 5px;
}

.box-info p {
  font-size: 17px;
  margin: 0;
  padding: 0;
}

.box-info span {
  margin-top: 20px;
}

.event {
  background: var(--black);
  color: var(--beige);
  border-radius: 10px;
  display: inline-flex;
  width: 100%;
  padding: 45px 35px;
  text-align: left;
}

.s-02-01 .middle-col {
  width: 858px;
}

.event-first {
  margin-top: 50px;
}

.event-left-col {
  min-width: 250px;
  max-width: 100%;
  display: inline-flex;
  justify-content: space-between;
}

.event-left-col-1 span {
  font-size: 10px;
  font-family: var(--accent);
}

.event-left-col-1 p {
  font-family: var(--paragraph);
  font-size: 17px;
}

.event-left-col-2 img {
  width: 30px;
  height: auto;
  margin-top: 10px;
}

.event-right-col {
  display: inline-flex;
  max-width: 100%;
  justify-content: space-between;
  width: 100%;
}

.event-right-col > div {
  flex: 1;
}

.event-left-col-3 {
  max-width: 100%;
  padding-left: 50px;
}

.event-left-col-3 h2 {
  font-size: 32px;
  margin-bottom: 25px;
  min-width: 272px;
}

.event-left-col-3 p {
  font-size: 17px;
}

.event-left-col-3 span {
  font-size: 10px;
  font-family: var(--accent);
}

.event-left-col-4 {
  position: relative;
  text-align: right;
  padding-top: 10px;
}

.event-soon {
  background: var(--beige);
  color: var(--black);
  padding-top: 0;
  padding-bottom: 0;
}

.event-soon .event-left-col-2 {
  border-right: 1px solid var(--black);
}

.event-soon .event-left-col-1, 
.event-soon .event-left-col-2,
.event-soon .event-left-col-3,
.event-soon .event-left-col-4  {
  padding-top: 100px;
  opacity: .25;
}

.event-soon .event-left-col-2 {
  opacity: 1;
}

.event-soon .btn {
  filter: invert(1) brightness(0);
  cursor: not-allowed;
  pointer-events: none;
}

.event span.tag {
  font-size: 10px;
  color: var(--beige);
  background: var(--black);
  border-radius: 3px;
  width: 32px;
  height: 21px;
  display: block;
  text-align: center;
  align-content: center;
  font-family: var(--accent);
  text-transform: uppercase;
  margin-right: -15px;
}

.event-soon .event-left-col-1 p {
  width: 157px;
}

footer {
  padding: 75px 0 0;
}

footer .container {
  max-width: 1000px;
  margin: auto;
}

footer img {
  width: 52px;
  height: auto;
}

.footer-col-1 {
  flex: 0 0 auto;
  width: auto;
}

.footer-col-2 {
  flex: 0 0 auto;
  width: 320px;
}

footer p, 
footer a {
  font-family: var(--accent);
  font-size: 12px;
  color: var(--beige);
  text-transform: uppercase;
}

footer p a {
  text-decoration: none;
  transition: all 0.2s;
}

footer a:hover {
  color: var(--white);
  text-decoration: none;
}

footer ul {
  list-style-type: none;
  padding-left: 25px;
}

footer ul li {
  margin-bottom: 5px;
}

footer h2 {
  font-size: 14px;
  margin-bottom: 15px;
  width: 289px;
}

footer .btn {
  font-size: 12px;
  width: 99px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0;
}

footer .section-bg-bottom {
  bottom: 0;
  position: relative;
  height: 350px;
  background-position: top;
}

/* .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
} */

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu {
  position: relative;
  padding: 25px;
}

nav.fixed-nav {
  width: 1000px;
  padding: 10px 30px 10px 10px;
  top: 10px;
}

nav.fixed-nav .show-on-scroll {
  display: block;
}

nav.fixed-nav .show-on-scroll img {
  width: 500px;
}

nav.fixed-nav .btn {
  width: 166px;
  display: block;
}

.mobile-menu-btn {
  display: inline-block;
  width: 30px;
  position: relative;
  cursor: pointer;
  border: 0 !important;
}

.mobile-menu-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  margin: 8px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu.open {
  display: block;
}

.text-right {
  text-align: right;
}

.mt-25 {
  margin-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-0 {
  padding-bottom: 0;
}