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;
  font-weight: 300;
}

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

body {
  line-height: 1;
  font-family: 'Lexend Exa', sans-serif;
}

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;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Lexend Exa", sans-serif;  
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.text-sm {
  font-size: 16px;
  line-height: 1;
}

body {
  background: #4E008E;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  position: relative;
  color: #FFFFFF;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
body .content {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: #CCCCCC;
}
body::-webkit-scrollbar-thumb {
  background: #40C1AC;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(64, 193, 172, 0.4);
}

.custom-container {
  max-width: 1440px;
  margin: 0px auto;
  width: 100%;
  padding: 0px 60px;
}

.btn {
  font-weight: 600;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  width: -moz-fit-content;
  border-radius: 0px;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
}
.btn.outlined {
  background-color: transparent;
  border-color: #40C1AC;
  color: #40C1AC;
}
.btn.outlined:hover {
  background-color: #40C1AC;
  color: #000000;
}
.btn.primary {
  background-color: #40C1AC;
  border: 1px solid #40C1AC;
  color: #000000;
  
}
.btn.primary:hover {
  background-color: #FFF;
  transition: 0.3s ease-in-out;
}
.btn.lg {
  padding: 28px 40px;
  font-size: 1rem;
}
.btn.md {
  padding: 22px 24px;
  font-size: 0.875rem;
}
.btn.sm {
  padding: 16px 20px;
  font-size: 0.75rem;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.white {
  background-color: #FFFFFF;
}

.btn.purple {
  background-color: #4E008E;
  border: 1px solid #4E008E;
  color: #FFFFFF;
}

.btn.purple:hover {
  background-color: #FFF;
  color: #000;
}

.text-btn {
  font-weight: 600;
  font-family: 'Lexend Exa', sans-serif;
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  width: -moz-fit-content;
  transition: 0.3s ease-in-out;
  color: #FFFFFF;
  background-color: transparent;
  border: none;
  padding: 0px;
}
.text-btn:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  opacity: 0.7;
}

.modal-dialog {
  max-width: 800px;
}
.modal-dialog .modal-content {
  background-color: transparent;
  background: linear-gradient(45deg, #000000 80%, #4E008E 100%);
  border: none;
  box-shadow: none;
  padding: 75px 40px 20px 60px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  max-width: 100%;
}
.modal-dialog .modal-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: -1.13px;
  margin-bottom: 24px;
}
.modal-dialog .modal-content p {
  margin-bottom: 16px;
}
.modal-dialog .modal-content span {
  font-weight: 600;
  margin-bottom: 16px;
}
.modal-dialog .modal-content ul {
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 16px;
}
.modal-dialog .modal-content strong {
  font-weight: 600;
}
.modal-dialog .close-modal-btn {
  position: absolute;
  right: 24px;
  top: 24px;
  background-color: transparent;
  border: none;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #FFFFFF;
}
.modal-dialog .modal-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.modal-dialog .field {
  max-width: 488px;
  width: 100%;
  margin: 0px auto;
  margin-bottom: 48px;
}
.modal-dialog .field p {
  margin-bottom: 0px !important;
}
.modal-dialog .field input {
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0px;
  height: 40px;
  padding: 0px 16px;
  width: 100%;
  margin-bottom: 16px;
  box-shadow: none;
  border: none;
}
.modal-dialog .field input[type=submit] {
  background-color: #40C1AC;
  color: #000000;
}
.modal-dialog .field .col-lg-6:first-child {
  padding-right: 8px;
}
.modal-dialog .field .col-lg-6:last-child {
  padding-left: 8px;
}

.pop-up-image-modal {
  padding-left: 0px;
}

#partnersModal .modal-dialog .modal-content {
  text-align: center;
}
#partnersModal .modal-dialog .modal-content p {
  max-width: 488px;
  margin: 0px auto;
  margin-bottom: 32px;
}

.pop-up-image-modal .modal-dialog .modal-content {
  text-align: center;
  padding: 0px;
  background: transparent;
}
.pop-up-image-modal .modal-dialog .modal-content img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.pop-up-image-modal .modal-dialog .modal-content button {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: transparent;
  border: none;
  padding: 8px;
}

.hamburguer-btn {
  position: relative;
  height: 24px;
  width: 24px;
  padding: 0px;
  border: none;
  background-color: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.hamburguer-btn.open span {
  background-color: #000000;
}
.hamburguer-btn.open span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.hamburguer-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburguer-btn.open span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.hamburguer-btn span {
  transition: 0.3s ease-in-out;
  display: block;
  min-width: 16px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 16px;
  position: relative;
}
.hamburguer-btn span:nth-child(1) {
  transform: translateY(-4px);
}
.hamburguer-btn span:nth-child(3) {
  transform: translateY(4px);
}

.hamburguer-menu {
  width: 100vw;
  height: 430px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0px;
  top: 0px;
  transform: translateY(-120%);
  border-radius: 0px 0px 16px 16px;
  padding: 0px 24px;
  padding-top: 132px;
  display: none;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.hamburguer-menu.open {
  transform: translateY(0%);
}
.hamburguer-menu a {
  width: 100%;
}
.hamburguer-menu nav {
  display: flex;
  flex: 1;
}
.hamburguer-menu ul {
  width: 100%;
}
.hamburguer-menu ul li {
  width: fit-content;
  width: -moz-fit-content;
}
.hamburguer-menu ul li:first-child {
  margin-bottom: 40px;
}
.hamburguer-menu ul li a {
  text-align: left;
  width: 100%;
}
.hamburguer-menu .btn {
  margin-top: auto;
  margin-bottom: 32px;
}

header .text-btn {
    font-size: 15px;
}

.header-logo {
  position: relative;
  z-index: 3;
}
.header-logo img {
  height: 64px;
  object-fit: cover;
}
.header-logo svg {
  transition: 0.3s ease-in-out;
}
.header-logo.open svg path {
  fill: #4E008E !important;
}
.header-logo.open svg #path54, .header-logo.open svg #path36 {
  fill: #40C1AC !important;
}

.mobile {
  display: none !important;
}

.desktop {
  display: flex !important;
}

@media (max-width: 991px) {
  .pop-up-image-modal .modal-dialog .modal-content button {
    top: 0px;
    right: 0px;
  }
  .pop-up-image-modal .modal-dialog .modal-content img {
    min-height: 228px;
  }
  .mobile {
    display: flex !important;
  }
  .desktop {
    display: none !important;
  }
  .hamburguer-menu, .hamburguer-btn {
    display: flex;
  }
  .custom-container {
    padding: 0px 16px;
  }
  .modal-dialog .modal-content {
    padding: 40px 16px 20px 16px;
  }
  .modal-dialog .modal-content .field .col-lg-6 {
    padding: 0px 15px;
  }
  .modal-dialog .modal-content .field p {
    margin-bottom: 8px !important;
  }
  .modal-dialog .modal-content p {
    font-size: 14px;
  }
  .modal-dialog .modal-content ul p {
    word-break: break-all;
  }
}
header {
  padding: 24px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 9;
  background-color: rgba(78, 0, 142, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
header .btn {
  width: 100%;
}
header .header-logo svg,
header .header-logo img {
  height: 48px;
  width: auto;
  display: flex;
  margin-right: 64px;
}
header nav ul {
  gap: 32px;
}
header nav ul a {
  color: #4E008E;
  font-weight: 600;
}
header .instagram-tickets-container .btn {
  margin-right: 16px;
}
header .instagram-tickets-container .instagram-btn {
  border: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  flex: 1;
  height: 47px;
  font-size: 22px;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
}
header .instagram-tickets-container .instagram-btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.picture-swiper {
  overflow: hidden;
}
.picture-swiper img,
.picture-swiper video {
  width: 100%;
  display: block;
}

.hero {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}
.hero .slider-image{
 width: 100%;
height: 100%;
}
.hero .slider-image.mobile {
  display: none;
}
.hero .hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  top: 0px;
  display: flex;
}
.hero .hero-background::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.hero img,
.hero video {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  touch-action: none;
}
.hero .custom-container {
  padding-top: 56px;

  position: relative;
  z-index: 4;
  margin-top: 40px;
}
.hero .row {
  margin-bottom: 96px;
}
.hero .date-place-container {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 2.56px;
  
  margin-bottom: 32px;
}
.hero .date-place-container P {
  font-weight: 600;
}
.hero .date-place-container span {
  font-weight: 400;
}
.hero h1 {
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 56px;
}
.hero p {
  max-width: 600px;
}
.hero a {
  margin-top: 24px;
}
.hero .banner-swiper {
  margin-bottom: 96px;
}

.bg-graphism {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 12 / 1;
}

.image-graphism-background {
  background-image: url("../images/hero-banner-graphism.png");
  width: 100%;
  background-size: cover;
  background-repeat: repeat;
  position: absolute;
  display: block;
  height: 100%;
}

.your-change {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 72px;
  background-color: #000049;
}
.your-change h2 {
  font-weight: 300;
  font-size: 40px;
  max-width: 768px;
  margin: 0px auto;
  margin-bottom: 16px;
}
.your-change h2 span {
  font-weight: 600;
  color: #40C1AC;
}
.your-change .text-sm {
  margin-bottom: 80px;
}
.your-change .btn {
  margin: 0px auto;
  margin-top: 80px;
}
.your-change .metrics-card {
  margin-bottom: 24px;
}
.your-change .metrics-card img {
  height: 140px;
  width: 140px;
  margin-bottom: 24px;
}
.your-change .metrics-card .title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
}
.your-change .metrics-card .subtitle {
  font-size: 16px;
}

.event-place {
  padding-top: 96px;
  padding-bottom: 100px;
  position: relative;
  background-color: #40C1AC;
  overflow: hidden;
}
.event-place h2, .event-place p {
  max-width: 516px;
}
.event-place h2 {
  margin-bottom: 16px;
  color: #FFF;
  font-size: 40px;
}
.event-place .text-sm {
  line-height: 1.5;
  color: #FFF;
}
.event-place .btn {
  margin-top: 32px;
}
.event-place .event-place-image-container {
  width: 100%;
  height: 100%;
  max-height: 505px;
  max-width: 505px;
  margin-left: auto;
  position: relative;
}
.event-place .event-place-image-container .event-place-image {
  width: 100%;
  height: 100%;
  display: flex;
  aspect-ratio: 1/1;
}
.event-place .event-place-image-container .diagonal-arrow {
  position: absolute;
  top: -20px;
  right: -20px;
  transition: all 0.4s;
}
.event-place .event-place-image-container .diagonal-arrow:hover {
  top: -40px;
  right: -40px;
  transition: all 0.4s;
}
.event-place .event-place-image-container .address-container {
  position: absolute;
  left: 0px;
  bottom: 62px;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  font-weight: 600;
  color: #000000;
}
.event-place .event-place-image-container .address-container p {
  font-size: 20px;
  text-align: center;
  padding: 8px 16px;
  background-color: #4E008E;
  color: #FFFFFF;
  font-family: "Lexend Exa", sans-serif;
}
.event-place .event-place-image-container .address-container span {
  font-size: 16px;
  padding: 6px 16px;
  background-color: #FFFFFF;
  display: flex;
  width: fit-content;
  width: -moz-fit-content;
  text-align: right;
  font-family: "Lexend Exa", sans-serif;
}
.event-place .place-graphism {
  position: absolute;
  bottom: -186px;
  right: 0px;
}

.event-place .btn:hover {
  background-color: #4E008E;
  color: #FFFFFF;
}

.speakers {
  background-color: #000049;
}
.speakers h2 {
  padding-bottom: 80px;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0px;
}
.speakers .speaker-card {
  margin-bottom: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.speakers .col-lg-4 {
	display: flex;
}
.speakers .speaker-card img {
  height: 302px;
  width: 100%;
  object-fit: cover;
  transform: translateY(4px);
}
.speakers .speaker-card .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  background-color: #4e008e;
  flex: 1;
}
.speakers .speaker-card .info .name-and-role {
  padding-right: 16px;
}
.speakers .speaker-card .info .name-and-role p {
  color: #40C1AC;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  font-family: "Lexend Exa", sans-serif;
  
}
.speakers .speakers-swiper .speaker-card .info .name-and-role p {
  font-size: 16px;
}
.speakers .speaker-card .info .name-and-role span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.speakers .speaker-card .info .date {
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 1.2px;
  font-family: "Lexend Exa", sans-serif;
  
}
.speakers a {
  margin: 0px auto;
  margin-top: 64px;
}

.reserve-your-ticket {
  background-color: #000049;
  padding: 80px 0px;
  text-align: center;
  position: relative;
}
.reserve-your-ticket .ticket-graphism {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: none;
}
.reserve-your-ticket h2 {
  color: #FFF;
  margin-bottom: 112px;
  font-size: 40px;
  font-weight: 600;
}
.reserve-your-ticket .custom-container {
  position: relative;
  z-index: 2;
}
.plans-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(0, 1fr);
  gap: 32px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.vip .plan-body {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.plan-header {
  padding: 32px 24px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
.plan-header .fire-icon {
  position: absolute;
  right: 32px;
  top: -40px;
}
.plan-header h4 {
  font-size: 32px;
  font-weight: 300;
  color: #FFF;
  text-align: left;
}
.plan-header h4 span {
  font-weight: 600;
  color: #40C1AC;
  display: block;
}
.plan-body {
  padding: 32px 24px;
  border: 1px solid #FFF;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
}
.plan-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.plan-item i {
  font-size: 18px;
}
.plan-item svg {
  padding: 2px;
  background-color: #40C1AC;
  margin-right: 6px;
  height: 10px;
  width: auto;
  margin-top: 2px;
}
.plan-item p {
  line-height: 130%;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.plan-item p span {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 6px 0px;
}
.plan-item p strong {
  font-weight: 600;
}
.plan-price {
  padding: 32px;
  background-color: #4E008E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px 0px;
}
.plan-price p {
  font-size: 14px;
  font-weight: 300;
  color: #40C1AC;
  margin-top: 8px;
}
.plan-price h4 {
  font-size: 40px;
  font-weight: 300;
  color: #fff;
}
.plan-footer a {
  width: 100%;
  color: #fff !important;
}

.plan-footer a:hover {
  color: #000 !important;
}
.sponsors {
  background-color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 120px;
}
.sponsors h2 {
  margin-bottom: 64px;
  color: #000000;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}
.sponsors .tier-container {
  margin-top: 32px;
}
.sponsors .tier-container h4 {
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: #000000;
  margin-bottom: 24px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.sponsors .tier-container img {
  height: 48px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1);
  object-fit: contain;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  margin: 0px auto;
  display: flex;
  opacity: .5;
}

.sponsors .tier-container .master img {
  height: 144px;
}

.sponsors .tier-container .prime img {
  height: 90px;
}

.sponsors .tier-container .smart-pro img {
  height: 80px;
}

.sponsors .tier-container .smart img {
  height: 70px;
}

.sponsors .tier-container .basic-pro img {
  height: 48px;
}


.sponsors .tier-container img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.sponsors .tier-container .row {
  display: flex;
  justify-content: center;
  margin: 0px -40px;
}
.sponsors .tier-container .row .col-lg-3 {
  padding: 0px 40px;
  margin-bottom: 32px;
}
.sponsors a {
  margin: 0px auto;
  margin-bottom: 64px;
  margin-top: 24px;
  background-color: red;

}

.faq {
  padding: 80px 0px;
}

.faq h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
  text-align: center;
}

.faq .subtitle {
  margin-bottom: 64px;
  text-align: center;
  font-weight: 300;
}

.card-body {
  padding: 0px 32px 24px 32px;
}

.card-body {
  line-height: 130%;
}

.card-body ul {
  list-style: disc;
  padding-left: 32px;
  margin: 16px 0px 24px 0px;
}
.card-body ul li {
  margin-bottom: 8px;
}
.card-body p {
  color: #fff;
}
.card-body strong {
  font-weight: 600;
  color: #FFF;
}
.card-body a {
  color: #40C1AC;
  font-weight: 600;
  text-decoration: underline;
}

#accordion .card-header {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: none;
  margin-bottom: 16px;
}

#accordion .card-header button {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#accordion .card-header button i {
  font-size: 16px;
  color: #fff;
}

#accordion .card-header button svg {
  transition: 0.3s ease-in-out;
}

#accordion .card-header button:not(.collapsed) svg {
  transform: rotate(180deg);
}

#accordion .card-header button:hover {
  color: #fff;
  text-decoration: none;
  text-align: left;
}

.card {
  background-color: transparent;
  border: none;
}

.card-body {
  background-color: transparent;
}
.card-body p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.countdown-container {
  overflow: hidden;
}
.countdown-background {
  object-fit: cover;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: -1;
  transform-origin: center center;
  animation: countdown-animation 10s linear infinite;
}
@keyframes countdown-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer {
  padding: 56px 0px 116px 0px;
  background-color: #000049;
}
footer .summit-social-medias-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-logo {
  height: fit-content;
}
footer .footer-logo img {
  width: 178px;
  height: auto;
}
footer nav ul {
  gap: 16px;
}
footer nav ul li a {
  color: #FFFFFF;
  font-size: 24px;
  display: flex;
  transition: 0.3s ease-in-out;
}
footer nav ul li a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}
footer .all-rights-reserved {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
footer .all-rights-reserved p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  opacity: 0.4;
}

.plans-mobile {
  display: none;
}

.speakers .speaker-card .info .name-and-role p {
  word-break: break-word;
}
.speakers .speaker-card img {
  transform: translateY(4px);
}
.speakers {
  padding-top: 0px;
}
.speakers .speaker-card {
  margin-bottom: 40px;
}

.speakers-swiper .nav-btn, .fixed-speakers-swiper .nav-btn{
  min-height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.speakers-swiper .swiper-slide, .fixed-speakers-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.next-btn {
  margin-right: 16px;
}

.prev-btn {
  margin-left: 16px;

}

.speakers-swiper .nav-btn:hover, .fixed-speakers-swiper .nav-btn:hover{
  opacity: .7;
}

.speakers-swiper .nav-btn svg, .fixed-speakers-swiper .nav-btn svg{
  height: 16px;
  width: 16px;
}

.speakers-swiper .swiper-button-next::after , .speakers-swiper .swiper-button-prev::after, .fixed-speakers-swiper .swiper-button-next::after , .fixed-speakers-swiper .swiper-button-prev::after{
  display: none;
}

.classes-banner {
	width: 100%;
	background-color: #40C1AC;
	position: sticky;
	top: 0px;
	display: block;
	z-index: 999;
	padding: 14px 0px;
}
.classes-banner a {
	font-family: 'Asap', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 16.04px;
	text-align: center;
	border: 2px solid #000020;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000020;
	padding: 12px 28px;
	transition: 0.2s ease-in-out;
}
.classes-banner a:hover {
	background-color: #000020;
	color: #fff;
}
.classes-banner .custom-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
} 
.classes-banner .custom-container::after, .classes-banner .custom-container::before{
	display: none;
}
.classes-banner .classes-text {
	font-family: 'Asap', sans-serif;
	text-decoration-skip-ink: none;
	text-align: left;
	color: #000020;
}
.classes-banner .classes-text h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
  margin-bottom: 4px;
}
.classes-banner .classes-text p {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.icon-wrapper {
	display: flex;
	align-items: center;
	gap: 64px;
}

.icon-inline {
	display: flex;
	align-items: center;
	gap: 8px;
}
.icon-inline svg {
  height: 20px;
  width: 20px;
}

.icon-inline p{
	font-family: 'Asap', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	color: #000020;
}

.icon-inline.classes-time svg {
  height: 16px;
  width: 16px;
}

.countdown-container {
  background-color: #000049;
  padding: 16px 0px;
  text-align: center;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown-container h2 {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  margin: 0px;
}
.countdown-container strong {
  font-size: 16px;
  font-weight: 600;
}
.countdown-container-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.countdown-timer {
  display: flex;
  align-items: center;
  /* gap: 16px; */
}
.countdown-timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  position: relative;
}
.countdown-timer-item::after {
  content: ":";
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  right: 0px;
  top: 0px;
}
.countdown-timer-item:last-child::after {
  display: none;
}
.countdown-timer-item-value {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.countdown-timer-item-label {
  font-size: 12px;
  margin-top: 4px;
}
.countdown-timer span {
  color: #fff;
}

@media(max-width: 1180px) {
  .countdown-background  {
    width: 120%;
  }
}

@media (max-width: 991px) {
  footer {
    padding-bottom: 216px;
  }
  .classes-banner .classes-text p{
		font-size: 14px;
    max-width: 264px;
    margin: 0px auto;
    line-height: 18px;
	}
  .classes-banner .classes-text h3 {
    font-size: 18px;
    line-height: 22px;
    max-width: 276px;
    margin: 0px auto;
    margin-bottom: 4px;
  }
  .icon-inline p{
    font-size: 14px;
    line-height: 18px;
    text-wrap: nowrap;
  }
  .icon-wrapper {
  	gap: 16px;
  }
	.classes-banner .custom-container{
		flex-direction: column;
		gap: 20px;
	}  
	.classes-banner .classes-text {
		text-align: center;
	}
  .hero .slider-image {
    display: none;
  }
  .hero .slider-image.mobile {
    display: block;
  }
  .plans-mobile {
    display: flex;
    flex-direction: column;
  }
  header {
    z-index: 9;
  }
  header .text-btn {
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
    justify-content: start;
  }
  .hero h1 {
    font-size: 28px;
    max-width: 416px;
  }
  .hero .hero-img {
    margin-top: 40px;
    margin-right: auto;
  }
  .your-change .metrics-card img {
    height: 64px;
    width: auto;
  }
  .your-change h2 {
    font-size: 24px;
  }
  .your-change .text-sm {
    margin-bottom: 48px;
  }
  .your-change .btn {
    margin-top: 32px;
  }
  .plans-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .plan-card {
    height: auto;
  }
  .plan-card:last-child {
    margin-top: 64px;
  }
  .plan-header {
    padding: 16px 16px;
  }
  .plan-header .fire-icon {
    position: absolute;
    right: 24px;
    top: -24px;
    width: 48px;
    height: auto;
  }
  .sponsors {
    padding-bottom: 48px;
  }
  .sponsors h2 {
    font-size: 24px;
  }
  .sponsors .tier-container img {
    height: 48px;
    opacity: 1;
  }
  .sponsors .tier-container .row {
    margin: 0px -15px;
  }
  .sponsors .tier-container .row .col-lg-3 {
    padding: 0px 15px;
  }
  .reserve-your-ticket {
    padding-bottom: 56px;
  }
  .reserve-your-ticket .vip {
    margin-bottom: 120px;
  }
  .reserve-your-ticket .passaport {
    margin-bottom: 120px;
  }
  .reserve-your-ticket h2 {
    font-size: 28px;
  }
  .reserve-your-ticket .plans-desktop {
    display: none;
  }
  .reserve-your-ticket .benefits-row .plan-benefits-body {
    justify-content: space-between;
    padding: 8px 16px;
    text-align: left;
  }
  .event-place {
    padding-top: 64px;
  }
  .event-place h2 {
    font-size: 28px;
  }
  .event-place .btn {
    margin-bottom: 40px;
  }
  .event-place .event-place-image-container .diagonal-arrow {
    width: 64px;
    top: -12px;
    right: -12px;
  }
  .event-place .event-place-image-container .address-container {
    right: 0px;
    left: auto;
    bottom: 0px;
    transform: translateY(30%);
  }
  .event-place .event-place-image-container { 
    margin-right: auto;
  }
  .faq .subtitle{
    margin-bottom: 40px;
  }
  .faq {
    padding-top: 64px;
  }
  .faq h2 {
    font-size: 24px;
  }
  .card-header {
    padding: 12px 0px;
  }
  .card-header button {
    text-align: left;
    line-height: 120%;
  }
  .card-body {
    padding: 0px 16px 24px 16px;
    font-size: 14px;
  }
  footer .summit-social-medias-container {
    flex-direction: column-reverse;
    padding-bottom: 32px;
  }
  footer .summit-social-medias-container a.footer-logo {
    margin-top: 16px;
  }
  footer .all-rights-reserved {
    flex-direction: column-reverse;
    text-align: center;
  }
  footer .all-rights-reserved img {
    margin-bottom: 16px;
  }
  .countdown-container {
    height: auto;
  }
  .countdown-container-content {
    flex-direction: column;
    gap: 16px;
  }
  .countdown-timer {
    margin-bottom: 16px;
  }
  .countdown-timer-item {
    width: 80px;
  }
  .countdown-timer-item::after {
    font-size: 16px;
  }
  .countdown-timer-item-value {
    font-size: 20px;
  }
  .countdown-timer-item-label {
    font-size: 10px;
  }
  .countdown-container h2 {
    font-size: 14px;
  }
  .countdown-container strong {
    font-size: 14px;
  }
  .countdown-container-content {
    gap: 8px;
  }
  .countdown-container a {
    width: 100%;
  }
}