@charset "UTF-8";
/* ===============================
   Vizyoner'25 – Emre Çelebi, destek@databox.com.tr
   =============================== */
/* --------- Reset & Base --------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Space Mono", monospace;
  padding-top: 48px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #00113A;
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  color-scheme: dark;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geom-Regular";
  src: url("../fonts/Geom_Graphic_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* --------- Varriables --------- */
/* --------- Mixins --------- */
/* --------- Utilities --------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 20px;
  }
}

.section-title {
  text-align: center;
  font-family: "Geom-Regular", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin: 0;
  color: #ED8328;
}

.section-lede {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 56rem;
  margin: 10px auto 0;
}

/* --------- Header / Navbar --------- */
.site-header {
  background-color: #041F79;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  border-radius: 20px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 28px;
}

.nav-links {
  display: none;
  gap: 40px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  width: 100%;
  flex-direction: row;
  justify-content: end;
}

.actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: transparent;
}

.burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Desktop nav görünümü */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .burger {
    display: none;
  }
}
/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.nav-drawer[hidden] {
  display: none;
}

.drawer-inner {
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  padding: 16px;
  display: grid;
  gap: 10px;
  width: calc(100% - 44px);
}

.drawer-link {
  display: block;
  padding: 12px;
  border-radius: 12px;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer-cta {
  margin-top: 6px;
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  line-height: 1;
  transition: filter 0.2s ease;
}

.btn-primary {
  background: #ED8328;
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.25);
  margin: 0 20px;
  text-transform: uppercase;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-ghost:hover {
  filter: brightness(1.1);
}

.btn-dark {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
}

/* --------- Hero --------- */
.hero {
  position: relative;
  min-height: 86vh;
  background: url("../images/web_banner_bg.png") center/cover no-repeat;
  padding-top: 30px;
  overflow: hidden;
}
.hero .header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}
.hero .header-bar .logo {
  display: inline-flex;
  align-items: center;
}
.hero .header-bar .logo img {
  height: 60px;
  width: auto;
}
.hero .header-bar .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero .header-bar .nav-list li:last-child a.lang-link::after {
  display: none;
}
.hero .header-bar .nav-list li a.lang-link {
  margin: 5px;
}
.hero .header-bar .nav-list li a.lang-link::after {
  content: "/";
  position: relative;
  left: 5px;
}

.hero-sheet {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  background: radial-gradient(1200px 500px at 65% 15%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 20px;
  min-height: min(86vh, 760px);
  padding-bottom: 18vw;
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-bottom: 0;
  }
}
.hero-copy {
  max-width: 44rem;
}

.hero-copy .hero-card {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 40px;
  text-align: center;
  margin-bottom: 12px;
  display: inline-block;
}
.hero-copy .hero-card h5 {
  font-size: 28px;
  margin: 0;
  font-family: "geom-graphic", sans-serif;
  font-weight: 300;
}
.hero-copy .hero-card p {
  font-size: 23px;
  color: #84B1E3;
  margin: 0;
  font-family: "geom-graphic", sans-serif;
  font-weight: 300;
  margin-top: 10px;
}

.ribbon-img {
  position: absolute;
  right: 0;
  width: min(85vw, 560px);
  filter: drop-shadow(0 16px 60px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .ribbon-img {
    right: 0;
    bottom: 182px;
    width: min(50vw, 820px);
  }
}
/* --------- Stats bar --------- */
.stats-bar {
  background: rgba(255, 122, 0, 0.95);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
}

@media (min-width: 560px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stat {
  text-align: center;
}

.stat .value {
  display: block;
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 300;
  font-size: clamp(65px, 7vw, 72px);
}

.stat .label {
  display: block;
  font-family: "Gilroy-Bold", sans-serif;
  margin-top: 2px;
  font-size: 16px;
  letter-spacing: 0.28em;
}

/* --------- About cards --------- */
.about {
  background-image: url("../images/bg.jpg");
  background-position: bottom center;
  background-size: 100%;
  padding-top: 80px;
  text-align: center;
  font-family: "geom-graphic", sans-serif;
}
.about .media {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.about h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #ED8328;
}
.about p {
  font-size: 16px;
  line-height: 1.3;
  width: 55%;
  font-weight: 300;
  text-align: center;
  margin: 20px auto;
  font-family: "Gilroy-Regular", sans-serif;
  color: rgb(255, 255, 255);
}
.about .world {
  background-image: url("../images/web_banner_bg_2.png");
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0 100px;
  margin-top: -450px;
}
.about .world img {
  position: relative;
  top: 100px;
}
.about .world img.scheme {
  margin-top: 200px;
}
.about .world img.gif {
  width: 40%;
  margin: 200px -40% 0 0;
}

.k-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .k-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.k-card {
  padding: 16px;
}

.k-card h3 {
  margin: 0 0 6px;
  font-family: "Space Mono", monospace;
  font-size: 20px;
}

/* --------- Speakers --------- */
.speakers {
  background: #061338;
  padding: 80px 0;
}

.grid-speakers {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

@media (min-width: 600px) {
  .grid-speakers {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .grid-speakers {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .grid-speakers {
    grid-template-columns: repeat(5, 1fr);
  }
}
.speaker-card {
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease;
}

.speaker-card:hover {
  transform: translateY(-2px);
}

.speaker-photo {
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}

.speaker-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 58, 156, 0.4), transparent 60%);
}

.speaker-meta {
  padding: 15px 0;
}

.speaker-name {
  font-weight: 700;
  line-height: 1.15;
  font-family: "geom-graphic", sans-serif;
  font-weight: 300;
  font-size: 21px;
  width: 50%;
}

.speaker-title {
  color: #507FB7;
  font-size: 0.92rem;
  font-size: 13px;
  font-family: "geom-graphic", sans-serif;
  text-transform: uppercase;
}

/* --------- Program --------- */
.program {
  padding: 44px 0;
  background: linear-gradient(-200deg, rgba(10, 43, 122, 0.2), rgba(0, 46, 197, 0.7607843137)), url("../images/events-bg.png") center/cover no-repeat;
}

.program-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 80%;
  margin: 40px auto;
}

.program-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-row:last-child {
  border-bottom: 0;
}

.program-time {
  font-family: "Geom-Regular", sans-serif;
  color: #ED8328;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 0;
  display: inline-block;
  width: 200px;
}

.program-title {
  font-weight: 600;
  font-family: "Geom-Regular", sans-serif;
}

.program-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.program-speaker {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  font-family: "Geom-Regular", sans-serif;
}

.program-loc {
  font-size: 0.88rem;
  font-family: "Geom-Regular", sans-serif;
}

.program-main {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  text-align: center;
  display: inline-block;
  width: 250px;
  font-family: "Geom-Regular", sans-serif;
}

@media (min-width: 768px) {
  .program-row {
    grid-template-columns: 12rem 1fr auto auto;
    align-items: center;
  }
  .program-speaker, .program-loc {
    justify-self: end;
  }
}
/* --------- Past --------- */
.past {
  padding: 44px 0;
}

.past {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.past .iframe-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.past .iframe-row iframe {
  width: 100%;
  max-width: 480px;
  height: 270px;
  margin: 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .past iframe {
    max-width: 100%;
    height: 220px;
  }
}
.grid-past {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .grid-past {
    grid-template-columns: repeat(4, 1fr);
  }
}
.thumb {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

/* --------- Sponsors --------- */
.sponsors {
  padding: 80px 0;
}
.sponsors h2 {
  margin-bottom: 40px;
}

.sponsor-rail {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0.85;
}

.sponsor-rail img {
  height: 40px;
  filter: brightness(200%);
  margin: 0 20px;
}

@media (max-width: 768px) {
  .sponsor-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
  }
  .sponsor-rail img {
    margin: 0 20px;
  }
}
/* --------- CTA --------- */
.cta {
  position: relative;
  background: url(../images/cta-bbg.png) no-repeat center right #ED8328;
  padding: 60px 0;
  overflow: hidden;
}

.ribbon-end {
  position: absolute;
  right: -80px;
  bottom: -10px;
  width: min(72vw, 520px);
  opacity: 0.7;
  pointer-events: none;
}

.cta-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 1024px) {
  .cta-inner {
    padding-inline: 20px;
  }
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
  }
}
.cta-title {
  margin: 0 0 4px;
  font-family: "Space Mono", monospace;
  font-size: clamp(20px, 5.5vw, 32px);
  font-weight: 700;
}

.cta-lede {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.cta-copy {
  display: flex;
  gap: 20px;
}
.cta-copy .btn {
  padding: 10px 40px;
  border: 1px solid #fff;
  font-weight: 700;
  font-size: 24px;
  font-family: "space mono", monospace;
  text-transform: uppercase;
}

/* --------- Footer --------- */
.site-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  padding: 24px 0;
}

/* --------- Helpers --------- */
.hidden {
  display: none !important;
}

#faq {
  padding: 60px 0;
}

.faq {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 24px 20px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}
@media (min-width: 768px) {
  .faq {
    padding: 28px 28px;
  }
}
.faq__group {
  padding: 16px 0 8px;
}
.faq__group:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}
.faq__heading {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ED8328;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
  outline: none;
}
.faq__item summary:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 8px;
}
.faq__item .faq__q {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
  font-family: "geom-graphic", sans-serif;
}
.faq__item .faq__a {
  padding: 6px 0 20px 44px;
  color: #fff;
  line-height: 1.65;
  font-family: "geom-graphic", sans-serif;
}
.faq__item .faq__a p {
  margin: 0;
}
.faq__item .faq__toggle {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
.faq__item .faq__toggle::before, .faq__item .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.faq__item .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__toggle {
  background: #ED8328;
}
.faq__item[open] .faq__toggle::after {
  opacity: 0;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.modal__dialog {
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  animation: modalIn 0.18s ease-out;
  color: #111;
}
.modal__dialog h3 {
  font-family: "geom-graphic", sans-serif;
  color: #00113A;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.modal__title {
  margin: 0 0 12px;
}
.modal__body {
  display: grid;
  gap: 12px;
}
.modal__body label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-family: "Gilroy-Regular", sans-serif;
}
.modal__body label.labelGdpr {
  display: inline;
  width: 90%;
  position: relative;
  top: -30px;
  left: 30px;
}
.modal__body input {
  padding: 10px 12px;
  border: 1px solid #eee;
  font-size: 14px;
  background-color: transparent;
  color: #111;
}
.modal__body input[type=checkbox] {
  width: 13px;
}
.modal__body .alert-box {
  padding: 12px 18px;
  background: rgba(237, 131, 40, 0.12);
  color: #ED8328;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Gilroy-Regular", sans-serif;
  margin-bottom: 10px;
  border: 1px solid rgba(237, 131, 40, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal__body .alert-box.is-error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff3b3b;
  border-color: rgba(255, 0, 0, 0.18);
}
.modal__body .alert-box.is-success {
  background: rgba(0, 200, 80, 0.1);
  color: #1bbd5c;
  border-color: rgba(0, 200, 80, 0.18);
}
.modal__body .alert-box .alert-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.modal__submit {
  margin-top: 6px;
  padding: 10px 14px;
  border: 0;
  background: #ED8328;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

@keyframes modalIn {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Küçük ekranlarla uyum */
@media (max-width: 480px) {
  .modal__dialog {
    margin-top: 10vh;
    padding: 16px 16px 20px;
  }
}
.fc-footer {
  background: #041F79;
  color: #ffffff;
  position: relative;
  padding: 56px 0 28px;
}
.fc-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fc-footer a:hover {
  color: #ED8328;
}

.fc-container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.fc-top {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1.15fr 1fr;
}
@media (max-width: 900px) {
  .fc-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.fc-left {
  display: grid;
  gap: 18px;
}

.fc-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.fc-logo .fc-word {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.fc-logo .future {
  color: #fff;
}
.fc-logo .campus {
  font-weight: 400;
  color: #ffffff;
}

.fc-contacts p {
  margin: 0 0 6px;
}
.fc-contacts a {
  color: #ffffff;
  border-bottom: 1px dotted rgba(237, 131, 40, 0.45);
}

.fc-social {
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 4px 0 6px;
  list-style: none;
}
.fc-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(4, 31, 121, 0.18);
  color: #ED8328;
}
.fc-social a:hover {
  background: rgba(4, 31, 121, 0.32);
}

.fc-subbrand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.fc-subbrand .word {
  letter-spacing: 0.08em;
  font-weight: 800;
}
.fc-subbrand .ai {
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #000;
  background: #ED8328;
  padding: 4px 8px;
  border-radius: 6px;
}

.fc-map-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(8, 26, 71, 0.6);
}
.fc-map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .fc-map-card iframe {
    height: 220px;
  }
}

.fc-sep {
  border: 0;
  height: 1px;
  margin: 30px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(4, 31, 121, 0.35), transparent);
}

.fc-nav ul,
.fc-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-nav a {
  color: #ED8328;
  font-weight: 600;
}

.fc-legal a {
  color: #ffffff;
  font-size: 14px;
}

.fc-topbtn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(4, 31, 121, 0.45);
  color: #ED8328;
  background: rgba(4, 31, 121, 0.18);
  cursor: pointer;
}

.fc-topbtn:hover {
  background: rgba(4, 31, 121, 0.32);
}

/* MOBILE */
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
  }
  body {
    overflow-x: hidden !important;
  }
  .btn {
    padding: 12px;
  }
  .hero .header-bar .logo img {
    filter: brightness(100);
  }
  .hero-container {
    min-height: min(86vh, 400px);
  }
  .ribbon-img {
    display: none;
  }
  .stat .value {
    font-size: clamp(42px, 7vw, 72px);
  }
  .about {
    background-image: none;
  }
  .about .media {
    width: 100%;
    margin-bottom: 40px;
  }
  .about p {
    width: 100%;
  }
  .about .world {
    background-size: 200%;
  }
  .about .world img.gif {
    width: 100%;
    margin-right: -430px;
  }
  .program-list {
    width: 100%;
  }
  .program-row {
    padding-bottom: 20px;
  }
  .program-time,
  .program-main,
  .program-loc {
    width: 100%;
  }
  .program-main {
    border: 0;
  }
  .program-loc {
    text-align: center;
  }
  .cta {
    background: none;
    background-color: #ED8328;
  }
  .cta .cta25 {
    display: none;
  }
  .past .iframe-row {
    display: block !important;
  }
  .past .iframe-row iframe {
    height: 230px;
    margin-bottom: 20px !important;
  }
}

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