:root{
  --mc-red:#c4161c;
  --mc-black:#000000;
  --mc-dark:#101010;
  --mc-grey:#2f2f2f;
  --mc-mid:#3a3a3a;
  --mc-hover:#8f8f8f;
  --mc-white:#ffffff;
  --mc-radius:18px;

  --mc-card-border: rgba(0,0,0,.45);
  --mc-card-border-hover: rgba(0,0,0,.65);
  --mc-icon-hover: #3a3a3a;
}

/* Selection highlight: force LIGHT GREY (no green) */
::selection{ background:#d9d9d9; color:#000; }
::-moz-selection{ background:#d9d9d9; color:#000; }

/* Base typography */
html, body{
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  color:#111;
}
.mc-body{
  font-size:16px !important;
  line-height:1.75 !important;
  font-weight:400 !important;
}
.mc-body-lg{
  font-size:16px !important;
  line-height:1.75 !important;
  font-weight:400 !important;
}
h1,h2,h3,h4,h5{
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight:700;
}

/* Universal rounded corners */
.mc-rounded,
.form-control,
.panel,
.service-block,
.sb-border,
.icon-wrapper,
.btn,
img{
  border-radius: var(--mc-radius) !important;
}

/* Sections */
.mc-section{ padding:70px 0; }
.mc-section-light{ background:#fff; color:#111; }
.mc-section-dark{ background:var(--mc-grey); color:#fff; }
.mc-section-dark p,
.mc-section-dark li{ color:#fff; }

/* Dark section headings MUST be white */
.mc-title-dark,
.mc-title-dark span,
.mc-section-dark .heading-single,
.mc-section-dark .heading-single span{
  color:#fff !important;
}
.mc-h3-dark{ color:#fff !important; }

/* Links (no theme green) */
a,
a:visited{ color: var(--mc-red) !important; }
a:hover{ color: var(--mc-hover) !important; }

.fa,
.fa-li{ color: inherit; }

/* Top contact icons + links red */
.mc-top-contact .fa-li{ color: var(--mc-red) !important; }
.mc-top-contact a{ color: var(--mc-red) !important; }
.mc-top-contact a:hover{ color: var(--mc-hover) !important; }

/* NAV: full black background + centered menu */
.mc-nav-black,
.mc-nav-black *{
  background:#000 !important;
  background-image:none !important;
}
.header-bottom:before,
.header-bottom:after,
.main-navigation:before,
.main-navigation:after{
  display:none !important;
  content:none !important;
}

.mc-nav-center{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100%;
}

/* NAV ACTIVE TABS – SQUARE + TOUCHING (final) */
#main-menu{
  display:flex !important;
  gap:0 !important;                /* no gaps */
}
#main-menu > li{
  margin:0 !important;
}
#main-menu > li > a{
  color:#fff !important;
  font-weight:600 !important;
  padding:18px 22px !important;
  background: transparent !important;
  border-radius: 0 !important;     /* square corners */
  margin:0 !important;
  transition: background .2s ease, color .2s ease;
}
#main-menu > li.active > a{
  background: #3a3a3a !important;  /* medium grey highlight */
  color: #ffffff !important;
}
#main-menu > li:not(.active) > a:hover{
  background:#2a2a2a !important;
  color:#ffffff !important;
}
#main-menu > li.active > a:hover{
  background:#3a3a3a !important;
  color:#ffffff !important;
}

/* Buttons: red bg + WHITE text always */
.btn.btn-primary,
.btn-primary,
.mc-btn{
  background: var(--mc-red) !important;
  border-color: var(--mc-red) !important;
  color:#fff !important;
  font-weight:700 !important;
}
.btn.btn-primary:hover,
.btn-primary:hover,
.mc-btn:hover{
  background:#9f0f14 !important;
  border-color:#9f0f14 !important;
  color:#fff !important;
}

/* Ensure footer button text is white */
.mc-footer-btn,
.mc-footer-btn *{ color:#fff !important; }

/* Cards/blocks borders (neutral) */
.service-block.sb-border,
.sb-border{
  border-color: rgba(0,0,0,.18) !important;
}
.mc-section-dark .service-block.sb-border,
.mc-section-dark .sb-border{
  border-color: rgba(255,255,255,.18) !important;
}

/* ICON wrappers neutral */
.icon-wrapper{
  border: 1px solid rgba(0,0,0,.15) !important;
}
.mc-section-dark .icon-wrapper{
  border: 1px solid rgba(255,255,255,.18) !important;
}

/* Slider bullets: kill green */
.tp-bullets .bullet{ background: rgba(255,255,255,.35) !important; }
.tp-bullets .bullet.selected,
.tp-bullets .bullet:hover{ background: var(--mc-red) !important; }

/* Empowerment checklist */
.emp-list li{
  font-size:16px !important;
  line-height:1.75 !important;
  font-weight:600 !important;
}
.emp-list li i{
  color:#fff !important;
  margin-right:8px;
}

/* Soft panel in dark sections */
.mc-panel-soft{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

/* Focus rings: no green */
*:focus,
a:focus,
button:focus,
input:focus,
textarea:focus{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(200,200,200,.25) !important;
}

/* Sticky nav */
#mc-sticky-nav.mc-sticky{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
}
#mc-sticky-nav.mc-sticky .container{
  background: transparent !important;
}

/* Scroll-to-top arrow */
.scrollup{
  background: var(--mc-red) !important;
  border-radius: 999px !important;
  position: fixed !important;
  right: 18px !important;
  bottom: 72px !important;
  width: 46px !important;
  height: 46px !important;
  line-height: 46px !important;
  text-align: center !important;
  color: #fff !important;
  z-index: 9999 !important;
  display: none;
}
.scrollup:hover{ background:#9f0f14 !important; }
.scrollup i{ color:#fff !important; }

/* FOOTER */
.mc-footer{
  background: var(--mc-dark) !important;
  color:#fff !important;
}
.mc-footer *{ color:#fff; }

.mc-footer-main{
  padding: 56px 0 44px !important;
  background: var(--mc-dark) !important;
}

.mc-footer h3{
  color:#fff !important;
  margin-top:0;
}
.mc-footer-links li a{
  color: var(--mc-red) !important;
  text-decoration:none;
}
.mc-footer-links li a:hover{
  color: var(--mc-hover) !important;
}

.mc-footer-contact .fa-li{
  color: var(--mc-red) !important;
}
.mc-footer-contact a{
  color: var(--mc-red) !important;
}
.mc-footer-contact a:hover{
  color: var(--mc-hover) !important;
}

.mc-footer-bottom{
  padding: 16px 0 !important;
  background: #070707 !important;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mc-footer-bottom p{
  color:#d7d7d7 !important;
}

.mc-footer-social-under{
  margin-top: 14px;
}
.mc-footer-social-under a{
  display:inline-block;
  width:38px;
  height:38px;
  line-height:38px;
  text-align:center;
  background: rgba(255,255,255,.08) !important;
  margin-right:8px;
  border-radius: 999px !important;
  transition: background .2s ease;
}
.mc-footer-social-under a:hover{
  background: rgba(255,255,255,.16) !important;
}
.mc-footer-social-under i{
  color:#fff !important;
}

/* Footer services: red dots */
.mc-footer-services li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0 0 8px 0;
}
.mc-footer-services .mc-dot{
  flex:0 0 auto;
  width:6px;
  height:6px;
  border-radius:50%;
  background: var(--mc-red);
  margin-top:8px;
}

/* =========================================================
   INTRO / EMPOWERMENT BOXES — FINAL (NO GREEN)
   ========================================================= */

.mc-section-light .service-block.sb-border,
.mc-section-light .service-block.sb-border.sb-default,
.mc-section-light .sb-border{
  border: 1px solid var(--mc-card-border) !important;
  border-bottom: 1px solid var(--mc-card-border) !important;
  box-shadow: none !important;
  transform: none !important;
}

.mc-section-light .service-block.sb-border:hover,
.mc-section-light .service-block.sb-border.sb-default:hover,
.mc-section-light .sb-border:hover,
.mc-section-light .service-block.sb-border:focus,
.mc-section-light .service-block.sb-border:focus-within{
  border: 1px solid var(--mc-card-border-hover) !important;
  border-bottom: 1px solid var(--mc-card-border-hover) !important;
  box-shadow: none !important;
  transform: none !important;
}

.mc-section-light .service-block .service-block-title,
.mc-section-light .service-block .service-block-title *,
.mc-section-light .service-block h3,
.mc-section-light .service-block h4{
  color: #111 !important;
}

.mc-section-light .service-block .icon-wrapper{
  background: var(--mc-red) !important;
  border-color: var(--mc-red) !important;
}
.mc-section-light .service-block .icon-wrapper i,
.mc-section-light .service-block .icon-wrapper svg{
  color: #fff !important;
  fill: #fff !important;
}
.mc-section-light .service-block:hover .icon-wrapper{
  background: var(--mc-icon-hover) !important;
  border-color: var(--mc-icon-hover) !important;
}

/* MAP SECTION – remove extra vertical spacing */
.mc-map-section{ padding: 0 !important; }
.mc-map-wrap{
  width: 100%;
  margin: 0;
  line-height: 0;
}
.mc-map-wrap iframe{ display:block; }

/* =========================
   SERVICES GRID (your layout)
   ========================= */

#services .row.mc-services-grid{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

#services .mc-service-col{
  float: none !important;
  width: auto !important;
  margin-bottom: 28px;
  display: flex;
}

@media (min-width: 992px){
  #services .mc-service-col{
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) and (min-width: 768px){
  #services .mc-service-col{
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media (max-width: 767px){
  #services .mc-service-col{
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

#services .mc-services-flex{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

#services .mc-service-box{
  width:100%;
  text-align:center;
}

#services .mc-service-box h4{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .25px;
  line-height: 1.15;
  max-width: 92%;
  margin: 0 auto 12px auto;
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
}
@media (max-width: 1199px){
  #services .mc-service-box h4{
    font-size: 15px;
    min-height: 36px;
    max-height: 36px;
  }
}
@media (max-width: 767px){
  #services .mc-service-box h4{
    font-size: 15px;
    min-height: auto;
    max-height: none;
  }
}

#services .mc-service-placeholder{
  height:240px;
  width:100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:var(--mc-radius);
}

#services .mc-training-sub{
  height:240px;
  width:100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:var(--mc-radius);
  padding:18px 14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
#services .mc-training-sub strong{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
#services .mc-training-logos{
  display:flex;
  justify-content:center;
  gap:12px;
}
#services .mc-training-logo{
  width:46%;
  max-width:140px;
  height:64px;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:var(--mc-radius);
}
@media (max-width: 991px){
  #services .mc-services-flex{ justify-content:flex-start; }
}

/* =========================
   PROJECT LIST block
   ========================= */

.mc-project-list{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 22px;
}
.mc-project-item{
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mc-project-item:last-child{ border-bottom: 0; }
.mc-project-item h4{
  color:#fff !important;
  margin:0 0 8px 0;
}
.mc-project-item p{ margin:0; }

/* =========================
   PROJECT GALLERY (5-up)
   ========================= */

.mc-no-transition{ transition:none !important; }

.mc-gallery{
  position: relative;
  background: transparent !important;
  border: none !important;
  padding: 0 52px !important; /* space for arrows */
  box-shadow: none !important;
  overflow: hidden;
}

.mc-gallery-viewport{ overflow: hidden; background: transparent !important; }

.mc-gallery-track{
  display: flex;
  gap: 14px;
  transition: transform .45s ease;
  will-change: transform;
}

.mc-gallery-slide{
  flex: 0 0 calc((100% - (14px * 4)) / 5);
}

.mc-gallery-slide img{
  width: 100%;
  height: 120px;                 /* DESKTOP: keep exactly as-is */
  object-fit: cover;
  display: block;
  border-radius: var(--mc-radius) !important;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.15);
  cursor: zoom-in;
}

/* arrows (thumbnail carousel) */
.mc-gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--mc-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.mc-gallery-arrow:hover{ background:#9f0f14; }
.mc-gallery-prev{ left: 12px; }
.mc-gallery-next{ right: 12px; }
.mc-gallery-arrow i{ color:#fff !important; font-size: 22px; line-height: 1; }

/* ==============================
   MOBILE RESPONSIVE THUMBNAILS
   (fix squashed images on mobile)
   Desktop remains unchanged.
   ============================== */
@media (max-width: 991px){
  .mc-gallery{ padding: 0 54px !important; }
  .mc-gallery-slide{ flex: 0 0 calc((100% - (14px * 2)) / 3); }

  .mc-gallery-slide img{
    height: auto !important;          /* stop fixed height (was 110px) */
    width: 100% !important;
    aspect-ratio: 16 / 9;             /* responsive shape */
    object-fit: cover !important;
  }
}

@media (max-width: 575px){
  .mc-gallery{ padding: 0 52px !important; }
  .mc-gallery-slide{ flex: 0 0 calc((100% - 14px) / 2); }

  .mc-gallery-slide img{
    aspect-ratio: 4 / 3;              /* slightly taller on phones */
  }
}

@media (max-width: 420px){
  .mc-gallery-slide{ flex: 0 0 100%; }

  .mc-gallery-slide img{
    aspect-ratio: 1 / 1;              /* optional: looks great on tiny screens */
  }
}

/* ===============================
   LIGHTBOX (FINAL – KEEP ONLY THIS)
   =============================== */

body.mc-no-scroll{ overflow:hidden; }

.mc-lightbox{
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  display: none !important;
}

.mc-lightbox.is-open{
  display: block !important;
}

.mc-lightbox-backdrop{
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.80) !important;
}

.mc-lightbox-dialog{
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%) !important;

  width: min(75vw, 1100px) !important;
  height: min(75vh, 780px) !important;

  background: rgba(20,20,20,0.85) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px !important;

  overflow: hidden !important;
}

#mcLightboxImg{
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 10px !important;
}

.mc-lightbox-close{
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 44px !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  z-index: 30 !important;
}
.mc-lightbox-close:hover{ background: rgba(255,255,255,0.18) !important; }

.mc-lightbox-arrow{
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  z-index: 25 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mc-lightbox-arrow:hover{ background: rgba(255,255,255,0.18) !important; }

.mc-lightbox-prev{ left: 12px !important; }
.mc-lightbox-next{ right: 12px !important; }

.mc-lightbox-arrow i{
  color:#fff !important;
  font-size: 32px !important;
  line-height: 1 !important;
}

@media (max-width: 575px){
  .mc-lightbox-dialog{
    width: 92vw !important;
    height: 70vh !important;
    padding: 10px !important;
  }
  .mc-lightbox-arrow{
    width: 46px !important;
    height: 46px !important;
  }
  .mc-lightbox-arrow i{ font-size: 28px !important; }
}
#services .mc-service-image{
  height: 240px;
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--mc-radius);
  overflow: hidden;
}

#services .mc-service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ============================
   ABOUT spacing (small + clean)
   ============================ */
.mc-about{
  padding-top: 60px !important;
  margin-top: 0 !important;
}

/* ============================
   REVOLUTION: do NOT force height:auto
   (it breaks the slider render)
   ============================ */
.rev_slider_wrapper,
.fullwidthbanner-container,
.tp-banner-container{
  margin-bottom: 30px !important;   /* controls the gap under slider */
}

/* Safety: if a theme sets overflow/position weirdly */
.rev_slider_wrapper{
  overflow: hidden;
}
/* =========================================================
   MOBILE NAV (SINGLE CLEAN VERSION)
   - Main Menu left
   - Arrow right (down/up)
   - Smooth single black bar
   ========================================================= */
@media (max-width: 767px){

  /* Make nav area solid black and remove theme lines */
  .header-bottom,
  .main-navigation,
  .mc-nav-black{
    background:#000 !important;
  }
  .header-bottom:before,
  .header-bottom:after,
  .main-navigation:before,
  .main-navigation:after{
    display:none !important;
    content:none !important;
  }

  /* The toggle bar */
  #menu-button{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    width:100% !important;
    height:auto !important;
    padding:16px 18px !important;

    position:relative !important;
    background:#000 !important;
    color:#fff !important;

    border:0 !important;
    box-shadow:none !important;
  }

  /* Left label */
  #menu-button::before{
    content:"Main Menu" !important;
    font-size:18px !important;
    font-weight:700 !important;
    color:#fff !important;
  }

  /* Right arrow (down by default) */
  #menu-button::after{
    content:"" !important;
    width:0 !important;
    height:0 !important;
    border-left:7px solid transparent !important;
    border-right:7px solid transparent !important;
    border-top:9px solid var(--mc-red) !important; /* down */
  }

  /* When OPEN (button NOT collapsed) show up arrow */
  #menu-button:not(.collapsed)::after{
    border-top:none !important;
    border-bottom:9px solid var(--mc-red) !important; /* up */
  }

  /* Menu list */
  #main-menu{
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    background:#000 !important;
    gap:0 !important;
  }

  /* CLOSED by default */
  #main-menu.collapsed{
    display:none !important;
  }
  /* OPEN state */
  #main-menu:not(.collapsed){
    display:block !important;
  }

  /* Menu items */
  #main-menu > li{
    display:block !important;
    margin:0 !important;
    border-top:1px solid rgba(255,255,255,.10) !important;
  }
  #main-menu > li > a{
    display:block !important;
    padding:16px 18px !important;
    color:#fff !important;
    background:#000 !important;
    border-radius:0 !important;
    text-align:left !important;
    text-decoration:none !important;
  }
  #main-menu > li > a:hover{
    background:#111 !important;
  }
}
/* =========================================================
   REV SLIDER – DESKTOP SAFE + MOBILE FIXES ONLY
   (does NOT change desktop sizing)
   ========================================================= */

/* Do NOT clip captions/arrows */
.rev_slider_wrapper,
.fullwidthbanner-container,
.tp-banner-container{
  overflow: visible !important;
}

/* Keep arrows visible (desktop + mobile) */
.tp-leftarrow,
.tp-rightarrow{
  z-index: 8 !important;
  opacity: .85 !important;
  display: block !important;
}

/* Captions always above arrows */
.tp-caption,
.tp-parallax-wrap{
  z-index: 20 !important;
}

/* Text readability – true drop shadow (no blocks) */
#rev_slider_1 .tp-caption,
#rev_slider_1 .tp-caption *{
  text-shadow: 0 3px 12px rgba(0,0,0,.75) !important;
}

/* =========================================================
   SLIDE 2 – CENTERED + WIDE SUBTITLE (DESKTOP + MOBILE)
   Requires slide-2 subtitle layer: data-x="center" + class mc-s2-sub
   ========================================================= */

/* Desktop/tablet: wide but centered (no left shift) */
#rev_slider_1 .mc-s2-sub{
  text-align: center !important;
  white-space: normal !important;

  width: 980px !important;                 /* classy wide line on desktop */
  max-width: calc(100vw - 140px) !important; /* leaves room for arrows */
  line-height: 1.15 !important;
}

/* =========================
   MOBILE ONLY FIXES
   ========================= */
@media (max-width: 767px){

  /* Let captions wrap and stay centered */
  #rev_slider_1 .tp-caption{
    white-space: normal !important;
    text-align: center !important;
    max-width: calc(100vw - 70px) !important; /* leave room for arrows */
    line-height: 1.10 !important;
  }

  /* Smaller arrows on mobile so they don't steal space */
  .tp-leftarrow,
  .tp-rightarrow{
    width: 38px !important;
    height: 38px !important;
    opacity: .55 !important;
    display: block !important;
  }

  /* -------------------------------------------------
     SLIDE 1 (MOZCOATS + SUB + BUTTON) – prevent overlap
     ------------------------------------------------- */
  #rev_slider_1 .mc-s1-title{
    font-size: clamp(22px, 7vw, 32px) !important;
    font-weight: 900 !important;
    letter-spacing: .6px !important;
    line-height: 1.05 !important;
  }

  #rev_slider_1 .mc-s1-sub{
    font-size: clamp(12px, 3.8vw, 14px) !important;
    font-weight: 800 !important;
    letter-spacing: .9px !important;
    line-height: 1.12 !important;
    max-width: calc(100vw - 70px) !important;
  }

  #rev_slider_1 .mc-s1-btn .btn{
    font-size: 15px !important;
    padding: 11px 16px !important;
    border-radius: 22px !important;
  }

  /* -------------------------------------------------
     SLIDE 2 – clean stacking + FULL WIDTH subtitle
     ------------------------------------------------- */
  #rev_slider_1 .mc-s2-title{
    font-size: clamp(18px, 6.5vw, 28px) !important;
    font-weight: 900 !important;
    letter-spacing: .8px !important;
    line-height: 1.02 !important;
    max-width: calc(100vw - 70px) !important;
  }

  #rev_slider_1 .mc-s2-sub{
    font-size: clamp(12px, 3.9vw, 14px) !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    line-height: 1.10 !important;

    width: calc(100vw - 40px) !important;     /* near edge-to-edge */
    max-width: calc(100vw - 40px) !important;
    text-align: center !important;
  }

  /* -------------------------------------------------
     SLIDE 3 – keep strong + readable on mobile
     ------------------------------------------------- */
  #rev_slider_1 .mc-s3-title{
    font-size: clamp(20px, 7vw, 30px) !important;
    font-weight: 900 !important;
    letter-spacing: .9px !important;
    line-height: 1.05 !important;
    max-width: calc(100vw - 70px) !important;
  }

  #rev_slider_1 .mc-s3-sub{
    font-size: clamp(12px, 4vw, 14px) !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    line-height: 1.18 !important;
    max-width: calc(100vw - 70px) !important;
  }
}

/* Extra small phones */
@media (max-width: 420px){

  /* tighten slightly more so nothing collides */
  #rev_slider_1 .mc-s1-title{ font-size: 22px !important; }
  #rev_slider_1 .mc-s2-title{ font-size: 18px !important; }
  #rev_slider_1 .mc-s3-title{ font-size: 20px !important; }

  #rev_slider_1 .mc-s1-sub,
  #rev_slider_1 .mc-s2-sub,
  #rev_slider_1 .mc-s3-sub{
    font-size: 12px !important;
    line-height: 1.10 !important;
  }

  #rev_slider_1 .mc-s1-btn .btn{
    font-size: 14px !important;
    padding: 10px 14px !important;
  }
}
/* ==========================================
   SERVICES – MOBILE ONLY: keep desktop 2-line,
   make mobile single clean line
   ========================================== */
@media (max-width: 767px){

  /* Remove desktop flex behaviour on mobile */
  #services .mc-service-box h4{
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
  }

  /* Hide desktop line break on mobile only */
  #services .mc-service-box h4 br{
    display: none !important;
  }

  #services .mc-service-box h4{
    white-space: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;

    font-size: clamp(13px, 4vw, 16px) !important;
    line-height: 1.2 !important;
    text-align: center !important;

    letter-spacing: 0 !important;
    word-spacing: normal !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}
/* ==========================================
   SERVICES – MOBILE: Training Services logos
   Stop top/bottom cropping + keep responsive
   ========================================== */
@media (max-width: 767px){

  /* Let the whole training tile grow if it needs to */
  #services .mc-training-sub{
    height: auto !important;
    min-height: 240px;          /* keeps the card feeling consistent */
    padding: 16px 14px !important;
  }

  /* Give logos more vertical room */
  #services .mc-training-logos{
    align-items: center !important;
    gap: 12px !important;
  }

  /* Logo “box” becomes flexible */
  #services .mc-training-logo{
    height: auto !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  /* If your logos are <img> tags inside the box */
  #services .mc-training-logo img{
    width: 100% !important;
    height: auto !important;
    max-height: 80px !important;     /* key: prevents cropping */
    object-fit: contain !important;  /* show full logo */
    display: block !important;
  }
}
/* =========================================================
   MOZCOATS NEWS FLASH POPUP
   Add to custom-mozcoats.css
========================================================= */

/* Prevent background scroll when popup open */
body.mc-no-scroll{
  overflow: hidden !important;
}

/* Main popup wrapper */
.mc-news-popup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
  padding: 20px;
}

/* Active state */
.mc-news-popup.active{
  opacity: 1;
  visibility: visible;
}

/* Dark background overlay */
.mc-news-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
}

/* Popup box */
.mc-news-modal{
  position: relative;
  width: 75vw;
  max-width: 1200px;
  height: 75vh;
  max-height: 900px;
  background: linear-gradient(180deg, #111111 0%, #1c1c1c 100%);
  border: 2px solid rgba(196,22,28,0.65);
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Close X button */
.mc-news-close{
  position: absolute;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 34px;
  font-weight: 300;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: all .25s ease;
}

.mc-news-close:hover{
  background: var(--mc-red);
  color: #ffffff;
}

/* Content wrapper */
.mc-news-content{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 42px 30px;
}

/* Main title */
.mc-news-title{
  color: #ffffff !important;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 10px 0;
  padding-right: 60px;
}

/* Subtitle */
.mc-news-sub{
  color: var(--mc-red) !important;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 18px;
}

/* Scrollable text body */
.mc-news-body{
  flex: 1;
  overflow-y: auto;
  padding-right: 14px;
  margin-bottom: 24px;
}

/* Body text */
.mc-news-body p{
  color: #f1f1f1 !important;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Scrollbar styling */
.mc-news-body::-webkit-scrollbar{
  width: 10px;
}
.mc-news-body::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.mc-news-body::-webkit-scrollbar-thumb{
  background: var(--mc-red);
  border-radius: 10px;
}

/* Footer */
.mc-news-footer{
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Footer close button */
.mc-news-footer .btn{
  min-width: 180px;
  font-size: 18px;
  padding: 14px 26px;
  border-radius: 999px !important;
  font-weight: 700;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px){

  .mc-news-modal{
    width: 88vw;
    height: 82vh;
  }

  .mc-news-content{
    padding: 32px 26px 24px;
  }

  .mc-news-title{
    padding-right: 52px;
  }

  .mc-news-body p{
    line-height: 1.75;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px){

  .mc-news-popup{
    padding: 10px;
  }

  .mc-news-modal{
    width: 96vw;
    height: 88vh;
    border-radius: 16px;
  }

  .mc-news-content{
    padding: 24px 18px 20px;
  }

  .mc-news-close{
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    line-height: 42px;
  }

  .mc-news-title{
    font-size: 24px;
    padding-right: 44px;
    margin-bottom: 8px;
  }

  .mc-news-sub{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .mc-news-body{
    padding-right: 8px;
  }

  .mc-news-body p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .mc-news-footer .btn{
    width: 100%;
    min-width: unset;
    font-size: 16px;
    padding: 12px 18px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 420px){

  .mc-news-modal{
    height: 90vh;
  }

  .mc-news-title{
    font-size: 21px;
  }

  .mc-news-sub{
    font-size: 14px;
  }

  .mc-news-body p{
    font-size: 13.5px;
  }
}
