
/* ==========================================================================
   1. IMPORTS & GLOBAL RESET
   ========================================================================== */
/* Import Montserrat, Roboto & Roboto Condensed from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  position: relative;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0 !important;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #000;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
  line-height: 1.32;
}

ul,
ul li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

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

a {
  color: #00113f;
  text-decoration: none !important;
  display: inline-block;
}

form a { color: #00113f; }

.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1,
.fHeading .fModuleTitle h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}

h1 { font-size: 1.5rem; }

.fHeading .fModuleTitle {
  text-align: center;
  margin-bottom: 20px;
}

.fHeading .fModuleTitle h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.fModule {
  margin: 1rem 0;
  padding: 1rem 0;
}

header .fModule,
footer .fModule { margin: 0; }

.fTable.f-table tr.heading th {
  background-color: #000;
  color: #fff;
}

header {
  background: #fff;
  color: #fff;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: none;
  transition: 0.6s all ease;
}

.path-home- header {
  background: transparent;
  transition: 0.6s all ease;
}

.f-scrolled header {
  background: #fff;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 1);
}

header .wrap {
  max-width: 100%;
  width: 100%;
  position: relative;
  display: flex;                 /* logo + menu side by side */
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.region-header.row { align-items: center; }

header h1 { font-size: 1.5rem; }

footer {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  color: #f58220;
  text-align: center;
  font-size: 0.875rem;
}

footer p,
footer h3,
footer a { color: #fff !important; }

footer .fHeading .fModuleTitle h3 { font-size: 1.75rem; }
footer .fHeading .fModuleTitle h3::after { background: #fff; }

footer p {
  font-weight: normal;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 15px;
}

footer img {
  filter: brightness(0) invert(1);
  max-height: 22px;
}

footer nav ul {
  display: block;
  text-align: left;
}

/* ==========================================================================
   5. NAVIGATION (Desktop)
   ========================================================================== */
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;                /* tighter spacing */
  text-align: right;
  flex-wrap: nowrap;          /* prevent wrapping */
}

nav ul li { list-style: none; }

nav ul li a {
  color: #fff;
  padding: 0 8px;             /* reduced horizontal padding */
  transition: color 0.3s ease;
  white-space: nowrap;        /* keep single line */
}

/* Primary menu links */
.main-menu a {
  font-family: "Roboto Condensed", sans-serif; /* fixed family name */
  font-weight: 700;           /* lighter than 900 to reduce width */
  font-size: 1rem;            /* was 1.1rem */
  text-transform: capitalize;
  letter-spacing: -0.2px;
  color: #6a752a;
  position: relative;
}

.main-menu a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #e5030b;
  transition: width 0.6s ease;
}

.main-menu a:hover { color: #e5030b; }
.main-menu a:hover::before { width: 100%; }

/* Submenu (dropdown) */
.main-menu .fMenu li { position: relative; }

.main-menu .fMenu ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  padding: 0;
  text-align: left;
  display: none;
  background: #fff;                          /* WHITE submenu */
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.main-menu .fMenu li:hover > ul { display: block; }

.main-menu .fMenu ul li { margin: 0; }

.main-menu .fMenu ul li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #000;
  white-space: nowrap;
}

.main-menu .fMenu ul li a:hover {
  background: #f7f7f7;
  color: #e5030b;
}

/* ==========================================================================
   7. FORM ELEMENTS
   ========================================================================== */
.fForm label {
  display: block;
  width: 100%;
  margin: 0.625rem 0 0;
  font-weight: normal;
  color: #000;
}

.fForm input[type="text"],
.fForm input[type="email"],
.fForm input[type="password"],
.fForm textarea,
.fForm select,
.fForm .form-item .date {
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 0 0.9375rem;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.3s ease;
}

.fForm input[type="text"]:hover,
.fForm input[type="email"]:hover,
.fForm input[type="password"]:hover,
.fForm textarea:hover,
.fForm input[type="text"]:focus,
.fForm input[type="email"]:focus,
.fForm input[type="password"]:focus,
.fForm textarea:focus { border-color: #92def5; }

.fForm .buttons { clear: both; padding-left: 0; }

.fForm .buttons input,
a.fButton,
a.fButton2,
.fForm input[type='submit'] {
  display: inline-block;
  margin: 0.75rem 0.625rem 0 0;
  padding: 0.875rem 0.8125rem;
  min-width: 200px;
  min-height: 42px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #f58220;
  border: 2px solid #00113f;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fForm .buttons input:hover,
a.fButton:hover,
.fbutton-btn a:hover,
.fForm input[type="submit"]:hover {
  background: transparent;
  color: #00113f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   8. ICON SET
   ========================================================================== */
.iconset .fMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.iconset .fMenu>li {
  flex: 1 1 280px;
  list-style: none;
  padding: 1rem !important;
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  position: relative;
  text-align: left;
  transition: transform 0.5s ease;
}

.iconset .fMenu>li:hover { transform: translateY(-5px); }

.iconset .fMenu>li>a {
  font-weight: bold;
  color: #000;
  display: block;
}

.iconset img { max-width: 64px; margin-bottom: 0.5rem; }

.iconset .fMenu ul {
  margin: 1rem 0 0 1.375rem !important;
  display: block;
}

.iconset .fMenu ul li {
  margin-bottom: 0.25rem !important;
  list-style: square inside;
  text-align: left;
}

.iconset .fMenu ul a { font-weight: 500; color: #000; }

form.fForm .form-item {
  padding-top: 0;
  padding-bottom: 1rem;
}

form.fForm label {
  width: 100%;
  text-align: left;
  display: block;
  padding-top: 0;
  font-weight: bold;
}

form.fForm fieldset legend,
.path-user-login- form label {
  padding: 0.5rem 0;
  font-size: 1.25rem;
  color: #00113f;
  margin-bottom: 0;
  font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  width: calc(100% - 2px);
  margin: 2px;
  height: 42px;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  box-shadow: inset 0 0 0 transparent;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; /* fixed typos */
}

.fForm .hint,
.fForm .error { margin-left: 0 !important; }

/* ==========================================================================
   9. HIDE & UTILITY OVERRIDES
   ========================================================================== */
.no-title .fPageTitle,
.no-header header,
.no-footer footer,
#nav-up { display: none !important; }

.fLogo img { max-height: 100px; }

.fPageTitle {
  background: #6a752a;
  padding-top: 10.5rem;
  padding-bottom: 2rem;
}

.fPageTitle h1 {
  color: #fff;
  padding-left: 1.5rem;
}

/* ==========================================================================
   CUSTOM
   ========================================================================== */
.bg-grey { background: #dbdbdb; }

.fBanner .fGalleryText {
  position: absolute;
  top: 40%;
  left: 9%;
  transform: translateY(-50%);
  width: 33%;
}

.fBanner .fGalleryText div .fButton { background: #fff; color: #000; }

.fBanner .fGalleryText h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
}

.fBanner .fGalleryText p {
  font-size: 16px;
  color: #fff;
  margin: 10px 0;
}

.banner-wrapper { position: relative; }

.fHeading .fModuleTitle { margin-bottom: 20px; text-align: left; }

.fHeading .fModuleTitle h3 {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  color: #000836;
}

.fHeading .fModuleTitle h3:after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50%; height: 2px;
  background: #000836;
}

footer p, footer h3 { color: #24c0d6; }

.fModule table { width: 100%; }

.fModule table th,
.fModule table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  vertical-align: top;
}

.fModule table th {
  background: #16d6ee;
  color: #000;
}

#fModule-53313 table { margin-bottom: 10px; }

.fCustomList li {
  padding-left: 40px !important;
  margin-bottom: 10px !important;
  position: relative;
}

.fCustomList li:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background-image: url(https://img.icons8.com/material-rounded/24/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  animation: mymove 1s infinite;
}

@keyframes mymove {
  from { left: 0px; }
  to { left: 10px; }
}

.fImgWrap li { margin-bottom: 20px !important; }

.fImgWrap .fGalleryImage {
  display: block;
  width: 220px; height: 220px;
  margin: 0 auto;
}

.fImgWrap .fGalleryImage img {
  object-fit: contain;
  width: 100%; height: 100%;
}

.fImgWrap .fGalleryText { width: 220px; margin: 0 auto; }
.fImgWrap .fGalleryText h3 { font-size: 1.2rem; margin-top: 0.5rem; }

.fForm .user-register-group {
  padding: 0;
  border-top: none;
  margin-top: 20px;
}

.fForm .user-register-group legend { display: none; }
.fForm .user-register-group label { display: flex; align-items: center; }
.fForm .user-register-group .f-table td { padding: 0; }

.fForm fieldset { margin: 0; padding: 0; }

.f-table-invoice { margin-top: 20px; }
.f-table th, .f-table tr.thead td { background: #00113f; }

.discount-code .form-item {
  display: flex;
  align-items: stretch;
  gap: 5px;
  flex-wrap: wrap;
}

.discount-code .form-item>* { flex: 0 0 auto; }
.discount-code .form-item label { width: 100%; }
.discount-code .form-item input[type='text'] { width: 80%; }
.discount-code .form-item input[type='submit'] { width: 18%; margin: 0; }

#f-messages .item {
  padding: .7em 1em;
  background-color: #88d4e8;
  color: #000;
  margin-bottom: .1em;
  font-size: 110%;
  position: fixed;
  z-index: 9999;
  width: 100%;
  text-align: center;
  left: 0; right: 0;
}

/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 480px) {
  body { padding-bottom: 0 !important; }
  .body { padding: 0 0.9375rem; }

  header { background: #000 !important; position: relative; }

  .navbar-toggle-container {
    display: block;
    text-align: right;
    padding: 0.5rem;
  }

  .navbar-toggle {
    border: 1px solid #fff;
    padding: 5px;
  }

  .navbar-toggle span {
    display: block;
    width: 25px; height: 2px;
    background: #fff;
    margin-bottom: 5px;
  }

  .navbar-toggle span:last-child { margin-bottom: 0; }

  .main-menu nav {
    position: fixed;
    top: 50px;
    right: -100%;
    width: 300px;
    background: #000;
    z-index: 9999;
    transition: right 0.4s ease;
  }

  .main-menu nav.show { right: 0; }

  .main-menu nav ul li { border-bottom: 2px dashed #fff; }
  .main-menu nav ul li:last-child { border-bottom: none; }

  .main-menu nav ul { flex-direction: column; gap: 0; }

  .main-menu nav ul li a {
    padding: 0.625rem;
    text-align: right;
  }

  .main-menu a { font-size: 0.8rem; color: #fff; }

  .fBanner .fGalleryText { width: 92%; top: 35%; }
  .fBanner .fGalleryText h3 { font-size: 19px; }

  .banner-wrapper .fTimer {
    position: relative !important;
    left: auto !important;
    transform: translateY(0%) !important;
    top: auto !important;
    padding: 1rem !important;
  }

  .fTimer .row {
    gap: 11px !important;
    justify-content: space-between;
    display: flex;
    margin: 0;
  }

  footer { position: relative; }

  html { height: auto; min-height: auto; }
  body { overflow-x: hidden; }

  header .fModule {
    padding: 1rem 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .fModule { margin: 1rem 0; padding: 1rem 0; }

  .main-menu .navbar-toggle { display: inline-block; }

  .main-menu .navbar-toggle span {
    display: block;
    width: 30px; height: 2px;
    background: #fff;
    margin-bottom: 5px;
    transform: rotate(0);
    transition: 0.6s all;
  }

  .main-menu .navbar-toggle span:last-child { margin-bottom: 0; }

  .main-menu .navbar-toggle-container { text-align: right; }

  .main-menu nav {
    position: absolute;
    background: #fff;
    width: 300px;
    right: 0;
    top: 100%;
    z-index: 99999999999;
    -webkit-box-shadow: 0px 0px 18px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 18px -10px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 18px -10px rgba(0, 0, 0, 0.75);
    display: none !important;
  }

  .main-menu nav.active { display: block !important; }

  .main-menu li { display: block; text-align: right; padding-bottom: 8px !important; }

  .main-menu .fMenu { display: block; padding: 0; }

  .main-menu .fMenu>li>a { line-height: 20px; }

  .main-menu .fMenu a { color: #000; }

  .iconset nav { display: block !important; }
  .iconset ul { padding: 0; }

  .fForm .buttons { padding-left: 15px !important; }

  .discount-code .form-item input[type="text"] { width: 100%; }
  .discount-code .form-item input[type="submit"] { width: auto; }

  .bx-wrapper { margin: 0 !important; }

  #fContent>.row { margin: 0; }
  .path-home- #fMatter { padding: 0; }

  .fPageTitle { padding-top: 1rem; padding-bottom: 1rem; }

  .user-inner-profile-page .f-list-item-content span { width: 100%; }
}

/* ==========================================================================
   SESSION / MISC
   ========================================================================== */
.abstract-guidelines ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin: 0 0 1rem 1.5em !important;
  padding: 0 !important;
}

.abstract-guidelines ul li { margin-bottom: 0.5em; }

.user-inner-profile-page .f-content-item-teaser-image {
  width: 150px; height: 150px; margin: 20px 0;
}
.user-inner-profile-page .f-content-item-teaser-image img {
  object-fit: contain; width: 100%; height: 100%;
}
.user-inner-profile-page .f-list-item-content {
  display: flex; align-items: center; gap: 1%; flex-wrap: wrap;
}
.user-inner-profile-page .f-list-item-content span {
  display: block; flex: 0 0 auto; width: 31%; margin: 10px 0;
}
.user-inner-profile-page .f-list-item-content span#f-list-node-33364 { width: 100%; }

.fModule .session-container { page-break-after: always; margin-bottom: 3rem; overflow: auto; }
.fModule .session-container:last-child { page-break-after: auto; }
.fModule .session-container table { border-collapse: collapse; }
.fModule .session-time { text-align: center; }
.fModule .session-container td, .fModule .session-container th { padding: 0.5rem; transition: all 0.5s; }
.fModule .session-container th { background: #333; color: #fff; font-weight: bold; }
.fModule .session-item { border-bottom: 1px dashed #ccc; background: #fff; flex-grow: 1; }
.fModule td.session-time { width: 140px; }
.fModule .session-item-status-2.session-item-sender-0 { background: #fce4d6 !important; text-align: center; } 
.fModule .session-time.session-item-status-2.session-item-sender-0 { text-align: left; }
.fModule .session-time-date { display: none; }
.fModule .session-time-start, .session-time-end { position: relative; display: inline; }
.fModule .session-time-end::before { content: "-"; display: inline-block; }
.fModule .session-container td.session-details { padding: 0; }
.fModule .session-details-row { text-align: left; }
.fModule .session-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0 none; }
.fModule .session-item-container { padding: 0.5rem 1rem; justify-content: space-between; display: flex; position: relative; }
.fModule .session-item-container .f-list-item-node { align-self: center; }
.fModule .session-item-status-2.session-item-sender-0 .f-list-item-node { width: 100%; }
.fModule .session-title, .fModule .session-time-start { font-weight: bold; position: relative; }
.f-button-success { background: #6a752a; }
.fModule .session-details .f-button { padding: 0.15rem 0.5rem; height: 31px; }
.session-full  { margin: 20px 0; }
.session-full .session-time-date { display: inline-block; }
.session-full .session-time-start, .session-full .session-time-end { position: relative; }
.session-full .session-time-start::before { content: "("; display: inline-block; }
.session-full .session-time-end::after { content: ")"; display: inline-block; }
.session-full .session-time-end::before { content: "-"; display: inline-block; }
.session-action { padding-top: 1.5rem; padding-bottom: 1.5rem; text-align: center; }
.f-button-danger { background: #cc0000; }
.session-item-container .session-title a { color: #000 !important; font-size: 20px; }
.fModule .session-item-status-1 { opacity: 1; background: #c6e0b4; }
.session-item-status-2.session-item-sender-683922 { background: #ffff00 !important; }
.session-intro { font-size: 0.8rem; }

/* Submenu text color (desktop) */
.main-menu .fMenu > li > ul > li > a {
  color: #6a752a !important;
}

/* Hover/active states for submenu links */
.main-menu .fMenu > li > ul > li > a:hover,
.main-menu .fMenu > li > ul > li > a:focus {
  color: #e5030b !important;
  background: #f7f7f7;
}

/* Mobile submenu text color */
@media (max-width: 480px) {
  .main-menu .fMenu > li > ul > li > a,
  .main-menu .fMenu a {
    color: #6a752a !important;
  }
}