/* =============== HERO: Odraščam =============== */

.hero-odrascam{
  background: #fff;
}

/* outer card/frame */
.hero-frame{
  position: relative;
  border-radius: 28px;
  background: var(--purple-dark);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  overflow: visible; /* allow arrows */
}

/* left content panel */
.hero-content{
  color: #fff;
}

.hero-title{
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: #fff;
}

.hero-title-accent{
  color: var(--blue-soft);
}

.hero-lead{
  max-width: 36rem;
  color: rgba(255,255,255,.88);
  font-size: 1.25rem;
  line-height: 1.6;
}

/* right media panel */
.hero-media{
  position: relative;
}

/* image frame  */
.hero-image-wrap{
  width: 100%;
  max-width: 540px;
  border-radius: 22px;
  /*background: rgba(255,255,255,.12);*/
  padding: 14px;
}

.hero-image{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}


/* decorative blobs  */
.hero-blob{
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  opacity: .95;
}

/* big soft shapes around the card */
.hero-blob--top-left{
  width: 520px; height: 520px;
  left: -260px; top: -260px;
  background: var(--purple-main);
}
.hero-blob--bottom-left{
  width: 640px;
  height: 640px;
  right: -320px;
  top: -380px;
  background: var(--blue-soft);
  opacity: .55;
}
.hero-blob--top-center{
  width: 360px; height: 240px;
  left: 42%; top: -120px;
  transform: translateX(-50%);
  background: var(--purple-main);
  opacity: .75;
  border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
}
.hero-blob--bottom-right{
  width: 520px; height: 520px;
  right: -260px; bottom: -260px;
  background: var(--blue-soft);
  opacity: .85;
}

/* keep card above blobs */
.hero-odrascam .container,
.hero-frame{
  position: relative;
  z-index: 1;
}



/* ==========================
   SUBPAGE HERO: Odraščam
========================== */

.subhero-odrascam{
  background: #fff;
}

/* frame (keeps both halves together) */
.subhero-frame{
  background: var(--purple-dark);
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

/* LEFT panel */
.subhero-left{
  color: #fff;
}

.subhero-kicker{
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}

.subhero-title{
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 0;
}

.subhero-subtitle{
  max-width: 38rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* RIGHT panel */
.subhero-right{
  background: rgba(110, 60, 151, .06); /* soft tint for transition */
  position: relative;
}

/* image blob frame */
.subhero-image-wrap{
  width: 100%;
  max-width: 540px;
  border-radius: 46% 54% 52% 48% / 44% 52% 48% 56%;
  background: rgba(255,255,255,.65);
  padding: 14px;
  position: relative;
  z-index: 2;
}

.subhero-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 46% 54% 52% 48% / 44% 52% 48% 56%;
  object-fit: cover;
}



/* blobs */
.subhero-blob{
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

/* inner blobs */
.subhero-blob--inner-top{
  width: 320px; height: 220px;
  top: 10%;
  left: 55%;
  transform: translateX(-50%);
  background: var(--purple-main);
  opacity: .28;
  border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
}
.subhero-blob--inner-bottom{
  width: 420px; height: 420px;
  bottom: -200px;
  right: -160px;
  background: var(--blue-soft);
  opacity: .35;
}

/* outside blobs */
.subhero-blob--outside-left{
  width: 520px; height: 520px;
  left: -260px; top: 20%;
  background: var(--purple-main);
  opacity: .18;
}
.subhero-blob--outside-top{
  width: 360px; height: 360px;
  right: -180px; top: -180px;
  background: var(--blue-soft);
  opacity: .18;
}


/* subtle calming motion */
@media (prefers-reduced-motion: no-preference){
  .subhero-blob{
    animation: subheroBlobFloat 26s ease-in-out infinite;
    will-change: transform, border-radius;
  }
  .subhero-blob--inner-bottom{
    animation-duration: 32s;
    animation-delay: -10s;
  }
  .subhero-blob--outside-left{
    animation-duration: 34s;
    animation-delay: -14s;
  }
  .subhero-blob--outside-top{
    animation-duration: 30s;
    animation-delay: -6s;
  }

  @keyframes subheroBlobFloat{
    0%,100%{
      transform: translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    50%{
      transform: translate(10px,-8px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
  }

  /* keep translateX(-50%) for inner-top blob */
  .subhero-blob--inner-top{
    animation-name: subheroBlobFloatCentered;
  }
  @keyframes subheroBlobFloatCentered{
    0%,100%{
      transform: translateX(-50%) translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    50%{
      transform: translateX(-50%) translate(10px,-8px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
  }
}

/* responsive: on small screens, hide separator + simplify */
@media (max-width: 991.98px){
  .subhero-separator{ display:none; }
  .subhero-frame{
    border-radius: 22px;
  }
  .subhero-image-wrap{
    max-width: 100%;
  }
}




/* Image + RTF box – Highlight Blob */
.block-one-section .highlight-number{
  position: absolute;
  width: 220px;
  height: 220px;

  top: -40px;      /* negative offset */
  left: -40px;     /* negative offset */

  background: var(--purple-main);
  border-radius: 58% 42% 63% 37% / 55% 38% 62% 45%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 20px;

  box-shadow: 0 20px 45px rgba(110,60,151,.35);
  z-index: 2;
}

/* white text (you already have text-white class) */
.block-one-section .highlight-number h2{
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.block-one-section .highlight-number p{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  max-width: 140px;
}



/* ===== NEWS SECTION (Odraščam) ===== */

.news-wrapper{position: relative;}

.news-card{
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border-color: rgba(110, 60, 151, .18);
}

.news-card__media{
  border-bottom: 1px solid rgba(0,0,0,.05);
  background: rgba(123, 167, 204, .18); /* blue-soft tint */
}
.news-card__img{
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.news-card__placeholder{
  aspect-ratio: 16/10;
  font-size: 26px;
  color: var(--purple-dark);
}

.news-date-badge{
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: .82rem;
  color: var(--purple-dark);
}

.news-card__body{
  padding: 14px 16px 16px;
}

.news-card__title{
  font-size: clamp(18px, 1rem + 1vw, 24px);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.25;
}

.news-card__excerpt{
  color: var(--text-color);
  opacity: .88;
  line-height: 1.55;
  font-size: .95rem;

  /* clamp to keep all cards same height */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link{
  font-weight: 900;
  color: var(--purple-dark);
}

/* blobs */
.news-blob{
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.news-blob--tl{
  width: 260px; height: 260px;
  top: -120px; left: -120px;
  background: var(--blue-soft);
}
.news-blob--br{
  width: 320px; height: 320px;
  bottom: -160px; right: -160px;
  background: var(--purple-main);
  opacity: .45;
}

/* optional: slow calming motion (same as footer philosophy) */
@media (prefers-reduced-motion: no-preference){
  .news-blob{
    animation: newsBlobFloat 22s ease-in-out infinite;
    will-change: transform, border-radius;
  }
  .news-blob--br{
    animation-duration: 28s;
    animation-delay: -10s;
  }
  @keyframes newsBlobFloat{
    0%, 100%{
      transform: translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    50%{
      transform: translate(10px,-8px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
  }
}


/* ===== EVENTS (layout like screenshot) ===== */

.events-kicker{
  font-weight: 800;
  color: var(--purple-main);
  letter-spacing: .02em;
  margin-bottom: 10px;
}


/* wrapper with soft tint */
.events-wrapper{
  border-radius: 28px;
  background: rgba(110, 60, 151, .06);
  padding: 18px;
}
@media (min-width: 992px){
  .events-wrapper{ padding: 22px; }
}

/* list rows */
.event-row{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  padding: 16px;
  gap: 16px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.event-row + .event-row{ margin-top: 14px; }

.event-row:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border-color: rgba(110, 60, 151, .18);
}

/* left date */
.event-date{
  width: 86px;
  flex: 0 0 86px;
  text-align: left;
}
.event-day{
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  color: var(--purple-main);
}
.event-month{
  margin-top: 6px;
  font-weight: 800;
  color: rgba(41,41,41,.78);
}

/* media */
.event-media{
  width: 150px;
  flex: 0 0 150px;
}
.event-media img{
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}
.event-media__placeholder{
  width: 100%;
  height: 86px;
  border-radius: 999px;
  background: rgba(123,167,204,.25);
  display: grid;
  place-items: center;
  color: var(--purple-dark);
  font-size: 22px;
}

/* main content */
.event-title{
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--purple-dark);
  margin: 0;
}

.event-meta__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(41,41,41,.78);
}
.event-meta__item i{
  color: var(--purple-main);
}

/* action circle */
.event-arrow{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(155,79,150,.55);
  display: grid;
  place-items: center;
  color: var(--purple-dark);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.event-row:hover .event-arrow{
  transform: translateX(2px);
  background: rgba(155,79,150,.10);
  border-color: rgba(155,79,150,.75);
}

/* Hero event */
/* =====================================
   HERO – Compact Event Card
===================================== */

.front-event .event-row{
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 10px 18px;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .25s ease,
              box-shadow .25s ease,
              background .25s ease;
}

.front-event h3 {font-size: 16px; font-weight: 400;}
/* smaller date */
.front-event .event-date{
  width: 64px;
  flex: 0 0 64px;
}

.front-event .event-day{
  font-size: 32px;
  font-weight: 900;
  color: var(--purple-main);
  line-height: 1;
}

.front-event .event-month{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(0,0,0,.65);
  margin-top: 1px;
}

/* title smaller */
.front-event .event-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

/* meta smaller */
.front-event .event-meta__item{
  font-size: .9rem;
  font-weight: 600;
  color: rgba(0,0,0,.75);
}

.front-event .event-meta__item i{
  color: var(--purple-main);
}

/* arrow smaller */
.front-event .event-arrow{
  width: 42px;
  height: 42px;
  border: 2px solid rgba(110,60,151,.35);
  font-size: 14px;
}

/* hover effect */
.front-event .event-row:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0,0,0,.25);
  background: #fff;
}

.front-event .event-row:hover .event-arrow{
  background: rgba(155,79,150,.12);
  border-color: var(--purple-main);
  transform: translateX(2px);
}

/* responsive */
@media (max-width: 767.98px){
  .event-row{
    flex-wrap: wrap;
    gap: 12px;
  }
  .event-date{
    width: auto;
    flex: 1 1 100%;
  }
  .event-day{ font-size: 38px; display: inline-block; margin-right: 10px; }
  .event-month{ display: inline-block; margin-top: 0; }
  .event-media{
    width: 100%;
    flex: 1 1 100%;
  }
  .event-media img,
  .event-media__placeholder{
    height: 120px;
    border-radius: 18px;
  }
  .event-action{
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

/* blobs */
.events-blob{
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.events-blob--tl{
  width: 260px; height: 260px;
  top: -120px; left: -120px;
  background: var(--purple-main);
}
.events-blob--br{
  width: 320px; height: 320px;
  bottom: -160px; right: -160px;
  background: var(--blue-soft);
  opacity: .45;
}

/* subtle calming motion */
@media (prefers-reduced-motion: no-preference){
  .events-blob{
    animation: eventsBlobFloat 24s ease-in-out infinite;
    will-change: transform, border-radius;
  }
  .events-blob--br{
    animation-duration: 30s;
    animation-delay: -12s;
  }
  @keyframes eventsBlobFloat{
    0%,100%{
      transform: translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    50%{
      transform: translate(10px,-8px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
  }
}


/* ===== Programs Section ===== */

.programs-wrapper{
  border-radius: 28px;
  background: rgba(110, 60, 151, .08); /* soft tint of purple-dark */
  padding: 22px;
}

@media (min-width: 992px){
  .programs-wrapper{ padding: 28px; }
}

.program-card{
  height: 100%;
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.program-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border-color: rgba(110, 60, 151, .18);
}

.program-card__top{
  margin-bottom: 14px;
}

.program-icon{
  width: 46px;
  height: 46px;
  border-radius: 58% 42% 63% 37% / 55% 38% 62% 45%;
  display: grid;
  place-items: center;
  background: rgba(123, 167, 204, .30); /* blue-soft tint */
  color: var(--purple-dark);
  font-size: 18px;
}

.program-badge{
  font-weight: 700;
  font-size: .85rem;
  color: var(--purple-dark);
  background: rgba(155, 79, 150, .14); /* purple-main tint */
  border: 1px solid rgba(155, 79, 150, .22);
  padding: 6px 10px;
  border-radius: 999px;
}

.program-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
}

.program-desc{
  color: var(--text-color);
  opacity: .88;
  line-height: 1.55;
  font-size: .98rem;
}

.program-link{
  font-weight: 800;
  color: var(--purple-dark);
}

/* blobs for wrapper */
.programs-blob{
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.programs-blob--tl{
  width: 260px; height: 260px;
  top: -120px; left: -120px;
  background: var(--purple-main);
}
.programs-blob--br{
  width: 320px; height: 320px;
  bottom: -160px; right: -160px;
  background: var(--blue-soft);
  opacity: .45;
}

/* optional: slow calming blob motion (same philosophy as footer) */
@media (prefers-reduced-motion: no-preference){
  .programs-blob{
    animation: programsBlobFloat 20s ease-in-out infinite;
    will-change: transform, border-radius;
  }
  .programs-blob--br{
    animation-duration: 26s;
    animation-delay: -10s;
  }
  @keyframes programsBlobFloat{
    0%, 100%{
      transform: translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    50%{
      transform: translate(10px,-8px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
  }
}




/* ===== FOOTER WRAPPER ===== */

.footer-one .bg-wrapper{
  background: var(--purple-dark);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

/* ===== BLOBS ===== */

/* ===== FOOTER BLOBS: slow, calming shift ===== */
/* Add this on top of the footer blob CSS you already have */

@media (prefers-reduced-motion: no-preference){

  /* gentle drift + morph */
  .footer-blob{
    animation: footerBlobFloat 18s ease-in-out infinite;
    will-change: transform, border-radius;
  }

  /* stagger timings so blobs don’t move in sync */
  .footer-blob--top-right{
    animation-duration: 22s;
    animation-delay: -6s;
  }
  .footer-blob--bottom-left{
    animation-duration: 26s;
    animation-delay: -12s;
  }
  .footer-blob--center{
    animation-duration: 20s;
    animation-delay: -3s;
  }

  @keyframes footerBlobFloat{
    0%, 100%{
      transform: translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    33%{
      transform: translate(10px,-6px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
    66%{
      transform: translate(-8px,10px) scale(.99);
      border-radius: 66% 34% 62% 38% / 40% 60% 40% 60%;
    }
  }

  /* IMPORTANT:
     Blobs that already use translateX(-50%) (center blob) need a separate animation
     so we preserve centering. */
  .footer-blob--center{
    animation-name: footerBlobFloatCentered;
  }
  @keyframes footerBlobFloatCentered{
    0%, 100%{
      transform: translateX(-50%) translate(0,0) scale(1);
      border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
    }
    33%{
      transform: translateX(-50%) translate(10px,-6px) scale(1.02);
      border-radius: 52% 48% 40% 60% / 55% 65% 35% 45%;
    }
    66%{
      transform: translateX(-50%) translate(-8px,10px) scale(.99);
      border-radius: 66% 34% 62% 38% / 40% 60% 40% 60%;
    }
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .footer-blob{
    animation: none !important;
  }
}

.footer-blob{
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}

/* Top right soft purple */
.footer-blob--top-right{
  width: 420px;
  height: 420px;
  top: -180px;
  right: -180px;
  background: var(--purple-main);
  opacity: .55;
}

/* Bottom left blue */
.footer-blob--bottom-left{
  width: 520px;
  height: 520px;
  bottom: -260px;
  left: -260px;
  background: var(--blue-soft);
  opacity: .45;
}

/* Center organic accent */
.footer-blob--center{
  width: 300px;
  height: 220px;
  top: 20%;
  left: 55%;
  transform: translateX(-50%);
  background: var(--purple-main);
  opacity: .35;
  border-radius: 60% 40% 60% 40% / 60% 50% 50% 40%;
}

/* Keep content above blobs */
.footer-one .top-footer,
.footer-one .bottom-footer{
  position: relative;
  z-index: 1;
}












/**** Hero bg image  ****/
.hero-one {
    position: relative; 
    z-index: 1; 
    background-size: cover; 
    background-position: center center;
    background-color: var(--deep-blue);
    color:#fff;
}
.bg-image::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #000;
    content: '';
    opacity: 0.36;
}

















/**** inner-banner-one ****/

.inner-banner-one {
  position: relative;
  background: var(--text-color);
  padding: 120px 0 55px;
  z-index: 9;
  background: var(--green);
  background-size: cover;
}
.inner-banner-one.with-image::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #000;
    content: '';
    opacity: 0.5;
}

.inner-banner-one h1 {
  color: #fff;
  font-size: 70px;
}

@media (max-width: 991px) {
 .inner-banner-one h1 {font-size: 40px;}
}

.inner-banner-one h1 span {
  color: var(--yellow);
}




/*^^^^^^^^^^^^^^^^^^^^^ Text Block Four ^^^^^^^^^^^^^^^^^^^^^^^^*/
.text-block-four .left-side {
  background: url(../images/media/img_23.jpg) no-repeat center;
  background-size: cover;
}

.text-block-four .left-side .content-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-color: #aaa;
}


.text-block-four .right-side {
  background: url(../images/media/img_24.jpg) no-repeat center;
  background-size: cover;
}
.text-block-four .right-side .content-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-color: #aaa;
}
.text-block-four .text-wrapper {max-width: 660px; padding: 145px 0 130px;}
.text-block-four .right-side .text-wrapper {padding-left: 55px;}
.text-block-four .text-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.17em;
  color: #fff;
}
.text-block-four .text-wrapper {padding-right:10px;}
.text-block-four .text-wrapper p {
  
  font-size: 22px;
  color: #fff;
  padding: 40px 0 34px;
}
.text-block-four .text-wrapper .more-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--heading);
  text-align: center;
  line-height: 54px;
  color: #fff;
  font-size: 26px;
}

/* -- Activity Header -- */

.activity-header .activity-category {    
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 11px;
  background: #879dbf;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.4;}

.activity-header .activity-depth {font-size: 30px; font-weight: 300;}
  
.activity-info-wrap {z-index: 1;}
.activity-info-wrap p {font-weight: 300;}


/**** Next courses  ****/

.list-group-item {background: transparent; border:0; display: block; padding: 0;}
.list-group-item .date-wrap {background: var(--deep-blue); min-width: 70px; color:#fff; line-height: 1.3; font-size: 14px; padding: 8px;}
.list-group-item .date-wrap small {color: #fff;}
.list-group-item .course-name h5 {color: #222; font-size: 16px;}
.list-group-item ul li {color: #222; font-size: 14px; line-height: 1.4;}
.list-group-item ul li span {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 1px;
  color: var(--yellow-one);
  margin-right: 10px;
}

.hero-video .list-group-item .course-name h5 {color: #fff; font-size: 17px;}



/**** Announcements  ****/
.announcements {background: #eff5ff;}
.announcement-box {display: block; background: #fff; padding: 8px 20px 8px 10px; border-radius: 4px;}
a.announcement-box:hover {color: #fff;}
a.announcement-box:hover i.more {color: #000; transform: translateX(10px); transition: all 550ms;}

.announcement-box, .announcement-box p {line-height: 1.4; color: #000; font-size: 15px; vertical-align: middle;}
.announcement-box p {display: inline;}
.announcement-box p a {color: #fff; border-bottom: 1px solid #fff;}
.announcement-box span { 
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 800;
      background: var(--yellow-one);
      display: inline-block;
      padding: 4px 6px;
      border-radius: 3px;
      letter-spacing: 1px;
      color: #222;
 }

@keyframes roll {
  0% {
  transform: rotate(0);
  }
  100% {
  transform: rotate(360deg);
  }
}



/**** Section: Courses ****/

.course-section {background:#eff5ff;}

/**** Cards: Default ****/

.card-post-one .card-img span.pretitle {
  background: var(--deep-blue);
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 8px;
  color: #fff;
  font-weight: 600;
  position: absolute;
  border-radius: 0 2px 2px 0;
  left: 0px;
  bottom: 5px;
}
.card-post-one .card-img span span {color: var(--light-blue);}
.card-post-one .card-img a {display: block; transition: all .3s ease-in-out}
.card-post-one .card-img a img {transition: all .2s ease-in-out; border-radius: 4px;}
.card-post-one .card-img a:hover img {opacity: .9;}

/* ---- Card Titles ---- */
.card-post-one h2 {font-size: 24px; font-weight: 700;}
.card-post-info .post-date {font-size: 14px; color: #8a8a8a;}
.card-post-info .excerpt p {font-size: 16px; line-height: 1.4;}

.card-post-one.highlighted h2 {font-size: 36px;}
.card-post-one.highlighted  .card-img span.pretitle {font-size: 18px;}
.card-post-one.highlighted .excerpt p {font-size: 18px; line-height: 1.4;}

.card-post-one.sidenews .card-content {margin-top: -6px;}
.card-post-one.sidenews h2 {font-size: 17px;}
.card-post-one.sidenews .pretitle {font-size: 15px; font-weight: 700; line-height: 1.4; border-bottom: 1px solid var(--light-blue); display: inline-block; color: #888;
}

@media (max-width: 991px) {
  .card-post-one.highlighted h2 {font-size: 28px;}
  .card-post-one .card-img span.pretitle {font-size: 11px; bottom: 0;}
  .card-post-one.highlighted .excerpt p {font-size: 16px;}
 }
.card-post-one.front-courses:hover {opacity: .8;}
.card-post-one.front-courses  img {border-radius: 4px;}
.card-post-one.front-courses .card-post-info h2 {font-size: 20px;}
.card-post-one.front-courses .course-quick-info {font-size: 14px; font-weight: 500; color:#444;}


/**** Cards: Course list ****/
.activity-card.list-layout {
  border-radius: 10px;
}
.activity-card.list-layout .activityitem-meta {
  position: relative;
}

.activityitem-data {padding: 10px 20px 10px 0;}

.activity-details {
  position: relative;
}
.activity-details .block-title {
  font-size: 18px;  
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.activity-details p {
  font-size: 18px;
  font-weight: 400;
}
.activity-details p a {
  font-weight: 500;
  text-decoration: underline;
  color: #000;
  transition: all 0.2s ease-in-out 0s;
}
.activity-details p a:hover {
  color: var(--yellow);
}

.activity-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
  position: relative;
  background: #f8f8f8;
  transition: all 0.2s ease-in-out 0s;
}
.activity-card:hover {
  box-shadow: 0px 20px 35px rgba(22, 105, 70, 0.05);
  color: var(--text-color);
  background: #eaeaea;
}

.activity-card.white-bg {background: #fff;}

.activity-card.favourite::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  top: -40px;
  left: -40px;
  transform: rotate(45deg);
  z-index: 2;
}
.activity-card.favourite::after {
  content: "\e300";
  font-family: Font Awesome\ 6 Pro;
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  top: 5px;
  left: 8px;
  z-index: 2
}
.activity-card .activity-category {display: inline-block; text-transform: uppercase; font-weight: 600; font-size: 12px; border-bottom: 1px solid var(--green);}
.activity-card .activityitem-name {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  margin: 3px 0 8px;
}

@media (min-width: 767px) {
  .activity-card .activityitem-name {width: 80%;}
}

.activity-card .activityitem-name a:hover {
  color: var(--yellow);
}
.activity-card .activityitem-description {
  font-size: 16px;
  line-height: 1.5;
}
.activity-card .activityitem-meta {
  margin: 0 -2px;
}
.activity-card .activityitem-meta li {
  margin: 0 2px 5px;
  line-height: 25px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(0 0 0 / 71%);
  background: rgb(184 184 184 / 10%);
  border-radius: 4px;
}
.activity-card .activityitem-meta li.easy {
  background: var(--green);
  color: #fff;
}
.activity-card .activityitem-meta li.moderate {
  background: var(--yellow);
  color: #fff;
}
.activity-card .activityitem-meta li.hard {
  background: var(--red);
  color: #fff;
}

.activityitem-image-wrap {position: relative;}

.activityitem-img {
  display: block;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 180px;}

.activityitem-img  .closed {position: absolute; bottom: 10px; right: 10px;
  margin: 0 2px 5px;
  line-height: 25px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(0 0 0 / 71%);
  background: rgb(184 184 184 / 10%);
  border-radius: 4px;
  background: var(--red);
  color: #fff;
}

@media (max-width: 1199px) {
    .activityitem-data {
        padding: 20px;
    }
}





/**** Active Courses ****/

.event-info {background: var(--yellow-one); display: inline-block; border-radius: 5px; text-align: center; width: 130px; padding: 15px 10px; font-size: 14px; line-height: 1.2; color: #222; margin-top: 5px;}
.event-date {font-size: 20px; font-weight: 700; letter-spacing: -1px;}
.event-time {font-size: 16px; font-weight: 600; }
.event-place {margin-bottom: 10px; font-size: 13px;}


/**** Course register  ****/



/**** Post view ****/

/* ---- Tags  ---- */
.post-details-one .tagline {
  background: var(--deep-blue);
    padding: 2px 6px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    font-weight: 600;
}

.post-details-one .tags li:first-child {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.post-details-one .tags a {
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  font-weight: 600;
  margin: 0 5px 5px 0;
  padding: 2px 8px;
  background: var(--yellow-one);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.post-details-one .tags a:hover {background: var(--light-blue);}


@media (max-width: 991px) {
  .post-details-meta {font-size: 15px;}
 }

/* ---- Share icons ---- */
.share-icon li:first-child {
  color: #000;
  font-size: 16px
}

.share-icon li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #EEEDED;
  text-align: center;
  color: #000;
  font-size: 16px;
  margin-left: 10px;
  transition: all .3s ease-in-out
}

.share-icon li a:hover {
  background: var(--deep-blue);
  color: #fff;
}

/* ---- Post directions ---- */
.post-directions {
  border-top: 1px solid #222;
  padding-top: 20px;
}

.post-directions .prev-post {
  padding-right: 1px
}

.post-directions .next-post {
  text-align: right;
  padding-left: 1px
}



.post-directions a {
  display: block;
  text-decoration: none;
  transition: .35s ease-in-out
}

.post-directions a span {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  transition: .35s ease-in-out;
  color: #828282;
  margin-bottom: 4px;
}

.post-directions a h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #242020;
  margin: 0px 0 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  -ms-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out
}


/**** Content ****/


.courseview-data h4 {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid #f2ad00;
    display: inline-block;
    padding: 4px 0px;
    letter-spacing: 1px;
}

.courseview-data .data-item {font-size: 24px;}
.courseview-data .data-item.price-individual {font-size: 16px;}
.courseview-data .data-item.price-custom p {font-size: 16px; line-height: 1.4; color:#828282;}


/* ---- Content inner ---- */
.content-inner h2 {font-size: 28px; font-weight: 600;} 
.content-inner h3 {font-size: 22px; font-weight: 600;} 
.content-inner p + h2, .content-inner ul + h2 {margin: 30px 0 10px;} 
.content-inner p + h3, .content-inner ul + h3 {margin: 30px 0 10px;}
.content-inner p {font-size: 18px; line-height: 1.5;}
.content-inner p a {color: var(--deep-blue);}
.content-inner p a:hover {color: #000;} 
.content-inner p.par-big {font-size: 130%;}
.content-inner p.par-small {font-size: 80%;}
.content-inner p.par-highlight {background: #edf9ff; padding: 15px; margin: 20px -15px;}
.content-inner p.par-alternative {border-top: 2px solid #f05038; border-bottom: 2px solid #f05038; padding: 12px 0;}
.content-inner p.par-comment {background: #f05038; padding: 20px; color: #fff;  float: right; width: 30%; margin: 10px;}
.content-inner p img+br {content: " "; display: none; }

.content-inner table {width: 100%; margin-bottom: 40px;}
.content-inner table tr th {background: #f6f6f6; padding: 8px 20px; font-size: 14px; line-height: 1.4; vertical-align: middle;}
.content-inner table tr td {color: #444; padding: 2px 20px; font-size: 16px; vertical-align: middle; border-bottom: 1px solid #828282;}
.content-inner table tr:hover td {color: #000; background: #f2f2f2;}
.content-inner table tr td p {margin: 0; padding: 0; font-size: 16px;}

.content-inner .fr-img-caption {text-align: left;}
.content-inner .fr-img-caption img {margin-bottom: 4px;}
.content-inner .fr-img-caption .fr-inner {border-bottom: 1px solid #ccc; font-size: 15px; font-weight: 700; padding:2px 0; display: block;}

.content-image {margin: 0 -20% 30px;}

blockquote {
  margin: 0 10px 30px;
  padding: 0 15px;
  border-left: 2px solid #da3636;
}

/**** Content images ****/

.fr-img-caption .fr-img-wrap {
  padding: 0;
  display: inline-block;
  width: 100%;
  margin: auto;
}

.content-inner .detail img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

.content-inner .detail img.fr-dii.fr-fil {
  float: left;
  margin: 5px 15px 5px 0;
  max-width: calc(100% - 5px);
}

.content-inner .fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 25px 5px 0;
  max-width: calc(100% - 5px);
}

.content-inner .fr-img-caption.fr-dii.fr-fir {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

.content-gallery {margin-left: -10px; width:calc(100% + 10px) !important;}
.content-gallery img {border-radius: 3px;}
.jg-caption.jg-caption-visible {display: none !important;}

/**** Content Files ****/

.content-files h4 {font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800;}
.content-files ul {list-style: none; padding: 0; margin: 0;}
.content-files ul li a {font-size: 20px; color: #222;}
.content-files ul li a:hover {color: #888;}
.content-files ul li a i {color: var(--yellow-one);}
.content-files ul li span {font-size: 14px;}
.content-files ul li a span.file {font-size: 11px;}


/** Accordion **/

.accordion-item {border: 0;}
.accordion-body {padding: 0;}
.accordion-button:focus {
    border:0;
    outline: 0;
    box-shadow: none;
}
.accordion-button {
  background: var(--yellow-one);
  font-weight: 700;
  color: #000;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: var(--yellow-one);
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);    
}

/** Forms **/
.form-wrap h3 {font-size: 28px; font-weight: 700;}
.form-wrap .form-label {font-size: 16px; font-weight: 600; margin-bottom: 3px;}
.form-wrap .form-control {border: 1px solid #333; padding: 10px 20px;}

/**** Subpages ****/

ul.subpages-menu {list-style: none; margin: 0; padding: 0;}
ul.subpages-menu li {margin-right: 10px;}
ul.subpages-menu li a {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px; 
  color:#000; 
  background: var(--yellow-one); 
  padding: 6px 14px; 
  border-radius:5px;}
ul.subpages-menu > li a:hover, ul.subpages-menu li a:focus, ul.subpages-menu > li.active > a {background: #ffd450; color:#000;} 
.subpages.vertical-subpages ul {margin: 0; padding: 0;}
.subpages.vertical-subpages ul li {display: inline-block; margin: 0 10px 10px 0;}

/**** FAQ ****/

.accordion-style-two .accordion-tag {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A5A5A5;
    margin-bottom: 35px
}

.accordion-style-two .accordion-item {
    border: none;
    border-top: 1px solid var(--yellow-one);
    border-radius: 0;
}

.accordion-style-two .accordion-item:last-child {
    border-bottom: 1px solid var(--yellow-one);
}

.accordion-style-two .accordion-button {
    font-size: 22px;
    min-height: 1.75em;
    font-weight: 600;
    padding: 20px 10px 20px 0;
    box-shadow: none;
    border-radius: 0;
    color: var(--heading);
    background: transparent;
    transition: all .3s ease-in-out
}

.accordion-style-two .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.accordion-style-two .accordion-body {
    padding: 0 50px 25px 0;
}

.accordion-style-two .accordion-body p {
    font-size: 18px;
    line-height: 1.8em;
    margin-bottom: 10px;
}

.accordion-style-two .accordion-button::after {
    content: '+';
    font-size: 28px;
    background-image: none;
    width: auto;
    height: auto
}

.accordion-style-two .accordion-button:not(.collapsed)::after {
    content: "-";
}

/**** Contacts  ****/
.address-block-three .icon {
   font-size: 16px;
   line-height: 1;
}

.address-block-three .icon i {
    margin-left: auto;
}

.address-block-three .text {
    width: calc(100% - 35px);
    padding-left: 15px;
}

.address-block-three .title {
    font-size: 14px;
    font-weight: 800;
    padding: 0 0 10px;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.address-block-three .text a i {color: var(--deep-cyan); font-size: 90%;}

.address-block-three p {
    font-size: 18px;
    line-height: 1.65em;
    margin-bottom: 20px;
}

.address-block-three p .call {
    font-size: 22px;
    color: var(--deep-blue);
}

.address-block-three p .call:hover {
    text-decoration: underline;
}

.address-block-three a {  transition: all 0.2s ease-in-out;}
.address-block-three a:hover {color: var(--deep-cyan); transition: all 0.2s ease-in-out;}

.contact-info {font-size: 18px;}
.contact-info {margin: 0; padding: 0;}
.contact-info li {list-style: none;}
.contact-info li.phone {font-size: 24px;}

.company-details p {font-size: 15px;}
.company-details ul {margin: 0; padding: 0; list-style: none;}
.company-details ul li {margin: 0; padding: 0; line-height: 1.5;}
.company-details ul li span {font-weight: 700;}
.copydata {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  color: var(--deep-cyan);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px;
  border: 0;
  outline: none;
  cursor: pointer;
  user-select: none;
}

.copydata:after {
  content: attr(tooltip);
  width: 140px;
  bottom: -48px;
  left: 20px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
}
.copydata:before, .copydata:after {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-10px);
  transition: all 300ms ease;
}
.copydata:hover:before, .copydata:hover:after {
  opacity: 1;
  transform: translateY(0);
}

/** Google **/
.google-map {height: 500px;}
.google-map #map {height: 100%;}
.map-area-two {margin-bottom: -80px;}

.gm-style #bodyContent img {width: 120px; float: left; height: auto; margin: 0 15px 15px 0;}
.gm-style #bodyContent p {font-size: 14px; margin-bottom: 20px; line-height: 1.5;}
.gm-style #bodyContent a {font-weight: 600; text-transform: uppercase; color: #fff; font-size: 12px; padding: 4px 10px; border: 0; display: inline-block; background: #A4A9AD; margin-right: 5px;}
.gm-style #bodyContent a.hidelink {display: none;}
.gm-style span.category {color: #3095B4; font-weight: 600; font-size: 13px;}
.gm-style #firstHeading {font-size: 16px;  margin: 10px 0 4px 0; font-family: proxima-nova, sans-serif; font-weight: 600;}
.gm-style .gm-style-iw-t::after {display: none;}
.gm-style .gm-style-iw-c {box-shadow: none; padding: 15px; max-width: 400px !important;}
.gm-style .gm-ui-hover-effect {top: -2px !important; right: -2px !important; font-size: 12px;}
.gm-style .gm-ui-hover-effect img {width: 16px !important; height: 16px !important;}


/**Footer **/

.footer-nav-link .hideinfooter {display: none;}
.footer-nav-link .uppercase {text-transform: uppercase; font-weight: 600;}
.footer-nav-link li:nth-last-child(1 of li.uppercase) {
  border-bottom: 1px solid #5c7a9f;
}














