/* Minification failed. Returning unminified contents.
(179,72): run-time error CSS1030: Expected identifier, found '.'
(179,93): run-time error CSS1031: Expected selector, found ')'
(179,93): run-time error CSS1025: Expected comma or open brace, found ')'
 */
.summernoteRenderWrap img,
.note-editable img {
  height: auto !important;
  max-width: 100% !important;
}
.summernoteOriginalAddOn {
  padding-top: 10px;
  z-index: 7;
}
@media (min-width: 1024.1px) {
  .note-video-clip {
    max-width: 750px !important;
  }
}
@media (max-width: 1024px) and (min-width: 800.1px) {
  .note-video-clip {
    max-width: 517.325px !important;
    max-height: 290.995px !important;
  }
}
@media (max-width: 800px) and (min-width: 768px) {
  .note-video-clip {
    max-width: 368px !important;
    max-height: 207px !important;
  }
}
@media (max-width: 767.98px) and (min-width: 400px) {
  .note-video-clip {
    max-width: 354.4px;
    max-height: 199.35px;
  }
}
@media (max-width: 399.98px) and (min-width: 330px) {
  .note-video-clip {
    max-width: 315.2px;
    max-height: 177.3px;
  }
}
@media (max-width: 329.98px) {
  .note-video-clip {
    max-width: 260px;
    max-height: 146.25px;
  }
}
.note-editable div,
.note-editable span,
.note-editable p,
.note-editable h1,
.note-editable h3,
.note-editable h4,
.note-editable h5,
.note-editable h5,
.note-editable tr,
.note-editable tbody,
.note-editable h2 {
  max-width: 100% !important;
}
.summernoteRenderWrap div,
.summernoteRenderWrap span,
.summernoteRenderWrap tr,
.summernoteRenderWrap tbody,
.summernoteRenderWrap p,
.summernoteRenderWrap h1,
.summernoteRenderWrap h3,
.summernoteRenderWrap h4,
.summernoteRenderWrap h5,
.summernoteRenderWrap h5,
.summernoteRenderWrap h2 {
  max-width: 100% !important;
}
@media (max-width: 767.98px) {
  .summernoteRenderWrap td,
  .note-editable td {
    max-width: 50px !important;
    overflow: auto;
  }
  .summernoteRenderWrap td span,
  .note-editable td span {
    font-size: 14px !important;
  }
}
.sa-button-container button {
  font-family: Rift !important;
}
.summernoteRenderWrap {
  overflow: hidden;
}
.note-popover > .modal-backdrop {
  display: none !important;
}
.summernoteRenderWrap img.note-float-right {
  margin-left: 10px;
}
.summernoteRenderWrap img.note-float-left {
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .fr-text-uppercase,
  .fr-text-spaced,
  .fr-text {
    white-space: pre-wrap !important;
    /* CSS3 */
    white-space: -moz-pre-wrap !important;
    /* Firefox */
    white-space: -pre-wrap !important;
    /* Opera <7 */
    white-space: -o-pre-wrap !important;
    /* Opera 7 */
    word-wrap: break-word !important;
    /* IE */
  
  }
}
.note-toolbar {
  z-index: 10 !important;
}
/* ----------------------------------------------------------------
   Fix: Some toolbar buttons in summernote 0.9.x inherit text-transform
   styling from ancestor / Bootstrap styles, rendering custom button
   labels in ALL CAPS (e.g. "UTILISER UN MODÈLE" instead of
   "Utiliser un modèle"). Force the natural casing on every Summernote
   button.
   ---------------------------------------------------------------- */

.note-editor .note-toolbar .note-btn,
.note-editor .note-toolbar .note-btn-group .note-btn,
.note-editor .note-popover .note-btn,
.note-editor .note-popover .note-btn-group .note-btn,
.note-editor .note-toolbar .note-btn *,
.note-editor .note-popover .note-btn * {
  text-transform: none !important;
  font-variant: normal !important;
  letter-spacing: normal !important;
}
/* ----------------------------------------------------------------
   Fix: Summernote toolbar dropdowns (font name / size / style /
   paragraph) collapse to icon-only width on some pages, hiding the
   item labels and leaving only the check-mark icons visible.
   Force a usable minimum width and ensure each item displays its
   label on a single line.
   ---------------------------------------------------------------- */

.note-toolbar .note-btn-group .dropdown-menu,
.note-popover .note-btn-group .dropdown-menu {
  min-width: 180px !important;
}
.note-toolbar .note-btn-group .dropdown-menu li,
.note-popover .note-btn-group .dropdown-menu li,
.note-toolbar .note-btn-group .dropdown-menu li > a,
.note-popover .note-btn-group .dropdown-menu li > a {
  white-space: nowrap;
  min-width: 180px;
  padding-right: 12px;
}
/* The font-name dropdown shows each label rendered with its own
   font-family (e.g. style="font-family:'Serif'"). Make sure the
   span itself is allowed to take the space it needs. */

.note-toolbar .note-btn-group .dropdown-menu li > a > span,
.note-popover .note-btn-group .dropdown-menu li > a > span {
  display: inline-block;
  overflow: visible;
}
/* ----------------------------------------------------------------
   Fix: when summernote is re-initialized on the same field (modal
   re-open, partial re-render, etc.) it wraps the existing dropdown
   item structure inside an additional <i class="note-icon-menu-check">
   each time, producing a Russian-doll nesting:
       <i><i><i><a><i><span>Arial</span></i></a></i></i></i>
   Each wrapper renders its own ::before glyph (\f10c), so we end up
   with 3-4 stacked check-marks before each font name.

   Solution: hide the ::before on any .note-icon-menu-check that
   contains another .note-icon-menu-check or an <a> as descendant
   (the wrapper layers). The innermost <i> only contains <span> so
   it does not match the :has() selectors and keeps its glyph.
   ---------------------------------------------------------------- */

.note-toolbar .note-btn-group .dropdown-menu .note-icon-menu-check:has(.note-icon-menu-check)::before,
.note-toolbar .note-btn-group .dropdown-menu .note-icon-menu-check:has(a)::before,
.note-popover .note-btn-group .dropdown-menu .note-icon-menu-check:has(.note-icon-menu-check)::before,
.note-popover .note-btn-group .dropdown-menu .note-icon-menu-check:has(a)::before {
  content: none !important;
}
.dropdown-menu.note-check li a i {
  visibility: visible !important;
  color: black !important;
  cursor: pointer;
}
.dropdown-menu.note-check li a {
  padding: 3px 8px !important;
}
.note-icon-menu-check::before {
  content: none !important;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  src: url(/Content/fonts/Lato-Regular.eot);
  src: url(/Content/fonts/Lato-Regular.eot?#iefix) format('embedded-opentype'), local('MyLato'), url(/Content/fonts/Lato-Regular.woff2) format('woff2'), url(/Content/fonts/Lato-Regular.woff) format('woff'), url(/Content/fonts/Lato-Regular.otf) format("opentype");
}
.summernoteRenderWrap {
  font-family: Lato !important;
}
.summernoteRenderWrap ul,
.summernoteRenderWrap ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.summernoteRenderWrap a {
  text-decoration: underline;
  color: #31afb4;
}
/* ── Search box ── */

.searchBox {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 20px;
  max-width: 460px;
  margin: 0 auto;
  font-size: 15px;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.searchBox:focus {
  border-color: #31afb4;
  box-shadow: 0 0 0 3px rgba(49, 175, 180, 0.12);
  outline: none;
}
/* ── Category header ── */

.categoryNameDiv {
  padding: 28px 0 12px;
  margin-bottom: 14px !important;
  border-bottom: 2px solid #e2f4f5;
}
.categoryName {
  color: #31afb4;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* ── FAQ panels ── */

.panel-group {
  margin-bottom: 8px;
}
.panel-faq {
  padding: 0;
}
.panel-default {
  background: white;
  border: 1px solid #e8f4f5 !important;
  border-left: 4px solid #31afb4 !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
  margin: 0 0 10px !important;
  padding: 0;
  transition: box-shadow 0.2s ease;
}
.panel-default:hover {
  box-shadow: 0 4px 16px rgba(49, 175, 180, 0.12) !important;
}
.panel-default > .panel-heading {
  background: transparent !important;
  border: none;
  padding: 0;
  color: #111827;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-heading:hover {
  color: #31afb4 !important;
}
.panel-title {
  margin: 0;
  font-size: 15px;
  color: inherit;
}
.panel-title a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #111827;
  line-height: 1.5;
}
.panel-title a::after {
  content: 'expand_more';
  font-family: 'Material Icons';
  font-size: 22px;
  color: #31afb4;
  transition: transform 0.22s ease;
  flex-shrink: 0;
  line-height: 1;
}
.panel-title a:not(.collapsed)::after {
  transform: rotate(180deg);
}
.panel-title a:hover {
  color: #31afb4;
}
.panel-body {
  background: #f8fafc;
  border-radius: 0 0 6px 6px;
  border-top: 1px solid #e8f4f5;
  padding: 16px 20px 20px;
  margin: 0 !important;
}
.boxShadow {
  box-shadow: none !important;
  margin: 0 !important;
}

.trusted-by-section {
    width: 100%;
}

.trusted-by-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.trusted-by-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: trustedByScroll 60s linear infinite;
}

.trusted-by-carousel:hover .trusted-by-track {
    animation-play-state: paused;
}

@keyframes trustedByScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.trusted-by-card {
    flex: 0 0 auto;
    width: 240px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.trusted-by-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #31afb4 0%, #5cc9cd 100%);
}

.trusted-by-card:hover {
    box-shadow: 0 10px 28px rgba(49,175,180,0.15);
    transform: translateY(-3px);
    border-color: rgba(49,175,180,0.4);
}

.trusted-by-logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    margin-bottom: 12px;
}

.trusted-by-logo {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
}

.trusted-by-name {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    line-height: 1.35;
    min-height: 82px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.trusted-by-footer {
    padding-top: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trusted-by-disciplines {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    max-height: 48px;
    overflow: hidden;
}

.trusted-by-pill {
    display: inline-block;
    background: rgba(49,175,180,0.12);
    color: #2a9297;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.trusted-by-location {
    font-size: 12px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trusted-by-location i {
    color: #31afb4;
    font-size: 13px;
}

@media (max-width: 640px) {
    .trusted-by-carousel {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
                mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
    }

    .trusted-by-track {
        gap: 14px;
    }

    .trusted-by-card {
        width: 190px;
        padding: 14px 12px;
    }

    .trusted-by-logo-wrapper {
        height: 56px;
        margin-bottom: 8px;
    }

    .trusted-by-logo {
        max-height: 56px;
        max-width: 120px;
    }

    .trusted-by-name {
        font-size: 13px;
        min-height: 72px;
    }

    .trusted-by-pill {
        font-size: 10px;
        padding: 2px 8px;
    }

    .trusted-by-location {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-by-track {
        animation: none;
    }
}

