:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --text-color: #1e1e1e;
  --red-color: #c33531;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin: 4rem;
}

html {
  font-size: 16px;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  max-width: 1480px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1359px) {
  .container {
    max-width: 1200px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flex-box {
  display: flex;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

p {
  margin-bottom: 0.5rem;
}
p:last-child {
  margin: 0;
}

.common-spacing {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .common-spacing {
    padding: 2rem 0;
  }
}

.heading {
  font-size: 2.625rem;
  color: var(--red-color);
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .heading {
    font-size: 1.5rem;
  }
}

.line {
  position: relative;
  height: 0.3125rem;
}
.line:before, .line:after {
  content: "";
  width: 50%;
  height: 0.3125rem;
  background: var(--red-color);
  position: absolute;
  left: 0;
  top: 0;
}
.line:after {
  width: 80%;
  height: 0.0625rem;
  background: var(--text-color);
  top: 0.125rem;
  z-index: -1;
}
.line.ryt:before {
  left: auto;
  right: 0;
}
.line.ryt:after {
  left: auto;
  right: 0;
}

.headersec {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.headersec__manuitem {
  font-size: 1.125rem;
  color: var(--text-color);
  padding: 0.75rem;
}
.headersec__manuitem:last-child {
  position: relative;
  padding: 0.75rem 1.125rem 0.75rem 0.75rem;
}
.headersec__manuitem:last-child:before {
  content: ">";
  font-size: 1.25rem;
  color: var(--red-color);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
  transition: all linear 0.2s;
}
.headersec__manuitem:last-child:hover:before {
  transform: rotate(-90deg);
  right: 0.25rem;
}
.headersec__manuitem:last-child:hover .headersec__dropdown {
  display: flex;
  opacity: 1;
}
.headersec__dropdown {
  flex-direction: column;
  padding: 0.5rem;
  background: var(--red-color);
  position: absolute;
  left: 0;
  top: 2.8rem;
  opacity: 0;
  display: none;
  width: 100%;
}
.headersec__dropdown a {
  color: var(--color-white) !important;
  padding: 0.5rem;
  border-bottom: 0.0625rem solid var(--color-white);
}
.headersec__dropdown a:last-child {
  border: 0;
}
.headersec__dropdown a:hover {
  background: var(--color-white);
  color: var(--red-color) !important;
}
.headersec__rightmenu {
  gap: 0 40px;
}
.headersec__navsec {
  padding: 2rem 0;
}
.headersec a {
  text-decoration: none;
  color: var(--text-color);
}
.headersec__toggle-btn {
  display: none;
}
@media only screen and (max-width: 1359px) {
  .headersec__manuitem {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .headersec__navsec {
    padding: 1rem 0;
  }
  .headersec__manulist {
    order: 3;
    flex-direction: column;
  }
  .headersec a {
    color: var(--color-white);
  }
  .headersec__manuitem {
    color: var(--color-white);
    padding: 1rem 0.75rem;
    border-bottom: 0.0625rem solid var(--color-white);
  }
  .headersec__manuitem:last-child:before {
    color: var(--color-white);
    right: 0.5rem;
  }
  .headersec__manuitem:hover {
    background: var(--color-white);
  }
  .headersec__manuitem:hover a {
    color: var(--red-color);
  }
  .headersec__toggle-btn {
    display: flex;
    flex-direction: column;
    background: var(--red-color);
    padding: 0.625rem;
    width: 3rem;
    height: 3rem;
    gap: 4px;
    justify-content: center;
    border-radius: 0.25rem;
    align-items: center;
    position: relative;
  }
  .headersec__toggle-btn .line {
    display: flex;
    width: 90%;
    height: 2px;
    background: var(--color-white);
    transition: all linear 0.3s;
  }
  .headersec__toggle-btn .line:before, .headersec__toggle-btn .line:after {
    display: none;
  }
  .headersec__toggle-btn.active .line:nth-child(odd) {
    position: absolute;
    max-width: 60%;
    transform: rotate(-40deg);
  }
  .headersec__toggle-btn.active .line:nth-child(even) {
    position: absolute;
    max-width: 60%;
    transform: rotate(40deg);
  }
  .headersec__menu {
    flex-direction: column;
    position: fixed;
    right: -100%;
    top: 5.3rem;
    background: var(--red-color);
    min-width: 15rem;
    transition: all linear 0.3s;
  }
  .headersec__menu.active {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .headersec img {
    width: 100%;
    display: block;
  }
  .headersec__leftlogo {
    max-width: 8rem;
  }
  .headersec__rightmenu {
    gap: 1rem;
  }
  .headersec__menu {
    top: 5rem;
    height: 100%;
    justify-content: flex-start;
  }
}

.videobanner__bannervideo {
  width: 100%;
  height: 100%;
}
.videobanner__bannervideo video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.videobanner .desktop {
  display: block;
}
.videobanner .mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .videobanner .desktop {
    display: none;
  }
  .videobanner .mobile {
    display: block;
  }
}

.bannersec {
  overflow: hidden;
}
.bannersec__videosec {
  width: 100%;
  height: 100%;
  position: relative;
}
.bannersec__videosec:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #c33531;
  position: absolute;
  right: 0;
  top: 0;
  mix-blend-mode: color;
}
.bannersec__bannerimg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(255, 255, 255) 46%, rgba(255, 255, 255, 0) 68%);
}
.bannersec__bannerimg .container {
  width: 100%;
  height: 100%;
}
.bannersec__mainbox {
  max-height: calc(100vh - 3rem);
  height: calc(100vh - 3rem);
  overflow: hidden;
  position: relative;
}
.bannersec video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.bannersec__bannertxt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
}
.bannersec__maintitle {
  font-size: 3.375rem;
  color: var(--red-color);
  line-height: 120%;
  font-weight: 700;
}
.bannersec__dateadd {
  font-size: 1.125rem;
  color: var(--color-black);
  font-weight: 500;
  padding: 2.25rem 0;
}
.bannersec__date {
  padding-left: 2rem;
  background: url(../images/dateicon.svg) no-repeat;
  background-size: contain;
  background-position: left center;
}
.bannersec__add {
  padding-left: 2rem;
  background: url(../images/locationicon.svg) no-repeat;
  background-size: contain;
  background-position: left center;
  margin-top: 1.25rem;
}
.bannersec__desctxt {
  font-size: 1.5rem;
  color: var(--color-black);
  font-weight: 500;
  line-height: 120%;
}
.bannersec__hashtxt {
  font-size: 1.25rem;
  color: var(--red-color);
  font-weight: 600;
  margin-top: 2.25rem;
}
.bannersec__smbox {
  max-width: 35.25rem;
}
@media only screen and (max-width: 767px) {
  .bannersec__bannerimg {
    background: linear-gradient(90deg, rgb(255, 255, 255) 65%, rgba(255, 255, 255, 0) 100%);
  }
  .bannersec__logo {
    max-width: 8rem;
  }
  .bannersec__logo img {
    width: 100%;
    display: block;
  }
  .bannersec__maintitle {
    font-size: 1.5rem;
  }
  .bannersec__dateadd {
    padding: 1rem 0;
  }
  .bannersec__add {
    margin-top: 0.5rem;
  }
  .bannersec__dateadd {
    font-size: 1rem;
  }
  .bannersec__desctxt {
    font-size: 1.125rem;
  }
  .bannersec__hashtxt {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.whatinit {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.062745098);
}
.whatinit__upperbox {
  gap: 3rem;
}
.whatinit__left {
  width: 40%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.whatinit__left img {
  width: 100%;
  display: block;
}
.whatinit__right {
  width: 55%;
}
.whatinit__right .heading {
  text-align: left;
}
.whatinit__descsec {
  margin-top: 2rem;
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: 160%;
  font-weight: 300;
}
.whatinit__descsec span {
  font-weight: 500;
  color: var(--red-color);
}
@media only screen and (max-width: 1023px) {
  .whatinit__upperbox {
    flex-wrap: wrap;
  }
  .whatinit__left, .whatinit__right {
    width: 100%;
  }
  .whatinit__right .heading {
    text-align: center !important;
  }
}
@media only screen and (max-width: 767px) {
  .whatinit__upperbox {
    gap: 1rem;
  }
  .whatinit__descsec {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.whyattend {
  position: relative;
  overflow: hidden;
}
.whyattend__bgvideo {
  position: absolute;
  left: 0;
  bottom: -70%;
  z-index: -1;
  opacity: 0.4;
}
.whyattend__bgvideo:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--red-color);
  position: absolute;
  left: 0;
  bottom: 0%;
  mix-blend-mode: color;
}
.whyattend__headingwrapper {
  max-width: 58%;
  margin: 0 auto;
  text-align: center;
}
.whyattend__desc {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--color-black);
  line-height: 140%;
  font-weight: 300;
}
.whyattend__desc span {
  font-weight: 600;
  color: var(--red-color);
  margin-bottom: 0.75rem;
  display: block;
}
.whyattend__listing {
  gap: 1.875rem;
  margin-top: 2rem;
}
.whyattend__listitem {
  width: 22%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 0.125rem solid var(--red-color);
  position: relative;
}
.whyattend__listitem:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.43%, rgba(0, 0, 0, 0.648319) 85.09%, rgba(0, 0, 0, 0.74) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.whyattend__listitem img {
  width: 100%;
  display: block;
}
.whyattend__listitem:hover .whyattend__descsec {
  width: 100%;
  height: 100%;
  background: var(--red-color);
}
.whyattend__listitem:hover .whyattend__descinner {
  height: auto;
  opacity: 1;
  padding-bottom: 1.125rem;
}
.whyattend__descsec {
  padding: 1.125rem 1.125rem 0 1.125rem;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whyattend__title {
  font-size: 1.125rem;
  color: var(--color-white);
  font-weight: 500;
}
.whyattend__descinner {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 300;
  line-height: 140%;
  padding-top: 1.125rem;
  height: 0;
  opacity: 0;
  transition: all linear 0.2s;
}
@media only screen and (max-width: 1359px) {
  .whyattend__listing {
    flex-wrap: wrap;
  }
  .whyattend__listitem {
    width: 31%;
  }
  .whyattend__title {
    font-size: 1.5rem;
  }
  .whyattend__descinner {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .whyattend__headingwrapper {
    max-width: none;
  }
  .whyattend__listitem {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .whyattend__desc {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  .whyattend__listitem {
    width: 100%;
  }
  .whyattend__listing {
    margin-top: 1rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 424px) {
  .whyattend__title {
    font-size: 1.125rem;
  }
  .whyattend__descinner {
    font-size: 1rem;
  }
}

.whatforyou__forulist {
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  position: relative;
}
.whatforyou__smimg {
  position: absolute;
  inset: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}
.whatforyou__innerbox {
  width: 18.625rem;
  height: 18.625rem;
  border-radius: 50%;
  padding: 1.75rem;
  overflow: hidden;
  background: var(--color-white);
  border: 0.0625rem solid var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatforyou__innerbox img {
  width: 100%;
  display: block;
  border-radius: 50%;
}
.whatforyou__listitem {
  width: 47%;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2509803922);
  border: 0.0625rem solid var(--red-color);
}
.whatforyou__listitem img {
  width: 100%;
  display: block;
}
.whatforyou__listitem:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(253, 187, 45, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all linear 0.3s;
}
.whatforyou__listitem:hover:before {
  opacity: 1;
}
.whatforyou__listitem:hover .whatforyou__innerlist {
  height: auto;
  opacity: 1;
  padding-top: 0.5rem;
}
.whatforyou__listitem:nth-child(even) .whatforyou__innerlist {
  padding-left: 5.75rem;
}
.whatforyou__listitem:nth-child(odd) .whatforyou__innerlist {
  padding-right: 5.75rem;
}
.whatforyou__descsetail {
  padding: 1.75rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.whatforyou__title {
  font-size: 1.75rem;
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
}
.whatforyou__innerlist {
  height: 0;
  opacity: 0;
  transition: all linear 0.3s;
}
.whatforyou__item {
  font-size: 1.125rem;
  color: var(--color-white);
  font-weight: 300;
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.whatforyou__item:last-child {
  margin: 0;
}
.whatforyou__item:before {
  content: "";
  width: 0.9375rem;
  height: 0.75rem;
  background: url(../images/wytarrow.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0.35rem;
}
@media only screen and (max-width: 1360px) {
  .whatforyou__innerbox {
    width: 14rem;
    height: 14rem;
  }
  .whatforyou__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .whatforyou__listitem img {
    min-height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .whatforyou__innerbox {
    width: 11rem;
    height: 11rem;
  }
  .whatforyou__title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .whatforyou__listitem {
    width: 100%;
  }
  .whatforyou__smimg {
    display: none;
  }
  .whatforyou__listitem:nth-child(odd) .whatforyou__innerlist {
    padding: 0;
  }
  .whatforyou__listitem:nth-child(even) .whatforyou__innerlist {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .whatforyou__forulist {
    gap: 1rem;
    margin-top: 1rem;
  }
  .whatforyou__descsetail {
    padding: 1rem;
  }
  .whatforyou__item {
    font-size: 1rem;
  }
}

.track {
  background: #f6f6f6;
}
.track .tabs {
  margin-top: 3rem;
  gap: 0.625rem;
}
.track .tabs .tab {
  font-size: 1.25rem;
  line-height: 120%;
  text-align: center;
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border: 0.125rem solid var(--red-color);
  transition: all linear 0.2s;
  background: var(--red-color);
  border-radius: 3.75rem;
}
.track .tabs .tab.active {
  border-color: var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
  position: relative;
}
.track .tabs .tab.active:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.3125rem solid transparent;
  border-left: 0.3125rem solid var(--color-black);
  border-bottom: 0.3125rem solid var(--color-black);
  border-right: 0.3125rem solid transparent;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  bottom: -0.4375rem;
  right: 0;
  margin: auto;
}
.track #tabs .hide {
  display: none;
}
.track #tabs .show {
  display: block;
}
.track .tabContent {
  margin-top: 1.25rem;
}
.track .tabContent .main-title {
  display: none;
}
.track .tabContent .event-box {
  gap: 1.25rem;
  flex-wrap: wrap;
}
.track .tabContent .event-box .item {
  width: 31%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--color-white);
  border: 0.0625rem solid var(--text-color);
}
.track .tabContent .event-box .item p {
  padding: 1.25rem;
  line-height: 1.5rem;
  color: var(--text-color);
  font-weight: 300;
  font-size: 1rem;
  min-height: 9.75rem;
}
.track .tabContent .event-box .item p span {
  font-size: 1.25rem;
  color: var(--red-color);
  display: block;
  font-weight: 600;
  margin-bottom: 0.3125rem;
}
.track .tabContent .event-box .item p a {
  margin-top: 0.625rem;
  display: block;
  padding: 0.4375rem 0.625rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-white);
  background: var(--red-color);
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.track .tabContent .event-box .item .date-time {
  justify-content: space-between;
  padding: 1.25rem 1rem;
  background: #e7ebeb;
}
.track .tabContent .event-box .item .time,
.track .tabContent .event-box .item .venue {
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-color);
  background: url(../images/venue.svg) no-repeat;
  background-size: auto;
  background-position: left top;
}
.track .tabContent .event-box .item .time {
  background: url(../images/time.svg) no-repeat;
  background-size: auto;
  background-position: left top;
}
.track__redboctext {
  font-size: 1.75rem;
  padding: 2rem;
  max-width: 70%;
  border-radius: 5rem;
  background: var(--red-color);
  text-align: center;
  color: var(--color-white);
  margin: 3rem auto;
}
.track__tracklisting {
  gap: 2rem;
  flex-wrap: wrap;
}
.track__listitem {
  width: 21%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 0.125rem solid var(--red-color);
  padding: 1.5rem 1rem;
}
.track__smtitle {
  font-size: 1.125rem;
  color: var(--color-black);
  margin: 0.75rem 0;
  font-weight: 500;
}
.track__smdesc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-color);
}
@media only screen and (max-width: 1199px) {
  .track .tabContent .event-box .item {
    width: 48%;
  }
}
@media only screen and (max-width: 1023px) {
  .track__redboctext {
    max-width: none;
  }
  .track__listitem {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .track .tabs {
    margin-top: 1rem;
  }
  .track .tabs .tab {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
  .track .tabContent .event-box {
    gap: 1rem;
  }
  .track .tabContent .event-box .item {
    width: 100%;
  }
  .track .tabContent .event-box .item p {
    min-height: auto;
  }
  .track .tabContent .event-box .item p span {
    font-size: 1rem;
  }
  .track__redboctext {
    font-size: 1.125rem;
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .track__tracklisting {
    gap: 1rem;
  }
  .track__listitem {
    width: 100%;
  }
}

.embark {
  background: linear-gradient(90deg, #370b09 0%, #9d1f1a 100%);
  position: relative;
  overflow: hidden;
}
.embark:before {
  content: "";
  width: 15.0625rem;
  height: 31.125rem;
  background: url(../images/embarkrytimg.svg) no-repeat;
  position: absolute;
  right: 0;
  top: -12%;
}
.embark__txtbox {
  font-size: 2rem;
  color: var(--color-white);
  line-height: 140%;
  font-weight: 300;
  text-align: center;
  max-width: 85%;
  margin: auto;
}
.embark__txtbox span {
  font-weight: 600;
  display: block;
}
@media only screen and (max-width: 767px) {
  .embark:before {
    display: none;
  }
  .embark__txtbox {
    max-width: none;
  }
  .embark__txtbox {
    font-size: 1.25rem;
  }
}

.bookticket {
  position: relative;
  overflow: hidden;
}
.bookticket:before {
  content: "";
  width: 15.4375rem;
  height: 30.1875rem;
  background: url(../images/bookticketrytimg.svg) no-repeat;
  position: absolute;
  right: 0;
  top: -14%;
}
.bookticket__bookbtnsec {
  text-align: center;
}
.bookticket__bookbtn {
  text-align: center;
  padding: 0.875rem 1.25rem;
  border-radius: 3.5rem;
  overflow: hidden;
  text-align: center;
  font-size: 2rem;
  color: var(--color-white);
  font-weight: 500;
  text-decoration: none;
  background: #9d1f1a;
}
.bookticket__ticketbox {
  margin-top: 4rem;
  gap: 2rem;
  flex-direction: column;
}
.bookticket__pricedata {
  flex-direction: column;
  max-width: 86%;
  margin-left: auto;
}
.bookticket__ticketsmbox {
  background: url(../images/ticketbg.png) no-repeat;
  background-size: cover;
  background-position: left;
  font-size: 2rem;
  color: var(--color-white);
  font-weight: 400;
  line-height: 140%;
  position: relative;
  padding: 1.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.bookticket__ticketsmbox a {
  text-decoration: none;
  color: inherit;
}
.bookticket__ticketsmbox:nth-of-type(2) .bookticket__titleflip {
  left: -1.5%;
  top: 43%;
}
.bookticket__ticketsmbox:last-child .bookticket__smtitle,
.bookticket__ticketsmbox:last-child .bookticket__title,
.bookticket__ticketsmbox:last-child .bookticket__price {
  width: 50%;
}
.bookticket__ticketsmbox:last-child .bookticket__price {
  border-left: 0.0625rem solid var(--color-white);
}
.bookticket__smtitle {
  font-size: 1.375rem;
  color: var(--color-white);
  line-height: 140%;
  font-weight: 400;
}
.bookticket__titleflip {
  position: absolute;
  left: 1%;
  top: 40%;
  transform: rotate(-90deg);
}
.bookticket__smtitle, .bookticket__title, .bookticket__price {
  width: 33%;
  padding: 0.5rem;
}
.bookticket__smtitle, .bookticket__price {
  text-align: center;
}
.bookticket__price {
  border-width: 0 0.0625rem 0 0.0625rem;
  border-style: solid;
  border-color: var(--color-white);
}
.bookticket__price:last-child {
  border: 0;
}
.bookticket__regularprice {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-white);
}
.bookticket__tracks {
  margin-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-white);
}
@media only screen and (max-width: 1199px) {
  .bookticket__pricedata {
    width: 80%;
  }
}
@media only screen and (max-width: 1023px) {
  .bookticket__ticketsmbox {
    background-position: center;
  }
  .bookticket__titleflip {
    position: initial;
    transform: none;
    text-align: center;
    border-bottom: 0.0625rem solid var(--color-white);
  }
  .bookticket__pricedata {
    max-width: none;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .bookticket:before {
    display: none;
  }
  .bookticket__bookbtn {
    display: flex;
    justify-content: center;
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
  }
  .bookticket__ticketbox {
    margin-top: 1rem;
  }
  .bookticket__ticketsmbox {
    font-size: 1rem;
  }
  .bookticket__titleflip {
    font-size: 1.25rem;
    padding-bottom: 0.25rem;
  }
  .bookticket__smtitle {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 424px) {
  .bookticket__ticketsmbox {
    padding: 0.25rem;
  }
  .bookticket__ticketsmbox {
    font-size: 0.75rem;
  }
  .bookticket__smtitle {
    font-size: 0.75rem;
  }
}

.speaker {
  position: relative;
  overflow: hidden;
}
.speaker:before {
  content: "";
  width: 17.3125rem;
  height: 30.1875rem;
  background: url(../images/speakergraph.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -28%;
}
.speaker .meet-list {
  margin-top: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.speaker .meet-list .item {
  width: 23%;
  text-align: center;
}
.speaker .meet-list .item .img-sec {
  width: 12.5rem;
  max-width: 12.5rem;
  margin: auto;
  position: relative;
}
.speaker .meet-list .item .img-sec img {
  border: 0.25rem solid var(--red-color);
  border-radius: 6.25rem;
  width: 100%;
  display: block;
}
.speaker .meet-list .item .img-sec .linkedin {
  position: absolute;
  right: 0px;
  bottom: 1.875rem;
}
.speaker .meet-list .item .img-sec .linkedin img {
  border: 0;
}
.speaker .meet-list .item .details {
  margin-top: 0.625rem;
}
.speaker .meet-list .item .details .name {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--red-color);
  margin-bottom: 0.3125rem;
}
.speaker .meet-list .item .details .designation {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--text-color);
}
.speaker .meet-list .item .details .org {
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  color: var(--text-color);
}
@media only screen and (max-width: 1359px) {
  .speaker:before {
    bottom: -28%;
  }
}
@media only screen and (max-width: 1023px) {
  .speaker:before {
    display: none;
  }
  .speaker .meet-list .item {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .speaker .meet-list {
    margin-top: 1rem;
    gap: 1rem;
    max-height: 35rem;
    overflow-x: auto;
  }
  .speaker .meet-list .item {
    width: 100%;
  }
}

.partner {
  background-color: var(--red-color);
  position: relative;
  overflow: hidden;
}
.partner:before {
  content: "";
  width: 16.9375rem;
  height: 31.0625rem;
  background: url(../images/partnergraph.svg) no-repeat;
  position: absolute;
  left: 0;
  top: -38%;
}
.partner .heading {
  color: var(--color-white);
}
.partner__smbox {
  width: 60%;
  text-align: center;
  margin: auto;
}
.partner__smtxt {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-white);
  margin: 1rem 0 2rem 0;
}
.partner__smtxt span {
  font-weight: 500;
}
.partner__partnerlist {
  max-width: 14.5rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.partner__partnerlist img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .partner:before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .partner__smbox {
    width: 100%;
  }
  .partner__smtxt {
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
  }
  .partner__partnerlist {
    flex-wrap: wrap;
  }
  .partner__listitem {
    width: 100%;
  }
}

.supportby__slider {
  margin-top: 3rem;
}
.supportby__item {
  border: 0.0625rem solid var(--red-color);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  background: #eee;
  margin-right: 0.625rem;
  font-size: 1.125rem;
  border-radius: 0.3125rem;
}
.supportby__item img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 767px) {
  .supportby__slider {
    margin-top: 1rem;
  }
}

.spreadword {
  padding-top: 5rem;
}
.spreadword__spreadlist {
  gap: 1.25rem;
  margin-top: 3rem;
}
.spreadword__spreaditem {
  width: 31%;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.spreadword__spreaditem img {
  width: 100%;
  display: block;
}
.spreadword__bottomtxt {
  font-size: 1.5rem;
  color: var(--red-color);
  padding: 0.875rem 4.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: center;
  margin: 3rem auto 0;
  border-width: 0.0625rem 0.0625rem 0 0.0625rem;
  border-style: solid;
  border-color: var(--red-color);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
@media only screen and (max-width: 1360px) {
  .spreadword__bottomtxt {
    padding: 0.875rem 2.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .spreadword__spreadlist {
    flex-wrap: wrap;
  }
  .spreadword__spreaditem {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .spreadword {
    padding-top: 2rem;
  }
  .spreadword__spreadlist {
    margin-top: 1rem;
  }
  .spreadword__spreaditem {
    width: 100%;
  }
  .spreadword__bottomtxt {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

.agenda {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 9;
}
.agenda a {
  text-decoration: none;
}
.agenda:hover .agenda-sec .image {
  display: block;
  width: auto;
}
.agenda:hover .agenda-sec .hover {
  display: none;
}
.agenda .agenda-sec {
  background: var(--red-color);
  border-radius: 6.25rem;
  width: 4.6875rem;
  height: 4.6875rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda .agenda-sec .hover {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}
.agenda .agenda-sec .image {
  display: none;
}

.social-info ul {
  display: flex;
  gap: 1rem;
}
.social-info ul li a img {
  max-width: 3.125rem;
  height: 3.125rem;
}

.footer-div {
  background-color: #581413;
  padding: 0 0 1.25rem;
}
.footer-div .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-div .footer-row .col-50 {
  width: 100%;
  max-width: 30rem;
}
.footer-div .footer-row .h1 {
  color: var(--color-white);
  margin: 1.5rem 0 1rem;
  font-size: 2.25rem;
}
.footer-div .footer-row .h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.footer-div .footer-row .Contact-info {
  font-size: 1.75rem;
  color: var(--color-white);
  font-weight: 400;
  text-decoration: none;
}
.footer-div .footer-row .footer-logo {
  max-width: 25rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .footer-div .footer-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .footer-div .footer-row .col-50 {
    max-width: 100%;
    text-align: center;
  }
  .footer-div .footer-row .col-50 .social-info ul {
    justify-content: center;
    width: 100%;
  }
  .footer-div .footer-row .h1 {
    text-align: center;
  }
  .footer-div .footer-row .h3 {
    text-align: center;
    font-size: 1rem;
  }
  .footer-div .footer-row .Contact-info {
    text-align: center;
    font-size: 1rem;
  }
  .footer-div .footer-row .footer-logo {
    margin: 0 auto 1rem;
  }
  .footer-div .footer-row .footer-logo img {
    width: 100%;
  }
}

.bottom-footer {
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0;
}
.bottom-footer p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
}
.bottom-footer p a {
  display: inline;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */