:root {
  --background: #2d2d2d;
  --text: #e6e6e6;
  --link: #696eff;
  --black: #060606;
  --green: #4ed01a;
  --rounded-corners: 2px;
  --black-4: rgba(6, 6, 6, .4);
  --gray: #848584;
  --dark-gray: #181818;
  --table-heading: #23262e;
  --table-row-secondary: #363c48;
  --table-row-primary: #3d4351;
  --red: #d10a04;
  --red-4: rgba(209, 10, 4, .4);
  --green-4: rgba(78, 208, 26, .4);
  --background-2: rgba(45, 45, 45, .2);
  --white: white;
  --black-5: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 20px;
}

a {
  color: var(--link);
  text-decoration: none;
}

.navbar {
  height: 60px;
  background-color: var(--black);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-container {
  min-width: 100%;
  white-space: nowrap;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.navbar-link-block {
  margin-left: 45px;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
  margin: 5px;
}

.navbar-active-guild {
  background-color: var(--black);
  margin-left: 15px;
}

.navbar-active-guild-border {
  height: 50px;
  max-width: 350px;
  min-width: 100px;
  background-image: url('../images/active-guild-border-right.svg'), url('../images/active-guild-border-left.svg');
  background-position: 100% 0, 0 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  margin: 5px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.navbar-link {
  color: var(--text);
  text-transform: uppercase;
}

.navbar-link:hover {
  color: var(--green);
}

.navbar-link.active-guild {
  text-transform: none;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  display: flex;
  overflow: hidden;
}

.navbar-link.active-guild.selector {
  height: 100%;
  padding: 3px 3px 0;
}

.navbar-link.guilds {
  text-transform: none;
}

.width-100-percent {
  width: 100%;
}

.navbar-dropdown-list.w--open {
  background-color: var(--black);
}

.button-primary {
  border-radius: var(--rounded-corners);
  background-color: var(--green);
  color: var(--black);
  text-align: center;
}

.button-warning {
    border-radius: var(--rounded-corners);
    background-color: #E34234;
    color: var(--black);
    text-align: center;
}

.button-primary.navbar-sign-in {
  align-self: center;
  margin: 5px 45px 5px 15px;
}

.button-primary.hero {
  width: 200px;
  text-align: center;
  padding: 15px 40px;
  font-size: 18px;
  line-height: 1;
}

.button-primary._100w {
  width: 100%;
}

.button-primary.pe-10 {
  padding-right: 10px;
}

.container-100vh {
  height: 100vh;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-hero {
  background-image: linear-gradient(to bottom, var(--black-4), var(--black-4)), url('../images/background-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-cta {
  margin-top: 20%;
}

.text-title {
  text-align: center;
  letter-spacing: 45px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: -40px;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

.text-title.gaming {
  font-size: 82px;
}

.text-title.of {
  letter-spacing: 5px;
  margin-right: -3px;
  font-size: 24px;
  font-weight: 300;
}

.text-title.subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: normal;
  margin-top: 20px;
  margin-right: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
}

.hero-cta-of {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-line {
  width: 100%;
  height: 1px;
  background-color: var(--text);
}

.hero-line.left {
  margin-left: 55px;
  margin-right: 10px;
}

.hero-line.right {
  margin-left: 10px;
  margin-right: 55px;
}

.hero-cta-buttons {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.section-footer {
  border-top: 1px solid var(--gray);
  background-color: var(--dark-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-logos {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.footer-text {
  color: var(--gray);
  margin-left: 2px;
  margin-right: 2px;
}

.div-footer-text {
  margin-top: 15px;
  margin-bottom: 25px;
  display: flex;
}

.feature {
  grid-column-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.feature-description {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.feature-description.inverted {
  order: 2;
}

.feature-list {
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.feature-list.inverted {
  order: 1;
}

.feature-image-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-image-container.inverted {
  order: 0;
}

.feature-image {
  width: 170px;
  height: 170px;
  min-height: 170px;
  min-width: 170px;
}

.feature-list-item {
  display: flex;
}

.feature-description-info {
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-description-info.inverted {
  width: 100%;
  text-align: right;
}

.feature-description-link {
  justify-content: flex-end;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.feature-description-link.inverted {
  width: 100%;
  text-align: right;
}

.embed-arrow-right {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.feature-list-item-text {
  white-space: nowrap;
  align-items: center;
  padding-left: 5px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.spacer-xl {
  width: 100%;
  height: 200px;
}

.spacer-l {
  width: 100%;
  height: 140px;
}

.table {
  width: 100%;
  box-shadow: 8px 8px 14px 0 var(--black-4);
  margin-top: 20px;
}

.table-heading {
  height: 45px;
  border-top-left-radius: var(--rounded-corners);
  border-top-right-radius: var(--rounded-corners);
  background-color: var(--table-heading);
}

.table-row {
  height: 35px;
}

.table-row.primary {
  background-color: var(--dark-gray);
}

.table-row.secondary {
  background-color: var(--table-row-secondary);
}

.table-text {
  text-align: left;
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.4;
}

.table-text.heading {
  height: 45px;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.table-text.title {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.table-text.closed {
  color: var(--gray);
  flex-direction: row;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.table-text.row {
  font-size: 16px;
  font-weight: 300;
}

.table-link {
  color: var(--green);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.dropdown {
  display: none;
}

.text-center {
  width: 100%;
  text-align: center;
}

.text-center.mb-20 {
  margin-bottom: 20px;
}

.dropdown-text {
  white-space: nowrap;
}

.top-games-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.top-games-image-div {
  border-radius: var(--rounded-corners);
  box-shadow: 8px 8px 14px 0 var(--black-4);
  overflow: hidden;
}

.top-games-image {
  min-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.navbar-link-icon.active-guild {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  position: relative;
}

.feature-description-title.inverted {
  width: 100%;
  text-align: right;
}

.margins.vertical-center {
  margin-top: auto;
  margin-bottom: auto;
}

.section-account {
  background-image: url('../images/background-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.account-form-div {
  width: 380px;
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
}

.modal-form {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.form-field {
  border: 1px solid var(--gray);
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  color: var(--text);
  font-size: 12px;
  line-height: 1.4;
}

.form-field:focus {
  border-color: var(--green);
}

.form-field.textarea {
  height: 150px;
}

.form-div {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.link-light {
  font-weight: 300;
}

.spacer-35px {
  width: 100%;
  height: 35px;
}

.text-left {
  width: 100%;
}

.text-left.mb-10 {
  margin-bottom: 10px;
}

.flex-horizontal {
  width: 100%;
  display: flex;
}

.flex-horizontal.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.flex-horizontal.space-between {
  justify-content: space-between;
}

.scores {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.flex-horizontal.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.flex-horizontal.center {
  justify-content: center;
}

.flex-horizontal.center.gap-20.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox {
  width: 16px;
  height: 16px;
  border-color: var(--gray);
  background-color: var(--black);
  margin-top: 0;
  margin-right: 5px;
}

.checkbox:hover, .checkbox:active {
  margin-top: 0;
}

.checkbox.w--redirected-checked {
  width: 16px;
  height: 16px;
  border-color: var(--gray);
  background-color: var(--black);
  background-image: url('../images/checkmark-green.svg');
  margin-top: 0;
  margin-right: 5px;
}

.checkbox.w--redirected-focus {
  width: 16px;
  height: 16px;
  box-shadow: none;
  margin-top: 0;
  margin-right: 5px;
}

.checkbox.w--redirected-focus-visible {
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-right: 5px;
}

.checkbox-label {
  white-space: nowrap;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.4;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.accordion {
  padding-left: 20px;
  display: block;
  overflow: hidden;
}

.accordion-toggle {
  height: 60px;
  color: var(--text);
  padding-left: 0;
  display: flex;
}

.accordion-toggle-text {
  align-self: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.accordion-toggle-icon {
  align-items: center;
  font-size: 22px;
  line-height: 1.4;
  display: flex;
}

.accordion-dropdown-list {
  background-color: var(--background);
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: static;
}

.accordion-dropdown-list.w--open {
  background-color: var(--background);
}

.h2-faq.mb-40 {
  margin-bottom: 40px;
}

.spacer-top {
  width: 100%;
  height: 140px;
}

.faq-category {
  color: var(--green);
  font-size: 24px;
  line-height: 1.4;
}

.social-icon {
  width: 35px;
  height: 35px;
}

.profile-tab-menu {
  width: 100%;
  margin-top: 60px;
}

.tabs {
  z-index: 1;
  background-color: var(--background);
  justify-content: center;
  display: flex;
  position: fixed;
  top: 60px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.tab {
  background-color: var(--black);
  color: var(--text);
  text-transform: uppercase;
}

.tab.w--current {
  background-color: var(--black);
  color: var(--green);
}

.tab.first.w--current {
  border-bottom-left-radius: var(--rounded-corners);
}

.profile-tab-content {
  margin-top: 80px;
}

.tab-pane {
  margin-left: 140px;
  margin-right: 140px;
}

.profile-form-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
}

.profile-form-label.mb-0 {
  margin-bottom: 0;
}

.profile-form-input {
  width: 250px;
  border: 1px solid var(--gray);
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  margin-bottom: 20px;
  margin-right: 20px;
  font-size: 12px;
  line-height: 1.4;
}

.profile-form-input:focus {
  border-color: var(--green);
}

.button-secondary {
  border-radius: var(--rounded-corners);
  background-color: var(--gray);
  color: var(--black);
}

.flex-horizontal-profile {
  width: 100%;
  display: flex;
}

.flex-horizontal-profile-buttons {
  width: 100%;
  grid-column-gap: 30px;
  display: flex;
}

.checkbox-field-profile {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.checkbox-field-profile.mr-20 {
  margin-right: 20px;
}

.tooltip-background {
  border: 1px solid var(--green);
  background-color: var(--black);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tooltip-background.arrow-2 {
  z-index: 1;
  width: 18px;
  height: 18px;
  border-style: none;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 1px;
  transform: rotate(45deg);
}

.tooltip-background.main {
  z-index: 1;
  border-radius: 2px;
  margin-left: 9px;
}

.tooltip-background.arrow {
  width: 18px;
  height: 18px;
  background-image: linear-gradient(45deg, #000, #060606 50%, rgba(46, 52, 209, .2));
  margin-top: auto;
  margin-bottom: auto;
  transform: rotate(45deg);
}

.tooltip-background-container {
  width: 260px;
  height: 60px;
  margin-bottom: 6px;
  margin-left: 6px;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.tooltip-text {
  z-index: 2;
  color: var(--text);
  align-items: center;
  margin: 5px 5px 5px 15px;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.label-with-tooltip {
  width: 100%;
  flex-direction: row;
  display: flex;
  position: relative;
}

.tooltip-container-absolute {
  position: absolute;
}

.svg-icon-container {
  width: 18px;
  height: 16px;
  margin-top: 2px;
  margin-bottom: 6px;
  margin-left: 6px;
  padding-left: 1px;
  padding-right: 1px;
}

.tooltip-container-relative {
  align-items: center;
  display: none;
  position: relative;
}

.svg-icon-embed-question {
  width: 16px;
  height: 16px;
  color: #848584;
  position: absolute;
}

.svg-icon-embed-question:hover {
  color: #4ed01a;
}

.subtext {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.subtext.text-500 {
  font-weight: 500;
}

.score-block {
    width: 100%;
    max-width: 460px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.session-info-block {
  width: 100%;
  max-width: 460px;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.session-info-block.sponsors {
    width: 100%;
    max-width: 460px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
}

.session-line {
  height: 1px;
  background-color: var(--gray);
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.session-line.bracket {
  margin-left: -20px;
  margin-right: -20px;
}

.session-line.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.session-heading {
  text-align: center;
  white-space: nowrap;
  margin-bottom: 5px;
}

.session-text {
  color: var(--green);
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.session-info-item {
  justify-content: space-between;
  margin-bottom: 5px;
  display: flex;
}

.text-500 {
  white-space: nowrap;
  font-weight: 500;
}

.text-500.wrap {
  text-align: center;
  white-space: normal;
}

.text-500.wrap.large {
  font-size: 22px;
  line-height: 1.4;
}

.text-500.large {
  font-size: 18px;
}

.text-300 {
  white-space: nowrap;
  font-weight: 300;
}

.text-300.wrap {
  text-align: center;
  white-space: normal;
}

.sponsor-logo-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sponsor-logo-image {
  max-height: 90px;
  display: inline-block;
}

.sponsor-logo-image-emerald {
    max-height: 120px;
    display: inline-block;
}

.sponsor-logo-image-diamond {
    max-height: 75px;
    display: inline-block;
}

.sponsor-logo-image-gold {
    max-height: 45px;
    display: inline-block;
}

.sponsor-logo-image-silver {
    max-height: 30px;
    display: inline-block;
}

.sponsor-logo-image-bronze {
    max-height: 15px;
    display: inline-block;
}

.bracket-container {
  box-shadow: 8px 8px 14px 0 var(--black-4);
  margin-top: 0;
  margin-bottom: 60px;
}

.session-title {
  z-index: 2;
  text-align: center;
  text-transform: none;
  margin-bottom: 60px;
  display: none;
}

.bracket-heading {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.temp-2 {
  margin-left: auto;
  margin-right: auto;
}

.alert {
  border-radius: var(--rounded-corners);
  background-color: var(--gray);
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  padding-bottom: 10px;
  display: inline-block;
}

.alert-text {
  text-align: center;
  margin: 10px;
  font-weight: 500;
}

.registration-qr-code {
  margin: 20px auto;
  display: block;
}

.flex-stream-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
  display: flex;
}

.stream-card-contents {
  width: 300px;
  height: 300px;
  grid-row-gap: 10px;
  box-shadow: 8px 8px 14px 0 var(--black-4);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
}

.faq-question {
  margin-left: 20px;
}

.faq-answer {
  margin-bottom: 15px;
  margin-left: 40px;
}

.test11 {
  box-shadow: 8px 8px 14px 0 var(--black-4);
}

.test33 {
  width: 100%;
}

.modal-heading {
  text-align: center;
  margin-bottom: 20px;
}

.modal-container {
  width: 100vw;
  height: 100vh;
  max-width: none;
  background-color: var(--black-4);
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.modal {
  width: 600px;
  max-width: 100%;
  background-color: var(--black);
  padding: 60px;
}

.modal-form-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.modal-form-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  margin-top: 20px;
  display: flex;
}

.modal-form-field {
  border: 1px solid var(--gray);
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  color: var(--text);
  font-size: 12px;
  line-height: 1.4;
}

.modal-form-field:focus {
  border-color: var(--green);
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.form-field-2 {
  max-width: 400px;
  border: 1px solid var(--gray);
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  color: var(--text);
  font-size: 12px;
  line-height: 1.4;
}

.form-field-2:focus {
  border-color: var(--green);
}

.form-dropdown {
  width: 200px;
  height: 38px;
  border: 1px solid var(--gray);
  border-radius: var(--rounded-corners);
  background-color: var(--black);
  color: var(--text);
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  font-size: 12px;
  line-height: 1.4;
}

.form-dropdown:focus {
  border-color: var(--green);
}

.dropdown-toggle-2 {
  height: 100%;
  color: var(--text);
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.form-dropdown-list {
  background-color: var(--black);
}

.form-dropdown-list-link {
  color: var(--text);
}

.mt-20 {
  margin-top: 20px;
}

.form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.section-heading-left-container {
  display: flex;
}

.session-heading-left {
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.4;
}

.session-hero-overlay {
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .65);
  position: fixed;
}

.session-hero-container {
  z-index: -1;
  width: 100vw;
  position: absolute;
  top: 60px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.session-hero-image {
  z-index: -2;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 60px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }

  .navbar-dropdown-list {
    position: relative;
  }

  .navbar-dropdown-list.active-guild.w--open {
    flex-direction: column;
    display: flex;
    position: fixed;
    left: 0%;
  }

  .button-primary.navbar-sign-in {
    margin-right: 15px;
  }

  .button-primary.hero {
    width: 170px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
  }

  .menu-button {
    margin-right: 35px;
  }

  .menu-button.w--open, .nav-menu {
    background-color: var(--black);
  }

  .hero-cta {
    margin-top: 25%;
  }

  .text-title.subtitle {
    padding-left: 120px;
    padding-right: 120px;
  }

  .spacer-xl {
    height: 160px;
  }

  .spacer-l {
    height: 100px;
  }

  .table {
    display: none;
  }

  .dropdown {
    background-color: var(--table-heading);
    box-shadow: 8px 8px 14px 0 var(--black-4);
    display: block;
    overflow: hidden;
  }

  .dropdown-toggle {
    width: 100%;
    height: 45px;
    box-shadow: 8px 8px 14px 0 var(--black-4);
    color: var(--text);
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .dropdown-icon {
    align-items: center;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
  }

  .text-center.mb-20 {
    margin-bottom: 20px;
  }

  .dropdown-list-row {
    height: 35px;
    justify-content: space-between;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .dropdown-list-row.primary {
    background-color: var(--table-row-primary);
  }

  .dropdown-list-row.secondary {
    background-color: var(--table-row-secondary);
  }

  .dropdown-text {
    align-self: center;
    font-size: 18px;
    line-height: 1.4;
  }

  .dropdown-text.left {
    margin-left: 20px;
    font-weight: 500;
  }

  .dropdown-text.right {
    margin-right: 20px;
    font-weight: 300;
  }

  .dropdown-text.title {
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
  }

  .dropdown-text.closed {
    width: 100%;
    color: var(--gray);
    text-align: center;
  }

  .dropdown-list-join {
    background-color: var(--table-row-primary);
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .dropdown-list {
    display: block;
    position: static;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  }

  .dropdown-list.w--open {
    box-shadow: 8px 8px 14px 0 var(--black-4);
  }

  .dropdown-list-2 {
    display: block;
    position: static;
  }

  .accordion-toggle {
    padding-left: 0;
  }

  .accordion-dropdown-list {
    background-color: var(--background);
  }

  .spacer-top {
    height: 120px;
  }

  .tab-pane {
    margin-left: 0;
    margin-right: 0;
  }

  .session-title {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-link-block {
    margin-left: 15px;
  }

  .navbar-link.active-guild {
    font-size: 18px;
  }

  .navbar-dropdown-list {
    position: relative;
  }

  .navbar-dropdown-list.w--open {
    width: 100vw;
    justify-content: flex-start;
    position: relative;
    left: 0;
    right: 0;
  }

  .button-primary.navbar-sign-in {
    margin-right: 0;
  }

  .button-primary.hero {
    width: 140px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .menu-button {
    margin-right: 0;
  }

  .hero-cta {
    margin-top: 40%;
  }

  .text-title {
    font-size: 42px;
  }

  .text-title.gaming {
    font-size: 52px;
  }

  .text-title.of {
    font-size: 18px;
  }

  .text-title.subtitle {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 18px;
  }

  .feature {
    flex-direction: column;
  }

  .feature-description {
    order: 3;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .feature-description.inverted {
    order: 3;
  }

  .feature-list {
    grid-column-gap: 40px;
    grid-row-gap: 4px;
    order: 4;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-self: center;
    display: grid;
  }

  .feature-list.inverted {
    order: 4;
  }

  .feature-image-container, .feature-image-container.inverted {
    order: 2;
  }

  .feature-description-info {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .feature-description-info.inverted, .feature-description-link.inverted {
    text-align: center;
  }

  .spacer-xl {
    height: 120px;
  }

  .spacer-l {
    height: 80px;
  }

  .dropdown {
    display: block;
  }

  .top-games-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .feature-description-title {
    width: 100%;
    text-align: center;
  }

  .feature-description-title.inverted {
    text-align: center;
  }

  .margins {
    margin-left: 40px;
    margin-right: 40px;
  }

  .flex-horizontal.gap-20 {
    max-width: 400px;
    grid-row-gap: 40px;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .spacer-top {
    height: 100px;
  }

  .profile-form-input {
    margin-bottom: 10px;
  }

  .flex-horizontal-profile {
    flex-direction: column;
  }

  .flex-horizontal-profile-buttons {
    margin-top: 50px;
  }

  .checkbox-field-profile {
    margin-bottom: 0;
  }

  .profile-element {
    margin-bottom: 30px;
  }

  .session-info-block.tournament-info {
    order: -1;
  }

  .session-line.bracket {
    margin-left: 20px;
    margin-right: 20px;
  }

  .bracket-heading {
    max-width: 400px;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .modal {
    width: 100%;
  }

  .modal-form-label {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 32px;
  }

  .navbar-active-guild {
    z-index: 1;
    width: 100%;
    margin-left: 0;
    position: absolute;
    top: 60px;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .navbar-active-guild-border {
    max-width: none;
  }

  .navbar-link {
    margin-left: 0;
    margin-right: auto;
    display: flex;
  }

  .navbar-link.active-guild {
    margin-left: auto;
    margin-right: 0;
    font-size: 18px;
  }

  .navbar-dropdown {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .navbar-dropdown.active-guild {
    width: auto;
  }

  .button-primary.hero {
    width: 100%;
  }

  .flex-vertical {
    flex-direction: column;
    display: flex;
  }

  .nav-menu {
    z-index: 2;
  }

  .hero-cta {
    width: 100%;
    margin-top: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .text-title {
    letter-spacing: 15px;
    margin-right: -15px;
    font-size: 58px;
  }

  .text-title.gaming {
    font-size: 62px;
  }

  .text-title.subtitle {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-line.left {
    max-width: 90px;
    margin-left: auto;
  }

  .hero-line.right {
    max-width: 90px;
    margin-right: auto;
  }

  .hero-cta-buttons {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-footer-text {
    flex-direction: column;
    align-items: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .embed-arrow-right {
    width: 18px;
    height: 18px;
  }

  .feature-list-item-text {
    font-size: 16px;
  }

  .spacer-xl {
    height: 80px;
  }

  .spacer-l {
    height: 60px;
  }

  .dropdown-toggle {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-text.left, .dropdown-text.right, .dropdown-text.title {
    font-size: 16px;
  }

  .dropdown-list-join {
    min-height: 35px;
  }

  .top-games-grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 40px;
    margin-right: 40px;
  }

  .margins {
    margin-left: 20px;
    margin-right: 20px;
  }

  .margins.vertical-center {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .account-form-div, .form-div {
    width: 100%;
  }

  .text-left.mb-10 {
    text-align: center;
  }

  .flex-horizontal.gap-5.bch-address {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .spacer-top {
    height: 160px;
  }

  .profile-tab-menu {
    margin-top: 120px;
  }

  .tabs {
    top: 120px;
  }

  .tab {
    padding-left: 20px;
    padding-right: 20px;
  }

  .profile-form-input {
    width: 100%;
  }

  .flex-horizontal-profile-buttons {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .session-title {
    font-size: 40px;
  }

  .modal-heading {
    text-align: left;
  }

  .modal-form-buttons {
    flex-direction: column;
  }
}
