/* body */
body {
  min-height: 100vh;
  color: #fff;
  font-family: "gotham book";
  background-color: #2c566c;
}

/* colors */
.color-cyan {
  color: #03fefe;
}

.color-blue {
  color: #ed00f4;
}

.color-white {
  color: #fff;
}

.color-yellow {
  color: #ffeb5a;
}

/* images */
.img-shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.stroke-down {
  border-bottom: 2px solid #fff;
}

.hide-scrollbar header {
  opacity: 0;
  visibility: hidden;
}

/* tipography */
h1 {
  font-family: "gotham black";
}

p {
  font-family: "gotham book";
}
p b {
  font-family: "gotham bold";
  font-weight: normal;
}

.list {
  padding-left: 1.5rem;
}
.list ::marker {
  color: #ffeb5a;
}

.light {
  font-family: "gotham book";
}

.medium {
  font-family: "gotham medium";
}

.bold {
  font-family: "gotham bold";
}

.black {
  font-family: "gotham black";
}

.uppercase {
  text-transform: uppercase;
}

/* buttons */
.btn {
  font-family: "gotham bold";
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 50px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
  }
}
.btn.btn-primary {
  background-color: #1ae7ff;
  border-color: #1ae7ff;
  color: #000;
}
.btn.btn-primary:hover {
  background-color: #ed00f4;
  border-color: #ed00f4;
  color: #fff;
}
.btn.btn-yellow {
  background-color: #fff8c8;
  border-color: #fff8c8;
  color: #000;
}
.btn.btn-yellow:hover {
  background-color: #ffeb5a;
  border-color: #ffeb5a;
  color: #000;
}

/* header */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(19, 37, 46) 50%, rgba(19, 37, 46, 0) 100%);
  z-index: 19999;
}
@media (min-width: 768px) {
  header {
    background: transparent;
  }
}
header .header-brand {
  display: block;
  width: 120px;
  margin: 0.5rem 0.75rem;
  position: relative;
  z-index: 19999;
}
@media (min-width: 768px) {
  header .header-brand {
    width: 150px;
    margin: 0.5rem 1rem;
  }
}
header .header-options {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: end;
  align-items: center;
  position: relative;
  z-index: 19999;
}
header .header-options .lang-selector {
  display: none;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  margin: 0.5rem;
  margin-right: 1rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  header .header-options .lang-selector {
    display: flex;
  }
}
header .header-options .lang-selector a {
  margin: 0.25rem 0.25rem 0.35rem;
}
header .header-options .hamburger {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 1rem 0 0.5rem;
  z-index: 19999;
}
@media (min-width: 1200px) {
  header .header-options .hamburger {
    display: none;
  }
}
header .header-options .hamburger .hamburger-label {
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  font-family: "tekomedium";
  font-size: 1.15rem;
  text-transform: uppercase;
  transition: 0.15s all linear;
}
header .header-options .hamburger .hamburger-inner, header .header-options .hamburger .hamburger-inner:after, header .header-options .hamburger .hamburger-inner:before {
  background-color: #fff;
}
header .header-options .hamburger.is-active .hamburger-inner, header .header-options .hamburger.is-active .hamburger-inner:after, header .header-options .hamburger.is-active .hamburger-inner:before {
  background-color: #1ae7ff;
}
header .header-options .hamburger.is-active .hamburger-label {
  color: #1ae7ff;
}
header .nav-desktop {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  header .nav-desktop {
    display: flex;
  }
}
header .nav-desktop .nav-link {
  font-family: "tekomedium";
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
  transition: 0.25s opacity linear;
}
header .nav-desktop .nav-link span {
  color: #fff;
  transition: 0.15s color linear;
}
header .nav-desktop .nav-link.is-active span {
  color: #fff8c8;
}
header .nav-desktop .nav-link:hover span {
  color: #ffeb5a;
}
header .nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1999;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s all linear;
}
header .nav-mobile .nav-link {
  font-family: "tekomedium";
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  transition: 0.25s opacity linear;
  transition-delay: 0.2s;
  opacity: 0;
}
header .nav-mobile .nav-link span {
  color: #fff;
  transition: 0.15s color linear;
}
header .nav-mobile .nav-link.is-active span {
  color: #fff8c8;
}
header .nav-mobile .nav-link:hover span {
  color: #1ae7ff;
}
header .nav-mobile.is-active {
  opacity: 1;
  visibility: visible;
}
header .nav-mobile.is-active .nav-link {
  opacity: 1;
}
header .nav-mobile .lang-selector {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  margin: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  header .nav-mobile .lang-selector {
    display: none;
  }
}
header .nav-mobile .lang-selector a {
  margin: 0.25rem 0.25rem 0.35rem;
  text-decoration: none;
}

/* footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #13252e;
  box-shadow: 0 -0.5rem 1rem 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
  }
}
footer .footer-brand {
  margin: 1rem 0;
}
@media (min-width: 768px) {
  footer .footer-brand {
    margin: 0;
  }
}
footer .footer-sponsors {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #b8bdc0;
  border-bottom: 1px solid #b8bdc0;
}
@media (min-width: 768px) {
  footer .footer-sponsors {
    flex-direction: row;
    padding: 0;
    border: none;
  }
}
footer .footer-sponsors a {
  margin: 0.5rem 0;
  text-decoration: none;
  transition: 0.15s opacity linear;
}
footer .footer-sponsors a:hover {
  opacity: 0.75;
}
footer .footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 1rem -0.25rem;
}
@media (min-width: 768px) {
  footer .footer-social {
    margin: 0 -0.25rem;
  }
}
footer .footer-social .brand {
  margin-right: 0.5rem;
}
footer .footer-social a {
  margin: 0.25rem;
  text-decoration: none;
  transition: 0.15s opacity linear;
}
footer .footer-social a:hover {
  opacity: 0.75;
}

/* section-home */
.section-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* section-about */
.section-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-about h1 {
  text-align: center;
}
@media (min-width: 768px) {
  .section-about h1 {
    text-align: left;
  }
}
.section-about h4 {
  font-family: "gotham bold";
}
.section-about figure {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .section-about figure {
    flex-direction: row;
    border-left: 1px solid #1ae7ff;
    text-align: left;
  }
}

/* section-contact */
.section-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-contact a {
  color: #ffeb5a;
  transition: 0.15s color linear;
}
.section-contact a:hover {
  color: #1ae7ff;
}

/* section-register */
.section-register {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-register .form-control {
  border-radius: 50px;
  margin-bottom: 0.5rem;
  border: none;
  box-shadow: none;
}
.section-register .badge {
  padding: 0.75rem 1rem;
  font-family: "gotham bold";
  font-weight: normal;
}
.section-register .line {
  width: 1px;
  height: 100%;
  background-color: #fff;
  margin: auto;
}

/* section-sponsors */
.section-sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* section-stream */
.section-stream {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-stream h1 {
  font-family: "tekomedium";
  font-size: 3rem;
  color: #fff8c8;
}

/* section-program */
.section-program {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-program .day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  text-align: center;
  border-bottom: 1px solid #fff8c8;
}
.section-program .day:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% - 3.9rem);
  background-color: #fff8c8;
}
@media (min-width: 768px) {
  .section-program .day:before {
    height: calc(100% - 1.9rem);
  }
}
.section-program .day:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: calc(100% - 3.9rem);
  background-color: #fff8c8;
}
@media (min-width: 768px) {
  .section-program .day:after {
    height: calc(100% - 1.9rem);
  }
}
.section-program .day h3 {
  position: relative;
  width: 100%;
  font-size: 3rem;
  color: #1ae7ff;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section-program .day h3 {
    margin-top: 0;
  }
}
.section-program .day h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 1px;
  background-color: #fff8c8;
}
@media (min-width: 768px) {
  .section-program .day h3:before {
    width: 4rem;
  }
}
.section-program .day h3:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
  background-color: #fff8c8;
}
@media (min-width: 768px) {
  .section-program .day h3:after {
    width: 4rem;
  }
}
.section-program .day h3 span {
  font-family: "gotham black";
}
.section-program .day .day-agenda {
  display: flex;
  flex-direction: column;
  flex: 2;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.section-program .day .day-agenda p {
  padding-bottom: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff8c8;
  line-height: 1.5;
  font-size: 1.1em;
  font-family: "gotham medium";
}
@media (min-width: 768px) {
  .section-program .day .day-agenda p {
    font-size: 1.4em;
    font-family: "gotham medium";
    line-height: 1.1;
  }
}
.section-program .day .day-agenda p:last-of-type {
  border-bottom: none;
}

/* section-speakers */
.section-speakers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-speakers h1 {
  font-family: "tekomedium";
  font-size: 3rem;
  color: #fff8c8;
}
.section-speakers .swiper-slide {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .section-speakers .swiper-slide {
    padding-top: 0;
  }
}
.section-speakers .swiper-button-next {
  right: 0;
  color: #fff8c8;
}
.section-speakers .swiper-button-prev {
  left: 0;
  color: #fff8c8;
}
.section-speakers .swiper-pagination {
  bottom: auto;
  top: 0;
}
@media (min-width: 768px) {
  .section-speakers .swiper-pagination {
    bottom: 0;
    top: auto;
  }
}
.section-speakers .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.section-speakers .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffeb5a;
}
.section-speakers figure {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-speakers figure {
    margin: 1rem 2rem;
  }
}
.section-speakers figure p {
  line-height: 1.2;
}

/* section-generic */
.section-generic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  min-height: calc(100vh - 90px);
  background-image: url("../pics/bg2025.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*# sourceMappingURL=common.css.map */
