/* ==========================================================================
   1. IMPORTS & GLOBAL RESET
   ========================================================================== */
/* Import Montserrat, Roboto & Roboto Condensed from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto: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;
  /* padding-bottom: 30rem !important; */
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #000;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
   p {
    font-family: "Roboto", 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: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: 0.1rem;
}
h1 {
  font-size: 1.5rem; /* 24px */
}
.fHeading .fModuleTitle {
  text-align: center;
  margin-bottom: 20px;
}
.fHeading .fModuleTitle h3 {
  font-size: 1.8rem; /* 40px */
  font-weight: 700;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.fModule {
  margin: 1rem 0;
  padding: 0.01rem 0;
}
header .fModule,
footer .fModule {
  margin: 0;
}
.region-header.row {
  align-items: center;
  justify-content: space-between; /* Added */
}

/* Added rules to reorder flex items */
.region-header .main-menu {
    order: 2;
}
.region-header .fLogo {
    order: 0;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 26px -15px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 26px -15px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 26px -15px rgba(0, 0, 0, 1);
  z-index: 9999;
}
header h1 {
  font-size: 1.5rem;
}
footer {
  padding: 2rem 0;
  background: #00609d;
  color: #fff;
  border-top: 1px solid #fff;
}
.fFooterContent img {
    max-height: 20px;
}
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;
}
footer img {
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}
footer nav ul {
  display: block;
  text-align: left;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem; /* 10px */
  text-align: right;
}
nav ul li a {
  color: #fff;
  padding: 5px;
  transition: color 0.3s ease;
}
.main-menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem; /* 15px */
  text-transform: capitalize;
  color: #333333;
  position: relative;
}
.main-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, #1ebbf0 30%, #39dfaa 100%);
  transition: width 0.6s ease;
}
.main-menu a:hover {
  color: #333333;
}
.main-menu a:hover::before {
  width: 100%;
}
.main-menu .fMenu li{
    position: relative;
}
.main-menu .fMenu ul {
    position: absolute;
    top: 100%;
    width: 250px;
    background: #24c0d6;
    left: 0;
    padding: 0;
    text-align: left;
}
.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;
}
/* ==========================================================================
   7. FORM ELEMENTS
   ========================================================================== */
.fForm label {
  display: block;
  width: 100%;
  margin: 0.625rem 0 0; /* 10px 0 0 */
  font-weight: normal;
  color: #000;
}

.fForm input[type="text"],
.fForm input[type="email"],
.fForm input[type="password"],
.fForm textarea,
.fForm select,
.fForm .date {
  width: 100%;
  max-width: 99%;
  height: 42px;
  padding: 0 0.9375rem; /* 15px */
  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: #a38656;
  border: 2px solid #a38656;
  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: #00609d;
  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: #333;
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.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: #00609d;
  padding: 1rem 0;
  text-align: center;
}
.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 #000836;
  padding: 0.5rem;
  vertical-align: middle;
}
.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;}
}
.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%;
  padding: ;
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
}
/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 480px) {
  body {
    padding-bottom: 0 !important;
  }
  .body {
    padding: 0 0.9375rem; /* 15px */
  }
  header {
    background: #000 !important;
    position: relative;
  }
  .navbar-toggle-container {
    display: block;
    text-align: right;
    padding: 0.5rem; /* 8px */
  }
  .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;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
  }
  nav ul li a {
    padding: 0.625rem; /* 10px */
    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;
    top: 65% !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;
  }
}

.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;
}
#form-item-field_id_33291 > label[for="field_id_33291"] {
  display: none;
}

/* 2) Ensure the “Consent” heading (field_id_33292) stays visible */
#form-item-field_id_33292 {
  display: block !important;
}

/* 3) Remove any indent on the options container */
#form-item-field_id_33291 .form-item-option.checkbox {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* 4) Lay out each option as a flex row */
#form-item-field_id_33291 .form-item-option.checkbox label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;       /* space between box and text */
  margin-bottom: 0.5rem !important;
}

/* 5) Kill any float/position on the checkbox itself */
#form-item-field_id_33291 .form-item-option.checkbox label input[type="checkbox"] {
  float: none !important;
  position: static !important;
  margin: 0 !important;
  flex: none !important;
}

/* Force show the Pay button */
.fForm .buttons,
.fForm .buttons .f-button {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.checks {
  height: max-content !important;
}
.intl-tel-input {
  width: 100%;
}
.listing-container {
  margin: 30px 0;
}
.fModuleTitle h3 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 1px solid #000;
}
table .icon-status  {display: none;}
/* =======================================================================
   === HEADER ONE-LINE HARD FIX (APPEND-ONLY; NO OTHER CHANGES) ==========
   ======================================================================= */

/* 1) Ensure the header wrappers are a single flex row */
.fHeader .navbar-header .wrap,
.fHeader .region-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

/* 2) Treat both modules as inline flex items */
.fHeader .region-header > .fModule {
  flex: 0 0 auto !important;
  float: none !important;
  clear: none !important;
}

/* 3) Logo constraints so it can’t push menu to a new line */
.fHeader .region-header .fLogo {
  order: 0 !important;
  margin-right: 12px !important;
}
.fHeader .region-header .fLogo img {
  max-height: 72px !important; /* adjust if you prefer larger */
  width: auto !important;
  height: auto !important;
  display: block !important;
}

/* 4) Menu pushed right and allowed to shrink */
.fHeader .region-header .main-menu,
.fHeader .region-header .f-module-pages-menu {
  order: 2 !important;
  margin-left: auto !important;
  flex: 0 1 auto !important;   /* allow shrink */
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
}

/* 5) Inner <nav> should not be forced to 100% width by theme */
.fHeader .region-header .main-menu nav,
.fHeader .region-header .f-module-pages-menu nav {
  width: auto !important;
  display: block !important;
}

/* 6) Make menu list horizontal and compact */
.fHeader .region-header .main-menu .fMenu,
.fHeader .region-header .f-module-pages-menu .fMenu {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

/* 7) Dropdowns shouldn’t affect header height */
.fHeader .region-header .main-menu .fMenu > li { position: relative !important; }
.fHeader .region-header .main-menu .fMenu > li > ul {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  display: none !important;
  z-index: 10000 !important;
}
.fHeader .region-header .main-menu .fMenu > li:hover > ul { display: block !important; }

/* 8) Kill clearfixes that might insert a break */
.fHeader .region-header::after { content: none !important; }

/* =======================================================================
   Optional: if Bootstrap visibility utilities are hiding desktop nav
   (your markup shows #fMenu-56670), force-show from sm+.
   ======================================================================= */
@media (min-width: 576px) {
  #fMenu-56670 { display: block !important; }
}

  .fForm .form-heading { background:#f2f4f7; color:#00609d; }

/* >>> ADDED: intl-tel-input dropdown must stack above and not be clipped <<< */

/* Make wrapper a positioning context (v11 usually uses .intl-tel-input; some builds .iti) */
.intl-tel-input, .iti { position: relative !important; }

/* Put the dropdown above everything else */    
.intl-tel-input .country-list,
.iti .iti__country-list { z-index: 100000 !important; }

/* Ensure common ancestors don’t clip the dropdown */
.fModuleContent,
.f-module-content,
.fRegion,
.fForm,
.form-item,
.row,
.container { overflow: visible !important; }

/* Guard against accidental stacking contexts created by transforms */
.fModuleContent,
.form-item { transform: none !important; }

/* <<< ADDED END */
