@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap");
html, body, div, span, applet, 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, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --bg-color: #000000;
  --primary-color: #ED1C24;
  --primary-color-dark: #AD0007;
  --speaker-bg-1: #CD0102;
  --primary-black:#1B1B1B;
  --nav-height:100px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

body {
  min-height: 100vh;
  background-color: var(--bg-color);
}

* {
  box-sizing: border-box;
}

.g-red, .mobile-card > li span.title {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
}

.text-red {
  color: var(--primary-color);
}

.text-blue {
  color: #000AFF;
}

.sm-hide {
  display: none;
}
@media screen and (min-width: 700px) {
  .sm-hide {
    display: inherit;
  }
}

@media screen and (min-width: 700px) {
  .lg-hide {
    display: none;
  }
}

.tlower {
  text-transform: lowercase;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  flex-direction: column;
}

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

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

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

.v-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.w-full {
  width: 100%;
}

.mb-100 {
  margin-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.f12 {
  font-size: 12px;
}

.tbold {
  font-weight: bold !important;
}

.titalic {
  font-style: italic;
}

.subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}
.subtitle.simple {
  font-weight: 700;
  font-size: 20px;
}
.subtitle::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 120%;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(237, 28, 36) 25%, rgb(237, 28, 36) 50%, rgb(237, 28, 36) 75%, rgb(0, 0, 0) 100%);
  bottom: 0;
  left: -10%;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: linear-gradient(94.46deg, var(--primary-color) 33.87%, var(--primary-color-dark) 111.71%);
  border-radius: 5px;
  padding: 15px 15px;
  color: white;
  font-weight: 600;
}
.btn:hover {
  box-shadow: 0 0 5px var(--primary-color);
}

.agenda-cards,
.locations-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .agenda-cards,
  .locations-cards {
    display: none;
  }
}

.mobile-card {
  background: white;
  color: #000000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-card li:not(:last-child) {
  border-bottom: 1px solid var(--primary-color);
}
.mobile-card > li {
  display: flex;
  min-height: 50px;
}
.mobile-card > li span.title {
  display: inline-flex;
  min-width: 120px;
  max-width: 120px;
  color: #fff;
  padding: 10px 15px;
  line-height: 1.4rem;
}
.mobile-card > li .details {
  text-align: left;
  padding: 10px 15px;
}
.mobile-card > li .details p {
  line-height: 25px;
}

.grid__table {
  background: white;
  display: grid;
  grid-template-rows: fit-content(40%);
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}
.grid__row {
  display: grid;
  font-size: 20px;
}
.grid__row__4 {
  grid-template-columns: 0.9fr 1fr 1fr 0.8fr;
}
.grid__row__3 {
  grid-template-columns: 0.5fr 1fr 0.9fr;
}
.grid__row__header {
  background: linear-gradient(91.63deg, #ED1C24 9.05%, #FF7175 17.76%, #ED1C24 30.34%, #ED1C24 64.5%, #ED1C24 87.03%, #FF7175 93.32%, #ED1C24 100.46%);
  border-radius: 15px;
  border: 1px solid black;
}
.grid__row__body {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #000000;
  font-weight: 600;
}
.grid__row__body:nth-child(odd) {
  background: #fef6f6;
}
.grid__row__body:not(:last-child) {
  border-bottom: 1px solid #000;
}
.grid__row__body .grid__col {
  border-right: 1px solid black;
  line-height: 28px;
}
.grid__th {
  color: #fff;
  padding: 20px 30px !important;
}
.grid__th:not(:last-child) {
  border-right: 1px solid black;
  border-top-right-radius: 15px;
}
.grid__col {
  padding: 15px 30px;
}

ul.speaker_tags li:not(:last-child) {
  margin-bottom: 14px;
}
ul.speaker_tags li h4 {
  font-weight: 700 !important;
  margin: 0;
  padding: 0;
}
ul.speaker_tags li h4 span {
  font-size: inherit;
  font-weight: inherit;
  display: inline;
}
ul.speaker_tags li h4 span.su {
  border-bottom: 2px solid black;
}
ul.speaker_tags li span {
  display: block;
  font-weight: 400;
  line-height: 27px;
}

ul.agenda_spk {
  display: flex;
  align-items: flex-start;
  position: relative;
}
ul.agenda_spk:first-child {
  margin-top: 10px;
}
ul.agenda_spk:not(:last-child) {
  margin-bottom: 40px;
}
ul.agenda_spk:last-child {
  margin-bottom: 30px;
}
ul.agenda_spk .item {
  flex: 1;
}
ul.agenda_spk .spk {
  position: absolute;
  left: calc(100% + 60px);
  width: 100%;
}

p.icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media screen and (min-width: 700px) {
  p.icons {
    margin: 15px 0 0 0;
  }
}
p.icons a[class^=icon-] {
  color: inherit;
  white-space: nowrap;
  position: relative;
  padding-left: 28px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
p.icons a[class^=icon-]:hover {
  color: #ED1C24;
}
p.icons a[class^=icon-]::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}
p.icons a[class^=icon-].icon-play::before {
  background-image: url(../img/play.png);
}
p.icons a[class^=icon-].icon-download::before {
  background-image: url(../img/pdf.svg);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
.modal .modal-content {
  width: 90%;
  position: relative;
}
@media screen and (min-width: 700px) {
  .modal .modal-content {
    width: 60%;
  }
}
.modal .modal-content .close {
  cursor: pointer;
  background-image: url(../img/close.svg);
  color: rgba(255, 255, 255, 0.2);
  height: 40px;
  width: 40px;
  position: absolute;
  right: 10px;
  top: -48px;
}
@media screen and (min-width: 700px) {
  .modal .modal-content .close {
    right: -10px;
  }
}
.modal .modal-content .close:hover {
  color: #fff;
}
.modal .modal-content .modal-body {
  background: #000;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}
.modal .modal-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.cnt {
  width: 100%;
  max-width: 1193px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (min-width: 700px) {
  .cnt {
    padding: 0 35px;
  }
}
@media screen and (min-width: 1440px) {
  .cnt {
    padding: 0 0;
  }
}

nav {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: #000;
}

.nav-bar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.nav-bar.scroll {
  --nav-height: 80px;
}
.nav-bar .bars {
  width: 30px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-bar .bars:hover {
  background-color: var(--primary-color-dark);
  border-radius: 3px;
}
@media screen and (min-width: 700px) {
  .nav-bar .bars {
    display: none;
  }
}
.nav-bar ul.menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  font-weight: 600;
}
.nav-bar ul.menu.show {
  display: flex;
}
.nav-bar ul.menu li {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .nav-bar ul.menu li {
    height: 100%;
  }
}
.nav-bar ul.menu li.nav-item {
  transition: all 0.2s;
}
.nav-bar ul.menu li.nav-item:hover, .nav-bar ul.menu li.nav-item.active {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  background-color: var(--primary-color-dark);
}
.nav-bar ul.menu li.nav-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 15px;
  height: 100%;
  color: white;
}
.nav-bar ul.menu li .btn {
  margin: 20px 0;
}
@media screen and (min-width: 700px) {
  .nav-bar ul.menu li .btn {
    margin: 0 0;
  }
}
@media screen and (min-width: 700px) {
  .nav-bar ul.menu {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    height: 100%;
    gap: 10px;
    justify-content: end;
    top: 0;
  }
}

main {
  position: relative;
  top: var(--nav-height);
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .hero {
    padding: 30px;
  }
}
.hero img {
  width: 100%;
  max-width: 1094px;
}
.hero .venue {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.hero .venue p {
  font-size: 24px;
  line-height: 32.68px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

#by_invite p {
  font-weight: 600;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 30px;
}
#by_invite p:last-child {
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  #by_invite p {
    text-align: center;
    line-height: 30px;
    font-size: 20px;
  }
}
#by_invite .btn {
  height: 60px;
  font-size: 24px;
}

.digital {
  background: var(--primary-black);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.digital .digital-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 700px) {
  .digital .digital-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.digital .digital-header span {
  font-weight: 600;
  font-style: italic;
}
.digital .digital-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 700px) {
  .digital .digital-body {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 700px) {
  .digital .digital-body .text-hold {
    flex: 2;
  }
}
.digital .digital-body .text-hold h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.digital .digital-body .text-hold p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 185.2%;
}
.digital .digital-body .btn-hold .btn {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .digital .digital-body .btn-hold {
    flex: 1;
    text-align: right;
  }
  .digital .digital-body .btn-hold .btn {
    width: inherit;
  }
}
.digital .btn {
  padding: 20px 60px !important;
}

.speakers {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.speakers .sprow {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 700px) {
  .speakers .sprow {
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
  }
}
.speakers .sprow:nth-child(even) .speaker:nth-child(odd) {
  background: var(--speaker-bg-1);
}
.speakers .sprow:nth-child(even) .speaker:nth-child(odd) .details {
  background: linear-gradient(0deg, var(--speaker-bg-1) 29.1%, rgba(205, 1, 2, 0) 95.49%);
  border-radius: 15px;
}
.speakers .sprow:nth-child(even) .speaker:nth-child(even) {
  background: linear-gradient(180deg, #020000 0%, #AD0007 100%);
}
.speakers .sprow:nth-child(even) .speaker:nth-child(even) .details {
  background: linear-gradient(0deg, #480103 37.7%, rgba(82, 0, 0, 0) 81.56%);
  border-radius: 15px;
}
.speakers .sprow:nth-child(odd) .speaker:nth-child(even) {
  background: var(--speaker-bg-1);
}
.speakers .sprow:nth-child(odd) .speaker:nth-child(even) .details {
  background: linear-gradient(0deg, var(--speaker-bg-1) 29.1%, rgba(205, 1, 2, 0) 95.49%);
  border-radius: 15px;
}
.speakers .sprow:nth-child(odd) .speaker:nth-child(odd) {
  background: linear-gradient(180deg, #020000 0%, #AD0007 100%);
}
.speakers .sprow:nth-child(odd) .speaker:nth-child(odd) .details {
  background: linear-gradient(0deg, #480103 37.7%, rgba(82, 0, 0, 0) 81.56%);
  border-radius: 15px;
}
.speakers .sprow .speaker {
  position: relative;
  width: 100%;
  max-width: 180px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
@media screen and (min-width: 700px) {
  .speakers .sprow .speaker {
    max-width: 180px;
    min-height: 330px;
  }
}
.speakers .sprow .speaker:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 700px) {
  .speakers .sprow .speaker {
    height: 349px;
    max-width: 277px;
  }
}
.speakers .sprow .speaker img {
  width: 100%;
  margin-top: 18px;
}
.speakers .sprow .speaker .details {
  position: absolute;
  bottom: 0;
  min-height: 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5px 10px;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .speakers .sprow .speaker .details {
    padding: 30px;
  }
}
.speakers .sprow .speaker .details h3 {
  font-weight: 700;
}
.speakers .sprow .speaker .details h3 span {
  font: inherit;
}
.speakers .sprow .speaker .details span {
  font-size: 12px;
  line-height: 1rem;
}

#showcases .title {
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-flex;
  margin-bottom: 20px;
}
#showcases .showcase {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  #showcases .showcase {
    flex-direction: row;
    padding: 0 0;
  }
}
#showcases .showcase .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  #showcases .showcase .box {
    width: 31.5%;
  }
}
#showcases .showcase .box .title {
  margin-bottom: 30px;
}
#showcases .showcase .box .content {
  width: 100%;
  padding: 40px 20px;
  background-color: var(--primary-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
  border-radius: 15px;
  text-align: center;
}
#showcases .showcase .box .content .cbody {
  flex: 1;
}
#showcases .showcase .box .content h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#showcases .showcase .box .content span {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}
#showcases .showcase .box .content p {
  line-height: 24px;
  font-size: 14px;
}
#showcases .showcase .box .content.red {
  background: var(--primary-color);
}

#floor-plan {
  margin-top: 50px;
}
#floor-plan .plan {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 0 20px 100px 20px;
}
#floor-plan .plan img {
  width: 100%;
}

#location h4 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
#location ul.transport {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  gap: 30px;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  #location ul.transport {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
#location ul.transport li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  #location ul.transport li {
    align-items: flex-start;
  }
}
#location ul.transport li img {
  max-width: 60px;
  margin-bottom: 25px;
}
#location ul.transport li h5 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
#location ul.transport li p {
  line-height: 21.79px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  #location ul.transport li p {
    text-align: left;
  }
}
#location .location_table table {
  background-color: #fff;
}

#map img {
  width: 100%;
}

footer {
  display: flex;
  padding-bottom: 50px !important;
  flex-direction: column-reverse;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 700px) {
  footer {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
footer .copyright {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 700px) {
  footer .copyright {
    align-items: flex-start;
    height: 350px;
  }
}
footer .contacts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 700px) {
  footer .contacts {
    gap: 46px;
    margin-top: 0;
    align-items: flex-start;
  }
}
footer .contacts span,
footer .contacts a {
  font-weight: 600;
  line-height: 38px;
  color: #999999;
}
footer .contacts > span {
  font-size: 21px;
}
@media screen and (min-width: 700px) {
  footer .contacts > span {
    font-size: 28px;
  }
}
footer .contacts .details {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  footer .contacts .details {
    flex-direction: row;
    align-items: flex-start;
  }
}
footer .contacts .details .contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 700px) {
  footer .contacts .details .contact {
    align-items: flex-start;
  }
}
footer .contacts .details .contact span,
footer .contacts .details .contact a {
  color: #fff;
  font-size: 24px;
}
footer .btn {
  height: 55px;
  font-size: 20px !important;
}

.presenters_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 15px;
}
@media screen and (min-width: 700px) {
  .presenters_container {
    flex-direction: row;
  }
}
.presenters_container .presenters_group {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.presenters_container .presenters_group .presenters {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  .presenters_container .presenters_group .presenters {
    flex-direction: row;
    justify-content: center;
  }
}
.presenters_container .presenters_group .presenters .presenter {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #0d0d0d;
  position: relative;
  height: 334px;
  border-radius: 15px;
  max-width: 270px;
  width: 100%;
  transition: all 0.2s;
  cursor: pointer;
}
.presenters_container .presenters_group .presenters .presenter:hover {
  transform: scale(1.05);
}
.presenters_container .presenters_group .presenters .presenter img {
  height: 100%;
  max-height: 200px;
  margin-bottom: 20px;
}
.presenters_container .presenters_group .presenters .presenter h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 5px;
  text-align: center;
}
.presenters_container .presenters_group .presenters .presenter h4 span {
  font: inherit;
}
.presenters_container .presenters_group .presenters .presenter span {
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}

span.su {
  border-bottom: 2px solid white;
  padding: 0;
}/*# sourceMappingURL=style.css.map */