@font-face {
  font-family: "impact", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "area-normal-light", sans-serif;
  font-weight: 600;
  font-style: normal;
}
/* varibles */
/* CSS Document */
/*------------------------------------*\
RESET
\*------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strike, strong, sub, sup, tt, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
section, article, aside, footer, header, hgroup, nav, .h6, .h5, .h4, .h3, .h2, .h1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html ol, html ul {
  list-style: none;
}
html blockquote, html q {
  quotes: none;
}
html blockquote:before, html blockquote:after,
html q:before, html q:after {
  content: "";
  content: none;
}
html ins {
  text-decoration: none;
}
html del {
  text-decoration: line-through;
}
html table {
  border-collapse: collapse;
  border-spacing: 0;
}
html a {
  transition: 0.2s ease-in-out;
  color: inherit;
  text-decoration: none;
}
html a:hover {
  text-decoration: none;
}
html ul {
  margin: 0;
}
html strong {
  font-weight: bold;
}
html b {
  font-weight: bold;
}
html i {
  font-style: italic;
}
html button {
  border: none;
  background: none;
}
html textarea {
  resize: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
html div::-webkit-scrollbar {
  width: 0 !important;
}
html div {
  overflow: -moz-scrollbars-none;
}
html div {
  -ms-overflow-style: none;
}
html button:focus {
  outline: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html input:focus, html input[type=checkbox]:focus {
  outline: none;
}
html textarea:focus {
  outline: none;
}
html select:focus {
  outline: none;
}

body {
  font-family: "impact", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body.no-overflow, body.no-scroll {
  overflow: hidden !important;
}
body p {
  line-height: 1.4;
}
body p b {
  font-weight: 600;
}

h2 {
  font-size: 65px;
}

h3 {
  font-size: 42px;
  line-height: 1.3;
}
h3 span {
  display: inline-block;
  color: #D80201;
  margin: 0 5px;
}

h4 {
  font-size: 34px;
  letter-spacing: 1px;
}

h5 {
  font-size: 26px;
}

p.text {
  font-family: "area-normal-light", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
}
p.text.small {
  font-size: 20px;
}
p.text.smaller {
  font-size: 15px;
}

.my_btn {
  font-family: "impact", sans-serif;
  font-weight: 400;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  line-height: 65px;
  border: 1px solid #510406;
  background: #E20101;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 2px;
}
.my_btn.dark {
  background: #510406;
}

.my_btn:hover {
  background: #fff;
  color: #333;
}

.gradient-line {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(231, 244, 244, 0) 0%, #F7F4F4 50%, rgba(247, 244, 244, 0) 100%);
}
.gradient-line.red {
  background: linear-gradient(90deg, rgba(231, 244, 244, 0) 0%, #D80201 50%, rgba(247, 244, 244, 0) 100%);
}

/* ---------------- LP HEADER -------------- */
.lp-header {
  --lp-header-height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
.lp-header .inner {
  min-height: var(--lp-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.lp-header .menu {
  display: flex;
}
.lp-header .menu ul {
  display: flex;
  gap: 28px;
}
.lp-header .menu li {
  position: relative;
  flex-grow: 0;
  border: none;
  line-height: 1.2;
  text-align: left;
  font-size: 20px;
  letter-spacing: 1px;
  color: #510406;
  text-transform: uppercase;
}
.lp-header .menu li ul {
  display: none;
  position: absolute;
  top: 35px;
  background: #fff;
  min-width: 100%;
}
.lp-header .menu li ul li {
  font-weight: 400;
  padding: 10px;
  font-size: 18px;
  min-width: 100%;
}
.lp-header .menu li ul li a {
  border: none !important;
  padding: 0;
}
.lp-header .menu li ul li:hover {
  background: #D80201;
  color: #fff;
}
.lp-header .menu li ul li:hover a {
  color: #fff;
}
.lp-header .menu li ul li a:hover {
  color: #fff;
}
.lp-header .menu li:hover ul {
  display: block;
}
.lp-header .menu li a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.lp-header .menu li a:hover {
  color: #D80201;
  border-color: #D80201;
}
.lp-header .actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero {
  background: url("../img/hero.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
}

.btn_wrapper {
  position: relative;
  z-index: 2;
}
.btn_wrapper .extra {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  text-align: center;
  width: 100%;
  transform: translate(0, calc(100% + 1px));
  background: #fff;
  color: #000;
  border-top: none;
}
.btn_wrapper .extra.lower {
  transform: translate(0, calc(200% + 1px));
}

@media (max-width: 991px) {
  .lp-header .menu {
    display: none;
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--lp-header-height));
    margin-left: 0;
    padding: 50px 24px;
    background: #fff;
    overflow-y: auto;
    z-index: 1001;
  }
  .lp-header .menu ul {
    flex-direction: column;
    gap: 18px;
  }
  .lp-header .menu ul li ul {
    display: block;
    position: relative;
    top: auto;
    padding-top: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  .lp-header .menu ul li ul li {
    font-size: 16px;
  }
  .lp-header .menu li {
    font-size: 18px;
  }
  .lp-header .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .lp-header .hamburger {
    display: none;
  }
  .lp-header .menu {
    display: flex !important;
    position: static;
    height: auto !important;
    padding: 0;
    border: none;
    box-shadow: none;
  }
}
/* ---------------- LP HEADER END -------------- */
/* ---------------- EVENT INFO -------------- */
.event-info {
  background: #510406;
}
.event-info .items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #510406;
}
.event-info .item {
  flex: 1 1 33.333%;
  text-align: center;
  padding: 28px 30px 30px;
  position: relative;
}
.event-info .item h2 {
  color: #fff;
}
.event-info .item h4 {
  color: #D80201;
}
.event-info .item:nth-of-type(2) {
  background: #510406;
  background: linear-gradient(180deg, rgb(81, 4, 6) 0%, rgb(231, 62, 63) 100%);
}
.event-info .item:nth-of-type(2) .tiny_paddle {
  position: absolute;
  right: 7%;
  top: 15%;
  max-width: 10%;
}
.event-info .item.center::before, .event-info .item.center::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(247, 244, 244, 0) 0%, #F7F4F4 50%, rgba(247, 244, 244, 0) 100%);
}
.event-info .item.center::before {
  left: 0;
}
.event-info .item.center::after {
  right: 0;
}

@media (max-width: 991px) {
  .event-info .items {
    flex-direction: column;
  }
  .event-info .item {
    padding: 22px 12px;
  }
  .event-info .item.center::before,
  .event-info .item.center::after {
    display: none;
  }
}
/* ---------------- EVENT INFO END -------------- */
/* ----------------JOIN US -------------- */
.join-us {
  text-align: center;
  background: #510406;
  background: linear-gradient(180deg, rgb(81, 4, 6) 0%, #D80201 100%);
  text-transform: uppercase;
}
.join-us h2 {
  color: #D80201;
}
.join-us h3 {
  color: #fff;
}
.join-us .gradient-line {
  margin: 100px 0;
}

/* ----------------JOIN US END -------------- */
/* ---------------- CATERING -------------- */
.catering {
  background: #F7F1F1;
}
.catering .event-info {
  background: none;
}
.catering .items {
  background: none;
}
.catering .item:nth-of-type(2) {
  background: none;
}
.catering .item.center::before, .catering .item.center::after {
  background: linear-gradient(180deg, rgba(247, 244, 244, 0) 0%, #D80201 50%, rgba(247, 244, 244, 0) 100%);
}

/* ---------------- CATERING END -------------- */
.sponsors h4 {
  color: #D80201;
}
.sponsors .gradient-line {
  background: linear-gradient(90deg, rgba(231, 244, 244, 0) 0%, #D80201 50%, rgba(247, 244, 244, 0) 100%);
}

.quote {
  background: #510406;
  background: linear-gradient(102deg, rgb(81, 4, 6) 0%, rgb(231, 62, 63) 100%);
  color: #fff;
}
.quote p {
  font-family: "area-normal-light", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  margin: 50px 0;
}
.quote h5 {
  margin-bottom: 70px;
}

#footer {
  background: #B90102;
  background: linear-gradient(0deg, rgb(185, 1, 2) 0%, rgb(225, 1, 1) 100%);
}

@media (max-width: 1600px) {
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 28px;
  }
  .my_btn {
    padding: 0 45px;
    line-height: 60px;
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .join-us .gradient-line {
    margin: 70px 0;
  }
}
@media (max-width: 1200px) {
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 32px;
  }
  p.text {
    font-size: 22px;
  }
  p.text.small {
    font-size: 16px;
  }
  p.text.smaller {
    font-size: 12px;
  }
  .lp-header .inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .lp-header .menu li {
    font-size: 18px;
  }
  .my_btn {
    padding: 0 40px;
    line-height: 55px;
    font-size: 20px;
  }
  .quote p {
    font-size: 20px;
    margin: 40px 0;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 26px;
  }
  p.text {
    font-size: 18px;
  }
  .my_btn {
    padding: 0 35px;
    line-height: 46px;
    font-size: 18px;
  }
  .event-info .item:nth-of-type(2) {
    background: transparent;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .quote h5 {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  html, body {
    width: 100vw;
    overflow-x: hidden;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 24px;
  }
  .container {
    max-width: 100%;
  }
  .join-us h2 {
    margin-bottom: 5px;
  }
  .join-us .gradient-line {
    margin: 50px 0;
  }
  .quote p {
    font-size: 16px;
  }
}