@font-face {
  font-family: manrope_light;
  src: url(../fonts/Manrope-Light.ttf) format("truetype");
}
@font-face {
  font-family: manrope_regular;
  src: url(../fonts/Manrope-Regular.ttf) format("truetype");
}
@font-face {
  font-family: manrope_semi_bold;
  src: url(../fonts/Manrope-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: manrope_bold;
  src: url(../fonts/Manrope-Bold.ttf) format("truetype");
}
@font-face {
  font-family: manrope_extra_bold;
  src: url(../fonts/Manrope-ExtraBold.ttf) format("truetype");
}
html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1843137255);
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background-color: #232325;
  transition: 1s;
  opacity: 0;
}
body p {
  margin: 0;
}
body .aligner {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .justifier {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
body .h1 {
  font-family: "manrope_extra_bold", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 140%;
  font-style: normal;
}
body .h2 {
  font-family: "manrope_bold", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  font-style: normal;
}
body .h4 {
  font-family: "manrope_semi_bold", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  font-style: normal;
}
body .h5 {
  font-family: "manrope_semi_bold", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  font-style: normal;
}
body .p1 {
  font-family: "manrope_regular", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  font-style: normal;
}
body .p2 {
  font-family: "manrope_light", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  font-style: normal;
}
body .p3 {
  font-family: "manrope_light", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 160%;
  font-style: normal;
}
body .p4 {
  font-family: "manrope_light", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 160%;
  font-style: normal;
}
body .sc-1 {
  font-family: "manrope_extra_bold", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 160%;
  font-style: normal;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}
body .bt-t {
  font-family: "manrope_bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  font-style: normal;
  letter-spacing: -0.28px;
}
body .btn-neon-bg {
  display: flex;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #CBFB45;
  color: #171718;
  border: none;
  border-radius: 10px;
  transition: 0.4s;
}
body .btn-neon-bg .bt-t {
  margin: 0;
}
body .btn-neon-bg:hover {
  background-color: #95b930;
  scale: 1.03;
}
body .btn-neon-bd {
  display: flex;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #CBFB45;
  border: 1px solid #CBFB45;
  border-radius: 10px;
  transition: 0.4s;
}
body .btn-neon-bd .bt-t {
  margin: 0;
}
body .btn-neon-bd:hover {
  background: rgba(255, 255, 255, 0.26);
  scale: 1.03;
}
body .btn-black-bg {
  display: flex;
  width: 100%;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #232325;
  color: #CBFB45;
  border-radius: 10px;
  transition: 0.4s;
}
body .btn-black-bg .bt-t {
  margin: 0;
}
body .btn-black-bg:hover {
  background: #2d2d31;
  scale: 1.03;
}
body .tag-button {
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}
body .tag-button .p4 {
  font-family: "manrope_semi_bold", sans-serif;
  font-weight: 600;
  transition: 0.4s;
}
body .tag-button:hover {
  background-color: #CBFB45;
  cursor: pointer;
}
body .tag-button:hover .p4 {
  color: #171718;
}
body .form-card {
  width: 100%;
  padding: 30px 30px;
  background-color: #3A393E;
  border-radius: 18px;
}
body .form-card .h3 {
  line-height: 160%;
}
body .form-card .form-group {
  margin-top: 4vh;
}
body .form-card .form-group .form-control {
  margin-top: 6px;
  border-radius: 6px;
  border: solid 1px rgba(248, 246, 240, 0.2549019608);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  color: #F8F6F0;
  font-family: "manrope_light", sans-serif;
}
body .form-card .form-group input::-moz-placeholder {
  color: #F8F6F0;
  opacity: 0.2;
}
body .form-card .form-group input::placeholder {
  color: #F8F6F0;
  opacity: 0.2;
}
body .form-card .form-group input:focus {
  border: solid 1px #F8F6F0;
  box-shadow: none;
}
body .form-card .btn-neon-bg {
  margin-top: 5vh;
  text-decoration: none;
}
body .event-card {
  width: 100%;
  color: #F8F6F0;
  background-color: #3A393E;
  border-radius: 18px;
}
body .event-card .display-group {
  position: relative;
  text-align: left;
}
body .event-card .display-group .img-fluid {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 18px 18px 0 0;
}
body .event-card .display-group .p3.paid {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "manrope_semi_bold", sans-serif;
  padding: 6px 14px;
  border-radius: 6px;
  border: solid 1px #F8F6F0;
  background: rgba(255, 255, 255, 0.705);
  color: #171718;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
body .event-card .display-group .p3.free {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "manrope_semi_bold", sans-serif;
  padding: 6px 14px;
  border-radius: 6px;
  background: #CBFB45;
  color: #171718;
}
body .event-card .text-group {
  padding: 20px 20px 20px;
  display: inline-flex;
  height: 190px;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  flex-shrink: 0;
}
body .event-card .text-group .h5 {
  line-height: 160%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
body .event-card .text-group .detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
}
body .detail-card {
  background-color: #F8F6F0;
  color: #171718;
  border-radius: 18px;
}
body .detail-card img {
  border-radius: 18px 18px 0 0;
  height: 240px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .detail-card .text-content {
  margin: 0 !important;
  padding: 20px;
  text-align: center;
}
body .detail-card .text-content .p3 {
  margin-top: 2vh;
}
body .detail-card .text-content .btn-black-bg {
  margin-top: 3vh;
}
body .title-block {
  text-align: center;
  padding: 10px 0;
}
body .single-block {
  width: 100%;
}
body .single-block .btn-neon-bd {
  display: block;
  margin: 0 auto;
}
body a.link-wrap {
  text-decoration: none;
}
body .link-icon {
  display: flex;
  align-items: center;
  gap: 11px;
}
body .neon-text {
  color: #CBFB45;
}
body nav.navbar {
  padding: 0 100px;
  height: 10vh;
  border-bottom: 2px solid rgba(255, 255, 255, 0.068);
  background: rgba(255, 255, 255, 0.01);
  z-index: 1;
  opacity: 0;
  transition: 1.2s;
  transition-timing-function: ease-out;
  transform: translateY(-10vh);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
body nav.navbar img {
  height: 42px;
}
body nav.navbar a.navbar-brand {
  width: auto;
}
body nav.navbar .navbar-toggler {
  border: none;
}
body nav.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(225, 225, 225, 0.8)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
body nav.navbar a.nav-link {
  margin-left: 40px;
  font-family: "manrope_regular", sans-serif;
  font-size: 14px;
  color: #F8F6F0 !important;
  transition: 0.3s;
  font-weight: 500;
}
body nav.navbar a.nav-link.btn-neon-bd {
  padding: 10px 20px;
  color: #CBFB45 !important;
  border: solid 1px #CBFB45;
  border-radius: 10px;
  transition: 0.4s;
}
body nav.navbar a.nav-link.btn-neon-bd:hover {
  background-color: #CBFB45;
  color: #171718 !important;
}
body nav.navbar ul.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
body nav.navbar ul.navbar-nav .btn-green-bg {
  padding: 10px 20px;
}
body nav.navbar a.nav-link:hover {
  color: #CBFB45 !important;
}
body .hero-section {
  height: 100vh;
}
body .hero-section .bg-image {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .hero-section .content {
  opacity: 0;
  transition: 0.7s;
  background-color: rgba(23, 23, 24, 0.8078431373);
  margin-top: -100vh;
  height: 100vh;
  color: #F8F6F0;
}
body .hero-section .content .text-content {
  margin-top: 5vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
body .hero-section .content .text-content .information-list {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
body .hero-section .content .text-content .p1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
body .hero-section .content .button-wrapper {
  margin-top: 5vh;
}
body .hero-section .content .button-wrapper .btn-neon-bg {
  display: block;
  margin: 0 auto;
}
body .hero-event {
  height: 100vh;
}
body .hero-event .bg-image {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .hero-event .content {
  padding-top: 8vh;
  opacity: 0;
  transition: 0.7s;
  background-color: rgba(23, 23, 24, 0.8078431373);
  margin-top: -100vh;
  height: 100vh;
  color: #F8F6F0;
}
body .hero-event .content .main-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}
body .hero-event .content .main-content .p1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
body .hero-event .content .button-wrapper {
  margin-top: 5vh;
}
body .hero-event .content .button-wrapper .btn-neon-bg {
  display: block;
  margin: 0 auto;
}
body .hero-event .content .detail-card {
  margin: 0 2vw;
}
body .hero-catalog {
  color: #F8F6F0;
  height: 100vh;
}
body .hero-catalog .text-section {
  margin-top: 5vh;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5vh;
  opacity: 0;
  transition: 0.7s;
  transform: translateY(5vh);
  transition-delay: 0.7s;
}
body .hero-catalog .text-section .link-group {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 3vh;
}
body .hero-catalog .text-section .link-group .link-icon {
  color: #F8F6F0;
  transition: 0.4s;
}
body .hero-catalog .text-section .link-group .link-icon:hover {
  scale: 1.05;
}
body .hero-catalog .text-section[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
}
body .hero-catalog .form-card {
  margin-top: 10vh;
  opacity: 0;
  transition: 0.7s;
  transform: translateY(5vh);
  transition-delay: 1.1s;
}
body .hero-catalog .form-card[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
}
body .event-section {
  padding: 10vh 0 15vh;
  color: #F8F6F0;
}
body .event-section .title-block {
  margin-bottom: 5vh;
  opacity: 0;
  transform: translateY(5vh);
  transition: 0.7s;
}
body .event-section .title-block[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .event-section .link-wrap {
  transition: 0.7s;
  opacity: 0;
}
body .event-section .link-wrap[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .event-section .event-card {
  transition: 0.4s;
}
body .event-section .event-card:hover {
  scale: 1.02;
}
body .event-section .single-block {
  margin-top: 8vh;
  opacity: 0;
  transform: translateY(5vh);
  transition: 0.7s;
}
body .event-section .single-block[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .event-detail {
  color: #F8F6F0;
  padding: 10vh 0 15vh;
}
body .event-detail .right {
  padding: 0 2vw;
}
body .event-detail .h4 {
  font-family: "manrope_bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
body .event-detail .p3 {
  opacity: 0.7;
  margin-top: 10px;
}
body .event-detail .date-time {
  margin-top: 10vh;
}
body .event-detail .date-time ul {
  margin-left: -10px;
}
body .event-detail .join {
  margin-top: 10vh;
}
body .event-detail .join .p3 {
  width: 40%;
}
body .event-detail .join .link-wrap:hover {
  border-bottom: solid 0.5px #CBFB45;
}
body .event-detail .join .button-wrapper {
  margin-top: 4vh;
}
body .event-detail .location .img-fluid {
  margin-top: 10px;
  border-radius: 15px;
  height: 220px;
}
body .event-detail .location .h5 {
  margin-top: 30px;
}
body .event-detail .tag {
  margin-top: 10vh;
}
body .event-detail .tag .tag-group {
  margin-top: 10px;
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
body .event-detail .share {
  margin-top: 10vh;
}
body .event-detail .share .icon-group {
  margin-top: 10px;
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
body .event-detail .share .icon-group svg {
  transition: 0.4s;
}
body .event-detail .share .icon-group svg:hover {
  transform: scale(1.1);
}
body .two-col-offer {
  background-color: #171718;
  color: #F8F6F0;
}
body .two-col-offer img.img-fluid {
  padding-right: 70px;
  opacity: 0;
  transform: translateX(-5vh);
  transition: 0.7s;
}
body .two-col-offer img.img-fluid[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .two-col-offer .text-content {
  opacity: 0;
  transform: translateY(5vh);
  transition: 0.7s;
  padding: 5vh 0;
}
body .two-col-offer .text-content .p2 {
  margin: 45px 0 50px 0;
  opacity: 0.7;
}
body .two-col-offer .text-content[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .two-col-flip {
  padding: 15vh 0;
}
body .two-col-flip .text-content {
  color: #F8F6F0;
  padding: 4vh 4vh 4vh 0;
  opacity: 0;
  transform: translateY(5vh);
  transition: 0.7s;
}
body .two-col-flip .text-content .p2 {
  margin-top: 4vh;
  opacity: 0.7;
}
body .two-col-flip .text-content .button-wrapper {
  margin-top: 5vh;
}
body .two-col-flip .text-content[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body .two-col-flip img {
  height: 50vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transform: translateY(5vh);
  transition: 0.7s;
}
body .two-col-flip img[data-scroll=in] {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.3s;
}
body footer {
  background-color: #171718;
  color: #F8F6F0;
  padding: 4vh;
}
body footer .footer-stripe {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body footer .footer-stripe .link-wrap {
  color: #F8F6F0;
  transition: 0.4s;
}
body footer .footer-stripe .link-wrap:hover {
  color: #CBFB45;
  text-decoration: underline;
}

@media (max-width: 767px) {
  body .h1 {
    font-size: 30px;
  }
  body .h2 {
    font-size: 24px;
  }
  body .h4 {
    font-size: 18px;
  }
  body .h5 {
    font-size: 16px;
  }
  body .p1 {
    font-size: 16px;
  }
  body .p2 {
    font-size: 14px;
  }
  body .p3 {
    font-size: 12px;
  }
  body .p4 {
    font-size: 10px;
  }
  body .sc-1 {
    font-size: 12px;
  }
  body .bt-t {
    font-size: 12px;
  }
  body .form-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
  body .form-card .h3 {
    line-height: 160%;
  }
  body .form-card .form-group {
    margin-top: 3vh;
  }
  body .form-card .form-group .form-control {
    margin-top: 6px;
    border-radius: 6px;
    padding: 10px 12px;
  }
  body nav.navbar {
    padding: 10px 0;
    height: auto;
    width: 100vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(17px);
            backdrop-filter: blur(17px);
    background-color: rgba(0, 0, 0, 0.1215686275);
  }
  body nav.navbar img {
    height: 32px;
  }
  body nav.navbar .nav.navbar-nav {
    margin: 2vh 0;
  }
  body nav.navbar ul.navbar-nav {
    display: flex;
    justify-content: start;
    align-items: start;
  }
  body nav.navbar a.nav-link {
    margin-left: 15px;
    padding: 3vh 0;
  }
  body .hero-section {
    height: 100vh;
  }
  body .hero-section .content .text-content {
    margin-top: 5vh;
    gap: 30px;
  }
  body .hero-section .content .text-content .information-list {
    display: flex;
    align-items: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0px;
  }
  body .hero-section .content .text-content .information-list .h4 {
    padding: 15px 30px;
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
  body .hero-section .content .text-content .information-list .sparator {
    display: none;
  }
  body .hero-section .content .text-content .information-list .mid-content {
    border-top: solid 1px rgba(255, 255, 255, 0.3098039216);
    border-bottom: solid 1px rgba(255, 255, 255, 0.3098039216);
  }
  body .hero-section .content .button-wrapper {
    margin-top: 5vh;
  }
  body .hero-section .content .button-wrapper .btn-neon-bg {
    display: block;
    margin: 0 auto;
  }
  body .hero-catalog {
    height: auto;
  }
  body .hero-catalog .text-section {
    margin-top: 20vh;
  }
  body .hero-catalog .form-card {
    margin-top: 0;
    margin-bottom: 10vh;
  }
  body .hero-event {
    height: auto;
  }
  body .hero-event .bg-image {
    height: 100vh;
    width: 100vw;
  }
  body .hero-event .content {
    padding-top: 20vh;
    background-color: rgba(35, 35, 37, 0.8470588235);
    height: auto;
    color: #F8F6F0;
  }
  body .hero-event .content .main-content {
    gap: 16px;
  }
  body .hero-event .content .button-wrapper {
    margin-top: 4vh;
  }
  body .hero-event .content .detail-card {
    margin: 10vh 0 0 0;
  }
  body .event-detail {
    padding: 10vh 0 15vh;
  }
  body .event-detail .right {
    padding: 0 0;
    margin-top: 8vh;
  }
  body .event-detail .h4 {
    font-size: 20px;
  }
  body .event-detail .p3 {
    opacity: 0.7;
    margin-top: 20px;
    font-size: 14px;
  }
  body .event-detail .date-time {
    margin-top: 8vh;
  }
  body .event-detail .join {
    margin-top: 8vh;
  }
  body .event-detail .join .p3 {
    width: 100%;
  }
  body .event-detail .join .button-wrapper {
    margin-top: 4vh;
  }
  body .event-detail .location .img-fluid {
    margin-top: 10px;
    border-radius: 15px;
    height: 220px;
  }
  body .event-detail .location .h5 {
    margin-top: 30px;
  }
  body .event-detail .tag {
    margin-top: 8vh;
  }
  body .event-detail .tag .tag-group {
    margin-top: 10px;
  }
  body .event-detail .share {
    margin-top: 8vh;
  }
  body .event-detail .share .icon-group {
    margin-top: 20px;
  }
  body .two-col-offer {
    padding: 10vh 0;
    background: linear-gradient(0deg, rgba(35, 34, 31, 0.9) 0%, rgba(35, 34, 31, 0.9) 100%), url(../images/webp/need-our-products.webp), lightgray 50%/cover no-repeat;
    color: #F8F6F0;
  }
  body .two-col-offer img.img-fluid {
    display: none;
  }
  body .two-col-offer .text-content .p2 {
    margin: 30px 0 50px 0;
    opacity: 0.7;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body .h1 {
    font-size: 30px;
  }
  body .h2 {
    font-size: 24px;
  }
  body .h4 {
    font-size: 18px;
  }
  body .h5 {
    font-size: 16px;
  }
  body .p1 {
    font-size: 16px;
  }
  body .p2 {
    font-size: 14px;
  }
  body .p3 {
    font-size: 12px;
  }
  body .p4 {
    font-size: 10px;
  }
  body .sc-1 {
    font-size: 12px;
  }
  body .bt-t {
    font-size: 12px;
  }
  body .form-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
  body .form-card .h3 {
    line-height: 160%;
  }
  body .form-card .form-group {
    margin-top: 2vh;
  }
  body .form-card .form-group .form-control {
    margin-top: 6px;
    border-radius: 6px;
    padding: 10px 12px;
  }
  body .form-card .btn-neon-bg {
    margin-top: 3vh;
  }
  body nav.navbar {
    padding: 15px 40px;
    height: auto;
    width: 100vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(17px);
            backdrop-filter: blur(17px);
    background-color: rgba(0, 0, 0, 0.1215686275);
  }
  body nav.navbar img {
    height: 32px;
  }
  body nav.navbar .nav.navbar-nav {
    margin: 2vh 0;
  }
  body nav.navbar ul.navbar-nav {
    display: flex;
    justify-content: start;
    align-items: start;
  }
  body nav.navbar a.nav-link {
    margin-left: 15px;
    padding: 3vh 0;
  }
  body .hero-event {
    height: 100vh;
  }
  body .hero-event .content {
    padding-top: 8vh;
    background-color: rgba(23, 23, 24, 0.8078431373);
  }
  body .hero-event .content .main-content {
    gap: 20px;
  }
  body .hero-event .content .detail-card {
    margin: 0;
  }
  body .event-section {
    padding: 6vh 0 10vh;
  }
  body .event-detail {
    color: #F8F6F0;
    padding: 8vh 0 12vh;
  }
  body .event-detail .right {
    padding: 0;
  }
  body .event-detail .h4 {
    font-family: "manrope_bold", sans-serif;
    font-weight: 700;
    font-size: 24px;
  }
  body .event-detail .p3 {
    opacity: 0.7;
    margin-top: 10px;
  }
  body .event-detail .date-time {
    margin-top: 8vh;
  }
  body .event-detail .join {
    margin-top: 8vh;
  }
  body .event-detail .join .p3 {
    width: 60%;
  }
  body .event-detail .location .img-fluid {
    margin-top: 10px;
    border-radius: 15px;
    height: 120px;
  }
  body .event-detail .location .h5 {
    margin-top: 30px;
  }
  body .event-detail .tag {
    margin-top: 8vh;
  }
  body .event-detail .tag .tag-group {
    margin-top: 10px;
  }
  body .event-detail .share {
    margin-top: 8vh;
  }
  body .event-detail .share .icon-group {
    margin-top: 10px;
    gap: 14px;
  }
  body .event-detail .share .icon-group svg {
    transition: 0.4s;
    width: 30px;
  }
  body .two-col-offer {
    background-color: #171718;
    color: #F8F6F0;
  }
  body .two-col-flip {
    padding: 10vh 0;
  }
}