@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;600&display=swap");
html,
body {
  width: 100%;
  height: 100%;
}

body {
  font: 16px "Jost";
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: #ddd;
  background: #111;
}

* {
  box-sizing: border-box;
}

.wrapper,
.header {
  width: 100%;
}

.w-100 {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 25px;
  margin: auto;
  text-align: center;
}
.header .container {
  position: relative;
}

.header {
  display: flex;
  flex-flow: row;
  align-items: center;
  height: 96px;
  background: #0a0a0a;
}
.header h1 {
  display: flex;
  flex-flow: column;
  font-size: 28px;
  line-height: 115%;
  font-weight: 400;
  margin: 0;
  color: #d71e30;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header h1 > small {
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  color: #fff;
}

.menu {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin-bottom: 40px;
}
.menu button.option {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 16px "Jost";
  width: 100px;
  height: 36px;
  border: 0;
  margin: 0 5px;
  color: #333;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
  transition: all ease 0.3s;
}
.menu button.option.active {
  color: #fff;
  background: #d71e30;
  transition: all ease 0.3s;
}

.content {
  padding: 40px 0;
  min-height: calc(100vh - 176px);
}

.section {
  display: none;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 12px;
}
.section.active {
  display: flex;
}
.section-title {
  display: flex;
  flex-flow: column;
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 600px) {
  .section-title {
    margin-top: 30px;
  }
}
.section-title:first-of-type {
  margin-top: 0;
}
.section-title h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
  font-weight: 200;
  color: #444;
  width: 100%;
}
.section-title h2 > span {
  position: relative;
  display: inline-block;
  color: #f3b332;
  padding: 0 8px;
  background: #111;
  z-index: 2;
}
.section-title h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(11,11,11) 0%, rgb(33,33,33) 25%, rgb(33,33,33) 75%, rgb(11,11,11) 100%);
  z-index: 1;
}
.section-title > em {
  font-size: 18px;
  font-weight: 200;
  font-style: normal;
  color: #ccc;
}
.section-title > em:before, .section-title > em:after {
  content: "★";
  color: #4F6F52;
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  transform: translateY(-2px);
  margin: 0 8px;
  opacity: 0.6;
}
.section-title > p {
  padding: 0 10px;
  color: #eee;
}

.section-title > p:last-of-type {
  margin-top: 0;
}

p.stats {
  color: #aaa;
}
@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 24px;
  }
}
.section .v-item {
  background: #fff;
  position: relative;
  padding: 28.5% 0 0 0;
  width: calc(50% - 6px);
}
.section .v-item > iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
}
.section .v-item.--full {
  width: 100%;
  padding: 58.25% 0 0 0;
}
.section .v-item.--full > iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
@media only screen and (max-width: 600px) {
  .section .v-item {
    width: 100%;
    padding: 58.25% 0 0 0;
  }
  
  .section .v-item > iframe,
  .section .v-item.--full  > iframe {
    margin: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

.footer {
  background: #0a0a0a;
  padding: 30px 0;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}/*# sourceMappingURL=site.css.map */