* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #fff;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading {
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 0.1em #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}
.loading:after, .loading:before {
  position: absolute;
  content: "";
  background-color: #fff;
  top: 2.5rem;
  left: 2.5rem;
  height: 0.5rem;
  transform-origin: left center;
}
.loading:after {
  width: 2rem;
  animation: loading-rotate 2s linear infinite;
}
.loading:before {
  width: 1.5rem;
  animation: loading-rotate 8s linear infinite;
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.back-main {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #1c4b6d 50%, #6cc3d5 100%), url("../img/pattern-2.png");
}
.back-main .back-pattern {
  background-image: url("../img/pattern-3.png");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
}
@media (max-width: 500px) {
  .back-main .back-pattern {
    background-size: contain;
  }
}
.back-main .back-pattern-2 {
  background-image: url("../img/pattern-4.png");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  display: none;
}
@media (max-width: 500px) {
  .back-main .back-pattern-2 {
    display: block;
  }
}

.lang-switch {
  position: fixed;
  top: 20px;
  left: 30px;
  right: auto;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang-switch a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.lang-switch a img {
  width: 20px;
  height: 12px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(60px, 60px);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
  max-height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 585px) {
  .badge {
    margin-bottom: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 495px) {
  .badge {
    padding: 0.5rem 0;
  }
}
.badge .badge-single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.badge .badge-single img {
  width: 100%;
  max-width: 200px;
}
.badge .badge-image {
  height: 70px;
  padding: 0 2rem;
}
@media (max-width: 795px) {
  .badge .badge-image {
    padding: 0 1rem;
  }
}
@media (max-width: 495px) {
  .badge .badge-image {
    height: 90px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 417px) {
  .badge .badge-image {
    height: 85px;
  }
}
@media (max-width: 397px) {
  .badge .badge-image {
    height: 80px;
  }
}
.badge .badge-image img {
  height: 100%;
}
@media (max-width: 795px) {
  .badge .badge-image img {
    height: 75%;
  }
}
@media (max-width: 585px) {
  .badge .badge-image img {
    height: 60%;
  }
}
@media (max-width: 495px) {
  .badge .badge-image img {
    height: 47%;
  }
}

h1 {
  font-size: clamp(1.2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #fdfdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
  line-height: 3.5rem;
}
@media (max-width: 550px) {
  h1 {
    line-height: 2.2rem;
  }
}

.event-type {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(233, 235, 237, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.8rem;
}

.organizers {
  font-size: 1.1rem;
  color: #d5deea;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-align: justify;
  line-height: 2rem;
}

.event-details {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.link-container {
  width: 100%;
  display: flex;
}
@media (max-width: 620px) {
  .link-container {
    flex-direction: column;
  }
}
.link-container .lc {
  width: 100%;
  padding: 0 3%;
  display: flex;
}
.link-container .lc.lc-left {
  justify-content: end;
}
@media (max-width: 620px) {
  .link-container .lc.lc-left {
    justify-content: center;
  }
}
.link-container .lc.lc-right {
  justify-content: start;
}
@media (max-width: 620px) {
  .link-container .lc.lc-right {
    justify-content: center;
  }
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
}

.detail-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.detail-icon i {
  background: linear-gradient(90deg, #6d99b8 20%, #80cad9 100%);
  font-size: 1.5rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.detail-label {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #2c6894;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  animation: fadeInUp 1s ease-out 1s both;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  margin: 0.5rem 1rem;
}
.cta-button:hover {
  box-shadow: 0 0 40px 40px #1c4b6d inset;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@media (max-width: 620px) {
  .scroll-indicator {
    display: none;
    visibility: hidden;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.agenda-section {
  padding: 6rem 1rem;
  position: relative;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #efedf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.125rem;
  color: #d0d8e4;
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}

.timeline-item:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-dot {
  position: absolute;
  left: -0.6rem;
  top: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background: linear-gradient(135deg, #1c4b6d, #6cc3d5);
  border: 3px solid #fdfdfd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
}

.timeline-card {
  background: rgba(42, 58, 83, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(74, 74, 74, 0.3);
}

.time-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(225, 225, 243, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #eee1e1;
  margin-bottom: 1rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.event-description {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
  padding: 0.5rem;
}

.panel-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #1c4b6d;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6cc3d5;
  margin-bottom: 1rem;
}

.duration {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .event-details {
    gap: 1.5rem;
  }
  .timeline {
    padding-left: 1rem;
  }
  .timeline-item {
    padding-left: 2rem;
  }
  .timeline-card {
    padding: 1.5rem;
  }
}
#register {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1200px) {
  #register {
    padding: 0 2rem;
  }
}

.register-container {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
@media (max-width: 600px) {
  .register-container {
    padding: 1rem;
  }
}
@media (max-width: 450px) {
  .register-container {
    padding: 1rem 0.5rem;
  }
}
.register-container .rc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 2rem 0;
  width: 100%;
}
.register-container .rc-grid .rc-card {
  grid-column: span 6;
  padding: 0.5rem 1rem;
  /* For older browsers that may require vendor prefixes */
}
@media (max-width: 700px) {
  .register-container .rc-grid .rc-card {
    grid-column: span 12;
  }
}
.register-container .rc-grid .rc-card select,
.register-container .rc-grid .rc-card input[type=text],
.register-container .rc-grid .rc-card input[type=email] {
  -webkit-appearance: none; /* Remove Safari default */
  -moz-appearance: none; /* For Firefox */
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.register-container .rc-grid .rc-card select option {
  color: #000;
}
.register-container .rc-grid .rc-card input::-moz-placeholder {
  color: #eae7e7; /* Sets the placeholder color to red using a hex code */
}
.register-container .rc-grid .rc-card input::placeholder {
  color: #eae7e7; /* Sets the placeholder color to red using a hex code */
}
.register-container .rc-grid .rc-card input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card input::-moz-placeholder { /* Firefox 19+ */
  color: #eae7e7;
  opacity: 1; /* Ensures full opacity in Firefox, as it defaults to a lower opacity */
}
.register-container .rc-grid .rc-card input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card input::-ms-input-placeholder { /* Microsoft Edge */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card.rc-full {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-container .rc-grid .rc-card.select {
  flex-direction: column;
  align-items: start;
}
.register-container .rc-grid .rc-card.select label {
  text-align: left;
  padding-bottom: 0.5rem;
  color: #e3e2e2;
}
.register-container .rc-grid .rc-card .gd-choice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.register-container .rc-grid .rc-card fieldset {
  border: none;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-container .rc-grid .rc-card fieldset label {
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
  display: block;
}
.register-container .rc-grid .rc-card fieldset label:hover {
  background: #5ca3a0;
}
.register-container .rc-grid .rc-card fieldset input[type=radio] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.register-container .rc-grid .rc-card fieldset input[type=radio]:checked ~ label {
  background: #5ca3a0;
  color: white;
  box-shadow: 0 0.2em 0.45em 0.1em rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  animation: checked 200ms 1;
  border: 1px solid #56b056;
  position: relative;
  z-index: 5;
}

footer {
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 3rem;
}
footer p {
  color: #fff;
  font-size: 0.9rem;
}

#gradient {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  z-index: 999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}
#gradient div.message {
  width: 500px;
  max-width: 90%;
  height: 200px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gradient div.message h5 {
  font-weight: 700;
  color: #1c4b6d;
  font-size: 0.95rem;
  text-align: center;
  line-height: 2rem;
  margin: 0;
  text-shadow: none;
  animation: none;
}
#gradient div.message a {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 10px 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #1c4b6d;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #1c4b6d;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #1c4b6d;
  font-weight: 700;
}
#gradient div.message a:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #1c4b6d;
}
#gradient div.message a:active {
  transform: scale(0.9);
}

#partners {
  padding: 0 0 3rem 0;
  z-index: 9999;
  position: relative;
}
#partners .partners-content {
  background: transparent;
}
#partners .part-main-cont {
  max-width: 1200px;
  margin: 5rem auto;
  text-align: center;
}
#partners .part-main-cont h2 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
}
#partners .part-main-cont .part-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 2rem 0;
}
#partners .part-main-cont .part-main .part-child {
  flex: 0 1 280px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.3);
}
#partners .part-main-cont .part-main .part-child .part-text {
  background: #5ca3a0;
  text-align: center;
  padding: 0.5rem 0;
  color: #d6d5d5;
  font-weight: 500;
}
#partners .part-main-cont .part-main .part-child img {
  max-width: 100%;
  height: auto;
  transition: 0.3s;
}

.main-heading::before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -14px;
  background-color: #3c7aa7;
}
.main-heading::after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 15px;
  left: 50%;
  margin-left: -50px;
  background-color: #3c7aa7;
}/*# sourceMappingURL=style.css.map */