/**
 * General
 */
:root {
  --primary: #F37021;
  --white: #ffffff;
  --black: #0b0b0b;
}
html,body {
  height: 100%;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.form-helper{
    display: none;
}

.main-content {
  flex: 1 0 auto;
  position: relative;
  z-index: 9;
}
::selection {
  background: var(--primary);
  color: var(--white);
}
img {
  max-width: 100%;
  height: auto;
}
.btn-group {
  gap: 0.75rem;
  flex-wrap: wrap
}
.btn-group>.btn {
  border-radius: 3rem !important;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0.5rem;
  border-radius: 3rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s ease;
  text-transform: uppercase;
}
.btn-text {
  color: var(--black);
  background-color: transparent;
  border-color: transparent;
  padding: 0.25rem 0;
  text-transform: none;
}
.btn-text:hover,
.btn-text:focus,
.btn-text:active {
  color: var(--black) !important;
  background-color: transparent !important;
  border-color: transparent !important;
  opacity: 0.7;
}
.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  transition: all 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: var(--white) !important;
  background-color: #d8530c !important;
  border-color: #d8530c !important;
  transform: translateY(-2px);
}
.btn-outline-black {
  color: var(--black);
  border-color: var(--black);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:active {
  color: #fff !important;
  border-color: var(--black) !important;
  background-color: var(--black) !important;
  transform: translateY(-2px);
}

.btn-outline-black svg path{
  transition: all 0.3s ease;
}
.btn-outline-black:hover svg path,
.btn-outline-black:focus svg path,
.btn-outline-black:active svg path {
  stroke: #fff; 
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
  color: var(--black) !important;
  border-color: #fff !important;
  background-color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline-white svg path {
  transition: all 0.3s ease;
}

.btn-outline-white:hover svg path,
.btn-outline-white:focus svg path,
.btn-outline-white:active svg path {
  stroke: var(--black);
}

.btn-black {
  color: var(--white);
  background-color: var(--black);
  border-color: var(--black);
  transition: all 0.3s ease;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
  transform: translateY(-2px);
  color: var(--white) !important;
  background-color: var(--black) !important;
  border-color: var(--black) !important;
}
.btn-white {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white);
  transition: all 0.3s ease;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: var(--primary) !important;
  background-color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
  transform: translateY(-2px);
}
ul[style*="list-style: square"], ul[style*="list-style-type: square"] {
  list-style: none !important;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
ul[style*="list-style: square"] li,
ul[style*="list-style-type: square"] li {
  position: relative;
  padding-left: 2rem;
  margin-left: -0.25rem;
}
ul[style*="list-style: square"] li::before,
ul[style*="list-style-type: square"] li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_29_32821)"><path d="M5 12L10 17L20 7" stroke="%23F37021" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_29_32821"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>') no-repeat center center;
  background-size: 24px 24px;
  pointer-events: none;
}


/**
 * Forms
 */
.form-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}
.form-control {
  padding: 1rem;
  border: none;
  color: var(--black);
  background: #F3F5F9;
  border-radius: 1rem;
}
.form-control::placeholder {
  color: var(--black);
  opacity: 0.7;
}
.form-control:focus {
  box-shadow: 0 0 0 1px var(--primary);
  background: #F3F5F9;
}
.form-check,
.form-check-label,
.form-check-input {
  cursor: pointer;
}
.form-check-label {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  color: var(--black);
  padding-left: 0.5rem;
}
.form-check-input {
  margin-top: 1px;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem !important;
  background-color: #F3F5F9;
  border: 1px solid #DCE1E9;
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: none;
}
.form-check-label a{ color: var(--primary);}
.form-select {
  padding: 1rem;
  border: none;
  color: var(--black);
  background: #F3F5F9;
  border-radius: 1rem;
}



/**
 * Back to top
 */
#backToTopBtn {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease,transform 0.5s ease,background-color 0.3s ease-in-out;
}
#backToTopBtn:hover {
  background-color: #313131;
}
#backToTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
#backToTopBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  stroke-width: 2;
}


/**
 * Section
 */
.section-subtitle {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
.text-center .section-title {
  max-width: 600px;
  margin: 0 auto;
}
.text-center .section-text {
  max-width: 600px;
  margin: 0 auto;
}
.section-padding {
  padding: 4rem 0;
}



/**
 * Header
 */
.header .header-top {
  background: #F3F5F9;
  padding: 0.75rem 0;
  border-radius: 0 0 1.5rem 1.5rem;
}
.header .lang {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.75rem;
}
.header .lang a.langbtn {
  font-size: 0.875rem;
  color: var(--black);
  position: relative;
  text-decoration: none;
  transition: color 0.15s ease;
}
.header .lang a.langbtn:hover,
.header .lang a.langbtn:focus,
.header .lang a.langbtn:active {
  color: var(--primary);
}
.header .lang a.langbtn.active {
  font-weight: 700;
}
.header .lang a.langbtn:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background: #d1d1d1;
  margin-left: 0.75rem;
  vertical-align: middle;
}
.header .header-top-left {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
}
.header .header-top-left li a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--black);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.header .header-top-left li a:hover,
.header .header-top-left li a:focus,
.header .header-top-left li a:active {
  color: var(--primary);
}
.header .header-top-left li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header .navbar {
  padding: 1.5rem 0;
}
.header .navbar-nav {
  gap: 0.75rem;
}
.header .nav-link {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}
/* Tlacidla v hlavicke (Prihlasenie, E-learning) sa nelamu a pravy blok sa nezmrstuje */
.header .navbar-nav .btn {
  white-space: nowrap;
}
.header .navbar-nav.ma-auto {
  flex-shrink: 0;
}
.header .nav-link svg{
  transition: all .15s ease-in-out;
}
.header .nav-link svg path{
  transition: all .15s ease-in-out;
}
.header .nav-link:hover,
.header .nav-link:focus,
.header .nav-link:active {
  color: var(--primary);
}
.header .nav-link:hover svg,
.header .nav-link:focus svg,
.header .nav-link:active svg{
  transform: rotate(-180deg);
}
.header .nav-link:hover svg path,
.header .nav-link:focus svg path,
.header .nav-link:active svg path{
  stroke: var(--primary);
}
.nav-item-dropdown:hover > .nav-link,
.nav-item-dropdown:focus-within > .nav-link {
  color: var(--primary);
}
.nav-item-dropdown:hover > .nav-link svg,
.nav-item-dropdown:focus-within > .nav-link svg {
  transform: rotate(-180deg);
}
.nav-item-dropdown:hover > .nav-link svg path,
.nav-item-dropdown:focus-within > .nav-link svg path {
  stroke: var(--primary);
}
.header .dropdown-toggle::after {
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 0;
  width: 13px;
  height: 13px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13" fill="none"><path d="M10.46 5.0841L7.20004 8.3441C6.81504 8.7291 6.18504 8.7291 5.80004 8.3441L2.54004 5.0841" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 13px 13px;
  border: none;
}
.navbar .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 0.75rem;
  min-width: 240px;
  /* max-width: 320px; */
  border: none;
  margin-top: 0.5rem;
  z-index: 1000;
}
.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--black);
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary);
  color: var(--white);
}
.navbar .container{
  position: relative;
}
.dropdown-menu-2{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(40px);
}
.nav-item-dropdown:hover > .dropdown-menu-2{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-2-left{
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 5px;
  padding: 1rem;
}
.dropdown-menu-2-left > span{
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.dropdown-menu-2-left > h3{
  color: #0D0D0D;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
}
.dropdown-menu-2-item{
  color: var(--black);
  font-size: 14px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
  height: 100%  ;
}
.dropdown-menu-2-item:hover {
  background: var(--primary);
  color: var(--white);
}

.dropdown-menu-2-right {
  list-style: none;          
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;           
  gap: 0.5rem 1rem;          

  max-height: 45rem;        
  overflow-y: auto;         
}
.dropdown-menu-2-right li {
  flex: 1 1 45%;             
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%; 
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    /* Zavrete menu stoji celou sirkou mimo obrazovky - na mobile to
       umoznovalo posuvat stranku do prazdna. Skryjeme ho a viditelnost
       prepneme az po dojazde animacie. */
    visibility: hidden;
    transition: right 0.3s ease, visibility 0s linear 0.3s;
    z-index: 999;
}

/**
 * Breadcrumb
 */
.breadcrumb-wrapper .breadcrumb-content {
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.5rem;
  background: #F3F5F9;
  min-height: 340px;
  //min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
}
.breadcrumb-wrapper .breadcrumb-content h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
}
.breadcrumb-wrapper .breadcrumb-image {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}
.breadcrumb-wrapper .breadcrumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breadcrumb-wrapper .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.breadcrumb-wrapper .breadcrumb-content{
  min-height: 170px;
  padding: 1.5rem 2rem 1.25rem;
}

.breadcrumb-wrapper .breadcrumb-image{
  height: 170px;
}

@media (min-width: 992px){
  .breadcrumb-wrapper .breadcrumb-content{
    min-height: 190px;
  }
  .breadcrumb-wrapper .breadcrumb-image{
    height: 190px;
  }
}

.breadcrumb-wrapper .breadcrumb li {
  margin-bottom: 0 !important;
}
.breadcrumb-wrapper .breadcrumb li,
.breadcrumb-wrapper .breadcrumb li a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.breadcrumb-wrapper .breadcrumb li:not(:last-child)::after {
  content: "|";
  color: var(--primary);
  margin: 0 0.5rem;
}
.breadcrumb-wrapper .breadcrumb li a:hover,
.breadcrumb-wrapper .breadcrumb li a:focus,
.breadcrumb-wrapper .breadcrumb li a:active {
  color: #d65e1c;
}



/**
 * Hero
 */
.hero {
  position: relative;
  z-index: 1;
  padding: 0 0 4rem;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  margin-bottom: -2rem;
}
.hero .hero-video {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
  color: var(--white);
}
.hero .hero-video .section-subtitle,
.hero .hero-video .section-title {
  color: var(--white);
}
.hero .hero-video video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-video::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.hero .hero-video .hero-video-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 3rem;
}
.hero .hero-content {
  border-radius: 1.5rem;
  background: #F3F5F9;
  padding: 8rem 3rem 3rem;
}
.hero .hero-learning .hero-learning-content {
  background: #F3F5F9;
  padding: 3.5rem 2rem 2rem 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}
.hero .hero-learning .hero-learning-content h6 {
  color: var(--black);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 4rem;
}
.hero .hero-learning .hero-learning-content h6 span {
  color: var(--primary);
}
.hero .hero-learning .hero-learning-image {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}
.hero .hero-learning .hero-learning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/**
 * Services
 */
.services {
  padding: 6rem 0 4rem;
  background: #F3F5F9;
  overflow: hidden;
  border-radius: 0 0 1.5rem 1.5rem;
}
#services-slider .splide__track {
  /* clip-path: inset(-100vw -100vw -100vw 0); */
  overflow: visible;
}
.service-card {
  display: block;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 3rem;
  height: 100%;
  transition: all 0.3s ease;
}
.service-card .service-card-icon svg {
  transition: all 0.3s ease;
}
.service-card:hover .service-card-icon svg{
  stroke: var(--white);
}
.service-card .btn-text{
  transition: all .3s ease-in-out;
}
.service-card .btn-text svg path{
  transition: all .3s ease-in-out;
}
.service-card:hover .btn-text{
  color: var(--white);
}
.service-card:hover .btn-text svg path{
  stroke: var(--white);
}
.service-card:hover,
.service-card:focus,
.service-card:active {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-5px);
}
.service-card .service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  min-height: 48px;
}
.service-card .service-card-content p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0;
  min-height: 42px;
}
.service-card .service-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--black);
}
#services-slider-wrapper {
  position: relative;
}
.custom-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 3rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.custom-arrow:hover {
  background: #d65e1c;
}
.custom-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.custom-arrow.custom-arrow-next {
  right: -2.5rem;
}
.custom-arrow.custom-arrow-prev {
  left: -2.5rem;
}
.splide__slide {
  transition: opacity 0.3s ease;
}



/**
 * About
 */
.about {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  padding-bottom: 4rem;
}
.about .about-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/**
 * Courses
 */
.courses {
  margin-top: -2rem;
  color: var(--white);
  background: #F3F5F9;
  padding-bottom: 2rem;
  border-radius: 0 0 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.courses ::selection {
  background: var(--white);
  color: var(--primary);
}
.courses .section-subtitle,
.courses .section-title {
  color: var(--white);
}
.courses .courses-header {
  position: relative;
  padding: 8rem 0 20rem;
  border-radius: 0 0 1.5rem 1.5rem;
  background: #F37021;
  overflow: hidden;
}
.courses .courses-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/courses-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.courses .courses-header>.container {
  position: relative;
  z-index: 1;
}
.course-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  color: var(--black);
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-decoration: none;
}
/* .courses-list .course-card {
  max-height: 17rem;
}  */
#page-mainpagev2-home .course-card {
  margin: 0;
  padding: 1.5rem 0.875rem 2rem;
  transition: all .3s ease-in-out;
}
.course-card .course-card-image {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}
.course-card .course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.course-card:hover .course-card-image img,
.course-card:focus .course-card-image img,
.course-card:active .course-card-image img {
  transform: scale(1.05);
}
.course-card .course-card-title + .btn {
  margin-top: 1.25rem;
}
.course-card .course-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  min-height: 48px;
}
.course-card .course-card-content p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0;
  min-height: 42px;
}
#courses-slider {
  margin-top: -17rem;
}
#courses-slider .splide__track {
  /* clip-path: inset(-100vw -100vw -100vw 0); */
  overflow: visible;
}
.courses-slider-controls {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.courses-slider-pagination {
  flex-grow: 1;
  height: 4px;
  background-color: #DCE1E9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.courses-slider-pagination-bar {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.courses-slider-pagination button {
  flex-grow: 1;
  height: 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.courses-slider-pagination .splide__pagination__page {
  border-radius: 2px !important;
  opacity: 1;
  margin: 0;
}
.courses-slider-pagination .is-active {
  background-color: var(--primary);
  transform: scale(1);
}
.courses-slider-arrows {
  display: flex;
  gap: 0.5rem;
}
.courses-arrow-prev,
.courses-arrow-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: 64px;
  height: 48px;
  border: none;
  border-radius: 3rem;
  background-color: #ECECEE;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 1;
}
.courses-arrow-prev svg,
.courses-arrow-next svg {
  width: 16px;
  height: 16px;
}
.courses-arrow-prev svg path {
  fill: var(--black);
}
.courses-arrow-next {
  background-color: var(--primary);
  color: var(--white);
}
.courses-arrow-prev:hover {
  background-color: #d1d1d1;
}
.courses-arrow-next:hover {
  background-color: #d65e1c;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}



/**
 * Permissions
 */
.permissions {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  margin-bottom: -2rem;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.accordion .accordion-item {
  border: none;
  border-radius: 1.5rem;
  margin-bottom: 0.625rem;
}
.accordion .accordion-button {
  background: #F3F5F9;
  color: var(--black);
  border: none;
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion .accordion-button:hover,
.accordion .accordion-button:active {
  background: #eaecf0;
  color: var(--black);
}
.accordion .accordion-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}
.accordion .accordion-title span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.accordion {
  --bs-accordion-btn-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none"><g clip-path="url(%23clip0_29_32920)"><path d="M12 5.5V19.5" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 12.5H19" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_29_32920"><rect width="24" height="24" fill="white" transform="translate(0 0.5)"/></clipPath></defs></svg>');
  --bs-accordion-btn-active-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none"><rect x="12" y="5" width="14" height="2" rx="1" fill="black" transform="rotate(90 12 5)"/></svg>');
}
.accordion-button::after {
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}



/**
 * Metrics
 */
.metrics {
  padding: 4rem 0 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
}
.metrics ::selection {
  background: var(--white);
  color: var(--primary);
}
.metrics .metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.metrics .metric .metric-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.metrics .metric p {
  max-width: 206px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
  margin-bottom: 0;
}



/**
 * Reviews
 */
.reviews {
  padding: 4rem 0;
  background: #F3F5F9;
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
}
#reviews-slider .review-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 1.5rem;
  height: 100%;
}
#reviews-slider .splide__track {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.review-card .review-card-text p {
  margin-bottom: 0;
}
.review-card .review-card-author {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
.review-card .review-author-image {
  display: block;
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  width: 70px;
  height: 70px;
}
.review-card .review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card .review-author-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.review-card .review-author-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
.reviews .section-text {
  max-width: 364px;
}
review-text > p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



/**
 * Contact
 */
.contact-section {
  padding: 4rem 0;
  background: var(--white);
  color: var(--black);
}
.contact-section .contact-person {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
.contact-section .contact-person h6 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}
.contact-section .contact-person ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-section .contact-person ul li {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-person ul li span {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.contact-section .contact-person ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.contact-section .contact-person ul li a:hover,
.contact-section .contact-person ul li a:focus,
.contact-section .contact-person ul li a:active {
  color: var(--primary);
}
.contact-section .contact-person .contact-person-image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-person .contact-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/**
 * Branches
 */
.branches {
  color: var(--white);
}
.branches ::selection {
  background: var(--white);
  color: var(--primary);
}
.branches .section-subtitle,
.branches .section-title {
  color: var(--white);
}
.branches>.container {
  padding: 2.5rem 3rem;
  background: var(--primary);
  border-radius: 1.5rem;
  margin-bottom: 4rem;
}
.branches ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 788px;
}
.branches ul li {
  background: rgba(0, 0, 0, 0.10);
  border-radius: 1.5rem;
  padding: 0.625rem 2rem;
  font-size: 0.875rem;
}
.branches ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s ease;
}



/**
 * Footer
 */
.footer {
  color: var(--white);
  background: #0b0b0b;
  border-radius: 1.5rem 1.5rem 0 0;
}
.footer .footer-content {
  padding: 4rem 0 1rem;
}
.footer .footer-copyright {
  padding: 1rem 0;
}
.footer .footer-item .footer-item-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer .footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer .footer-item ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 0.75rem;
}
.footer .footer-item ul li:last-child {
  border-bottom: none;
}
.footer .footer-item ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer .footer-item ul li a:hover,
.footer .footer-item ul li a:focus,
.footer .footer-item ul li a:active {
  color: var(--primary);
}
.footer .social-icons {
  display: flex;
  flex-direction: row !important;
  justify-content: start;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .social-icons li {
  border: none !important;
  padding: 0 !important;
}
.footer .social-icons li a svg path {
  fill: var(--primary);
  transition: fill 0.3s ease;
}
.footer .social-icons li a:hover svg path,
.footer .social-icons li a:focus svg path,
.footer .social-icons li a:active svg path {
  fill: #d65e1c;
}
.footer .footer-contact {
  gap: 1.25rem !important;
}
.footer .footer-contact li {
  border: none !important;
  padding: 0 !important;
}
.footer .footer-contact li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 500 !important;
  transition: color 0.15s ease;
}
.footer .footer-contact li a:hover,
.footer .footer-contact li a:focus,
.footer .footer-contact li a:active {
  color: var(--primary) !important;
}
.footer .footer-logo .bexpoFooterLogo {
  display: block;
  margin-bottom: 2rem;
}
.footer .nextGenlogo {
  max-width: 196px;
}
.footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1.5rem 0;
}
.footer .footer-copyright p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.footer .footer-copyright ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.footer .footer-copyright ul li {
  position: relative;
}
.footer .footer-copyright ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 0.75rem;
  vertical-align: middle;
}
.footer .footer-copyright ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s ease;
}
.footer .footer-copyright ul li a:hover,
.footer .footer-copyright ul li a:focus,
.footer .footer-copyright ul li a:active {
  color: var(--primary);
}



/**
 * 
 * Services page
 * 
 */
.services-list .service-card {
  height: 100%;
  background: #F3F5F9;
  /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-list .service-card svg path{
  transition: all 0.15s ease;
}
.services-list .service-card:hover,
.services-list .service-card:focus,
.services-list .service-card:active {
  opacity: 1;
  background: var(--primary);
  transform: translateY(-6px);
}
.services-list .service-card:hover svg,
.services-list .service-card:focus svg,
.services-list .service-card:active svg{
  filter: brightness(0) invert(1)
}



/**
 * 
 * Service detail page
 * 
 */
#page-mainpagev2-service .services {
  position: relative;
  z-index: 1;
  margin-bottom: -2rem;
  padding: 4rem 0;
}
.sidebar .sidebar-item {
  background: #F3F5F9;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar .sidebar-item h6 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}
.sidebar .sidebar-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar .sidebar-services ul li {
  position: relative;
  padding-left: 1.5rem;
}
.sidebar .sidebar-services ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  border-radius: 0.25rem;
  background: #DCE1E9;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.sidebar .sidebar-services ul li.active::before,
.sidebar .sidebar-services ul li a:hover::before,
.sidebar .sidebar-services ul li a:focus::before {
  background: var(--primary);
}
.sidebar .sidebar-services ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.sidebar .sidebar-services ul li a:hover,
.sidebar .sidebar-services ul li a:focus,
.sidebar .sidebar-services ul li a:active {
  color: var(--primary);
}
.sidebar .sidebar-services ul li.active a {
  font-weight: 700;
  color: var(--primary);
}
.sidebar .sidebar-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sidebar .sidebar-contact ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.sidebar .sidebar-contact ul li a:hover,
.sidebar .sidebar-contact ul li a:focus,
.sidebar .sidebar-contact ul li a:active {
  color: var(--primary);
}
.sidebar .sidebar-contact ul li a svg {
  width: 2rem;
  height: 2rem;
  transition: fill 0.15s ease;
}
.service-downloads {
  margin-top: 3rem;
  background: #F3F5F9;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
}
.service-downloads h6 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
.service-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-downloads ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.service-downloads ul li span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-downloads .download-link-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #DCE1E9;
  color: var(--black);
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.service-downloads .download-link-btn:hover,
.service-downloads .download-link-btn:focus,
.service-downloads .download-link-btn:active {
  background: #ccd2db;
  color: var(--black);
}
.service-detail-section ul {
  list-style: none !important;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.service-detail-section  ul li {
  position: relative;
  padding-left: 2rem;
  margin-left: -0.25rem;
}
.service-detail-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_29_32821)"><path d="M5 12L10 17L20 7" stroke="%23F37021" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_29_32821"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>') no-repeat center center;
  background-size: 24px 24px;
  pointer-events: none;
}
/* Headings */
.service-detail-section h1,
.service-detail-section h2,
.service-detail-section h3,
.service-detail-section h4,
.service-detail-section h5,
.service-detail-section h6 {
  color: var(--black);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-detail-section h1 {
  font-size: 2.25rem;
  margin-top: 2.5rem;
}
.service-detail-section h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
}
.service-detail-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.service-detail-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.25rem;
}
.service-detail-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}
.service-detail-section h6 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
}
.service-detail-section h1:first-child,
.service-detail-section h2:first-child,
.service-detail-section h3:first-child,
.service-detail-section h4:first-child,
.service-detail-section h5:first-child,
.service-detail-section h6:first-child {
  margin-top: 0.25rem;
}



/* Paragraphs */
.service-detail-section p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}



/* Strong text */
.service-detail-section strong,
.service-detail-section b {
  font-weight: 600;
  color: var(--black);
}



/* Italic text */
.service-detail-section em,
.service-detail-section i {
  font-style: italic;
  color: var(--black);
}

/* Links */
.service-detail-section a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 500;
}
.service-detail-section a:hover,
.service-detail-section a:focus {
  color: #d65e1c;
  text-decoration: underline;
}
.service-detail-section a strong {
  color: var(--primary);
}



/* Blockquotes */
.service-detail-section blockquote {
  border-left: 4px solid var(--primary);
  background: #f3f5f9;
  color: var(--black);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
  border-radius: 0.5rem;
}

/* Lists */
.service-detail-section ul,
.service-detail-section ol {
  margin: 1rem 0 1.5rem;
  /* padding-left: 1.5rem; */
  color: var(--black);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}
.service-detail-section ul {
  list-style: disc inside;
}
.service-detail-section ol {
  list-style: decimal inside;
}
.service-detail-section ul ul,
.service-detail-section ol ol,
.service-detail-section ul ol,
.service-detail-section ol ul {
  margin: 0.5rem 0 0.5rem 1.5rem;
}
.service-detail-section ul li p,
.service-detail-section ol li p {
  margin: 0;
}



/* Images */
.service-detail-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}



/* Tables */
.service-detail-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
  color: var(--black);
}
.service-detail-section th,
.service-detail-section td {
  border: 1px solid #dce1e9;
  padding: 0.75rem 1rem;
  text-align: left;
}
.service-detail-section th {
  background: #f3f5f9;
  font-weight: 600;
}



/* Horizontal rule */
.service-detail-section hr {
  border: none;
  border-top: 1px solid #dce1e9;
  margin: 2rem 0;
}


.sidebar-form p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1rem;
}
.sidebar .form-control {
  background: var(--white);
}
.sidebar .form-check-label {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.sidebar .form-check-label a {
  color: var(--black);
  transition: color 0.3s ease;
}
.sidebar .form-check-input {
  margin-top: -20px;
  background-color: var(--white);
  border: none;
}
.sidebar-form .form-check-input:checked {
  background-color: var(--primary);
}



/**
 * 
 * Courses page
 * 
 */
.sidebar .form-select {
  background: var(--white);
}
.courses-list {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  margin-bottom: -2rem;
}
.courses-sortbar {
  background: #F3F5F9;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.courses-sortbar span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.courses-sortbar .courses-sortbar-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.courses-sortbar-btn-list,
.courses-sortbar-btn-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: #DCE1E9;
  transition: all 0.15s ease;
}
.courses-sortbar-btn-list.active,
.courses-sortbar-btn-grid.active {
  background: var(--primary);
  color: var(--white);
}
.courses-sortbar-btn-list svg path,
.courses-sortbar-btn-grid svg path {
  stroke: var(--black);
  transition: fill 0.15s ease;
}
.courses-sortbar-btn-list.active svg path,
.courses-sortbar-btn-grid.active svg path {
  stroke: var(--white);
}
.courses-sortbar .form-select {
  background: var(--white);
}
.courses-list .course-card {
  background: #F3F5F9;
  flex-direction: row;
  gap: 0;
  padding: 1.5rem 0.75rem;
  margin: 0 0.125rem 1rem;
}
.courses-list .course-card-grid .course-card { 
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0.875rem;
  min-height: 575px;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 1rem;
}
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination .page-item {
  display: flex;
}
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: 56px;
  height: 44px;
  padding: 0 1rem;
  border-radius: 1.5rem;
  background: #F3F5F9;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.pagination .page-item:not(.disabled):not(.active) .page-link:focus {
  background: var(--primary);
  color: var(--white);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link[aria-current="page"] {
  background: var(--primary);
  color: var(--white);
  cursor: default;
}
.pagination .page-item.disabled .page-link {
  background: #ECECEE;
  color: #bdbdbd;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .page-item.first .page-link,
.pagination .page-item.last .page-link {
  font-size: 1.25rem;
  padding: 0 1.25rem;
}
.page-item:first-child .page-link {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #828EA5;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #828EA5;
  text-decoration: none;
  gap: 0.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.pagination-btn:hover,
.pagination-btn:focus,
.pagination-btn:active {
  background: #828EA5;
  color: var(--white);
}
.pagination-btn svg path {
  stroke: #828EA5;
  transition: stroke 0.2s ease;
}
.pagination-btn:hover svg path,
.pagination-btn:focus svg path,
.pagination-btn:active svg path {
  stroke: var(--white);
}
.pagination-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pagination-page-number {
  font-weight: 600;
  color: #828EA5;
}



/**
 * 
 * Cart page
 * 
 */
.cart-table-wrapper {
  background: #F3F5F9;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
}
.cart-table.table>:not(caption)>*>* {
  background: transparent;
  border: none;
}
.cart-table {
  border: none;
  margin-bottom: 0;
}
.cart-table thead {
  /* background: var(--white); */
  color: var(--black);
}
.cart-table thead th:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.cart-table thead th:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cart-table td {
  padding: 0;
}
.cart-table .item-card .item-card-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 0.75rem;
}
.cart-table .item-card:last-child .item-card-content {
  margin-bottom: 0;
}
#cart-steps .summary-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;  
}
#cart-steps .summary-card ::selection {
  background: var(--white);
  color: var(--primary);
}
#cart-steps .summary-card h6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cart-table .btn-remove {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.cart-table .btn-remove svg {
  width: 24px;
  height: 24px;
  transition: fill 0.2s ease;
}
.cart-table .btn-remove svg path {
  transition: stroke 0.2s ease;
}
.cart-table .btn-remove:hover svg path,
.cart-table .btn-remove:focus svg path,
.cart-table .btn-remove:active svg path {
  stroke: #ec5552;
}
.cart-table .item-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.5rem;
}
.cart-table .item-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.cart-table .item-card-title h6 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
} 
.cart-table .item-card-title a:hover,
.cart-table .item-card-title a:focus,
.cart-table .item-card-title a:active {
  color: var(--primary);
}
.cart-table .item-card-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cart-table .item-card-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.cart-table .quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}
.cart-table .quantity-control .qty-display {
  font-size: 1.125rem;
  font-weight: 600;
}
.cart-table .quantity-control .qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #828EA5;
  color: #828EA5;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cart-table .quantity-control .qty-btn:hover,
.cart-table .quantity-control .qty-btn:focus,
.cart-table .quantity-control .qty-btn:active {
  opacity: 0.5;
}
.cart-table .item-card .item-total-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}
.cart-table .item-card .item-card-price {
  font-size: 1rem;
  font-weight: 300;
}
.cart-header a svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  stroke-width: 2;
  transition: stroke 0.2s ease;
}
.cart-header .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
}
.shop-form-wrapper{
  border-radius: 24px;
  background: #F3F5F9;
  height: fit-content;
}
#shopForm h5{
  font-size: 24px;
  font-weight: 700;
  line-height: 45px;
}
#shopForm .form-control{
  background: var(--white);
}
#shopForm .form-check-label{
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
#shopForm .form-check-label a{
  color: var(--black);
  text-decoration: underline;
}
#shopForm input[type="file"]::file-selector-button {
  background-color: var(--white);
  color: black;
  border: none;
  cursor: pointer;
  opacity: .7;
}

#shopForm input[type="file"]::file-selector-button:hover {
  background-color: var(--white);
}
.btn-secondary{
  background: #828EA5;
  border: 1px solid #828EA5;
}
#cart-steps .btn{
  padding: 12px 24px;
}
.sidebar-photo{
  border-radius: 32px;
  background: #F3F5F9;
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  text-align: center;
}
.sidebar-photo-img{
  position: relative;
}
.sidebar-photo-img-small > img{
  min-width: 60px;
  max-width: 87px;
}
.sidebar-checkmark{
  position: absolute;
  right: -1.5rem;
  top: -0.5rem;
}
.sidebar-checkmark-decline{
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
}
.sidebar-photo-img-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar-photo h4{
  font-weight: 700;
}
.sidebar{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-card{
  padding: 30px;
  border-radius: 24px;
  background: #F3F5F9;
}
.form-card .table>:not(caption)>*>*{
  background: #F3F5F9;
  padding: 1rem 0;
}
.btn-success{
  padding: 12px 24px;
  border-radius: 32px;
  background: #64D6AC;
  border: 1px solid #64D6AC;
}
.cart-item > :first-child{
  width: 60%;
}
.cart-item .item-price{
  font-weight: 700;
}
#step-2,
#step-3,
#step-1{ padding: 0 0.75rem;}

/**
 * 
 * Blog page
 * 
 */
.post-card {
  color: var(--black);
  background: #F3F5F9;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.post-card:hover{
  background: var(--primary);
  color: var(--white);
}
.post-card a {
  text-decoration: none;
  color: var(--black);
  transition: all .3s ease-in-out;
}
.post-card:hover a {
  color: var(--white);
}
.post-card .post-card-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.post-card .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.post-card .post-card-image:hover img,
.post-card .post-card-image:focus img,
.post-card .post-card-image:active img {
  transform: scale(1.05);
}
.post-card .post-card-content {
  display: flex;
  flex-direction: column;
}
.post-card .post-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  min-height: 48px;
  margin-bottom: 1rem;
}
.post-card .post-card-content p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0;
}
.post-card .post-card-meta {
  margin-bottom: 0.5rem;
}
.post-card .post-card-meta span {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.7;
}


/* toastify */
.toastify{
  border-radius: 32px !important;
  padding: 24px 32px !important;
}

/* course-form */
.course-form{ padding: 0 0.75rem;}
.course-form h3{ padding-left: 0;}
.course-form .form-check-label { font-weight: 400;}
.course-form .form-check-label a{ color: var(--black);}

/* licenses */
.licenses{
  padding-bottom: 4rem;
}
.license a{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--black);
  text-decoration: none;
  text-align: center;
  transition: all .3s ease;
}
.license a img{
  border-radius: 1.5rem;
  transition: all .3s ease-in-out;
}
.license a:hover img{
  scale: 1.05;
}
.license a:hover{
  color: var(--primary);
}
.license-title{
  font-size: 1.25rem;
}

/* post */
.post{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.thumbnail-attachment{
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem;
}
.thumbnail-attachment img{
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.thumbnail-attachment img:hover,
.thumbnail-attachment img:focus,
.thumbnail-attachment img:active {
  transform: scale(1.05);
}
.entry-title a{
  text-decoration: none;
  color: var(--black);
  transition: color 0.15s ease;
}
.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active {
  color: var(--primary);
}

/* post */
#post-carousel .splide__slide{
  opacity: 0.5;
  transition: all .3s ease-in-out;
}
#post-carousel .splide__slide.is-visible{
  opacity: 1;
}
#post-carousel .splide__arrow--prev{
  transform: rotate(180deg);
  left: -2rem;
}
#post-carousel .splide__arrow--next{
  right: -2rem;
}
#post-carousel .splide__arrow{
  background: var(--primary);
  opacity: 1;
  width: 69px;
  height: 52px;
  border-radius: 100px;
  transition: all .3s ease-in-out;
}
#post-carousel .splide__arrow:disabled{
  opacity: 0;
}
#post-carousel .splide__arrow:hover,
#post-carousel .splide__arrow:focus {
  background: #d8530c;
}
#post-carousel .splide__track{
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.blog-detail{
  overflow-x: clip;
}

.btn-add{ transition: all .3s ease; }
.btn-add:hover,
.btn-add:focus,
.btn-add:active {
  transform: translateY(-2px);
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

/* price quote */
.price-quote .form-check-label{ font-size: 14px;}
.price-quote .servicesCheck label{ margin-left: 0;}
.price-quote .form-check-label a{ color: var(--primary);}

/* construction-data */
.address-item .btn-custom,
.works-item .btn-custom,
.suppliers-item .btn-custom{
  background: #dc3545;
  border: 1px solid #dc3545;
  padding: .5rem;
  transition: all .3s ease;
}
.address-item .btn-custom:hover,
.works-item .btn-custom:hover,
.suppliers-item .btn-custom:hover{
  background: #c82333;
  border: 1px solid #c82333;
}

/* 404 */
.error-404 .inner-content{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.error-404 .inner-content h1{
  font-size: 150px;
}
.error-404 .inner-content h1 span{
  color: var(--primary);
}

/* case */
.case-card{
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.5rem;
  background: #F3F5F9;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  transition: all 0.3s ease;
}
.case-card:hover{
  transform: translateY(-5px);
  background: var(--primary);
}
.case-card-title{
  color: var(--black);
  transition: all .3s ease-in-out;
}
.case-card:hover .case-card-title{
  color: var(--white);
}
.case-card:hover .btn-black{
  background: var(--white);
  border: 1px solid var(--white);
}
.case-card svg{
  transition: all .3s ease-in-out;
}
.case-card:hover svg{
  stroke: black;
}
.case-card a{ text-decoration: none;}

.select2-container--bootstrap-5 .select2-selection {
    display: block !important;
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: var(--black) !important;
    background: #F3F5F9 !important;
    border: none !important;
    border-radius: 1rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background-color: #fff !important;
    border: 1px solid var(--bs-border-color) !important;
    border-radius: .5rem !important;
    padding: .25rem .5rem !important;
    margin-top: .25rem !important;
    color: var(--black) !important;
}

.select2-container--bootstrap-5 .select2-search--inline .select2-search__field {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.select2-dropdown {
    background: #F3F5F9 !important;      /* rovnaký background ako form-control */
    border: none !important;             /* bez defaultného bordera */
    border-radius: 1rem !important;      /* rovnaké zaoblenie */
    padding: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* jemný tieň */
    z-index: 2000 !important;            /* nech je nad overlaymi */
}

.select2-results__option {
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    color: var(--black) !important;
    border-radius: 0.5rem !important;
    transition: background 0.15s ease-in-out !important;
}

.select2-results__option--highlighted {
    background-color: #e9ecef !important;
    color: var(--black) !important;
}

.select2-results__option[aria-selected="true"] {
    background-color: #dfe6f0 !important;
    color: var(--black) !important;
}


/* select */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected{ background-color: var(--primary) !important; color: var(--white) !important;}
.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection{ box-shadow: none !important;}

.select2-selection.select2-selection--single.select2-selection--clearable{
    padding-bottom: 2.5rem !important;
}

.select2-selection.select2-selection--single{
    padding-bottom: 2.5rem !important;
}

.btn-remove{
    margin-left: 1rem;;
}

.flatpickr-current-month {
    top: 0;
}



/* thank you */
.thank-you .inner-content {
  background: #f3f5f9;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.thank-you .icon {
  margin-bottom: 1.5rem;
}

.thank-you .thanks-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333333;
}

.thank-you p {
  color: #555555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.thank-you hr {
  margin: 2rem auto;
  max-width: 400px;
  border-top: 1px solid #e0e0e0;
}

.thank-you a.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
}
.thank-you .clearfix{
  display: flex;
  justify-content: center;
}
.thank-you .inner-content a:not(.btn){
  color: var(--primary);
}


/* conditions */
.conditions-wrp {
  padding: 2rem 0;
  color: #333333;
  line-height: 1.7;
  font-size: 1rem;
}

.conditions-wrp h1,
.conditions-wrp h2,
.conditions-wrp h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222222;
}

.conditions-wrp h1 {
  font-size: 2rem;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 0.5rem;
}

.conditions-wrp h2 {
  font-size: 1.5rem;
}

.conditions-wrp h3 {
  font-size: 1.25rem;
}


.conditions-wrp ul,
.conditions-wrp ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.conditions-wrp li {
  margin-bottom: 0.5rem;
}

.conditions-wrp a {
  color: var(--primary);
  text-decoration: underline;
  transition: all .3s ease-in-out;
}

.conditions-wrp a:hover {
  color: #d85f15;
}
.conditions-wrp p strong{ padding: 10px; background: var(--primary); color: var(--white); border-radius: 8px; display: flex; align-items: center; width: fit-content; margin-top: 1rem;}

/* service detail */
.service-images-wrp{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-path{
  margin-bottom: 1rem;
}
.service-path-item{
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.service-path-item.deactive{
  pointer-events: none;
}
.service-path-item:not(:last-child)::after {
    content: "|";
    color: var(--primary);
    margin: 0 0.5rem;
}
.service-title{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-bottom: 2rem;
}
.service-title h1{
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; 
}
.service-title p{
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}
.service-config{
  padding: 2rem 0;
  border-top: 1px solid rgba(13, 13, 13, 0.10);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-picker{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-picker label{
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}
.service-picker .select2-container .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  height: 56px !important;
  padding: 16px !important;

  background: #FFF !important;
  border: 1px solid #E7E7E7 !important;
  border-radius: 16px !important;

  box-shadow: none !important;
}
.service-picker .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000;
  font-size: 16px;
  padding-left: 0 !important;
}
.service-picker .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 16px !important;
}
#servicePicker + .select2 {
  max-width: 300px !important;
  width: 100% !important; 
}
.service-picker .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none !important;
}
.service-picker .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-down'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  width: 24px !important;
  height: 100% !important;
  right: 16px !important;
}
.service-picker .select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}
.number-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 96px;
  height: 56px;

  border: 1px solid #E7E7E7;
  border-radius: 16px;
  background: #FFF;
}
.number-value {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.number-controls {
  width: fit-content;
  padding: 0 10px;
  height: 100%;
  border-left: 1px solid #E7E7E7;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}
.number-controls button {
  width: fit-content;
  height: fit-content;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.number-controls button:hover svg {
  color: #444;
}
.number-controls svg {
  color: #000;
  pointer-events: none;
}

.service-price p{
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.service-price p span{
  font-size: 24px;
  font-weight: 700;
}
#addToFavorite{
  padding: 0;
  border: none;
  background: transparent;
  display: inline-block;
}
#addToFavorite svg{
  color: rgba(0, 0, 0, 0.50);
  transition: all .3s ease-in-out;
}
#addToFavorite:hover svg {
  color: var(--primary);
}
#addToFavorite.active svg{
  color: var(--primary);
  fill: var(--primary);
}
.service-cart{
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.service-content-info{
  padding: 1rem 0;
  border-top: 1px solid rgba(13, 13, 13, 0.10);
  display: flex;
  flex-direction: column;
}
.service-content-info span{
  color: rgba(13, 13, 13, 0.50);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service-content-info span:last-child a{
  text-decoration: underline;
  color: rgba(13, 13, 13, 0.50);
  transition: all .3s ease-in-out;
}
.service-content-info span:last-child a:hover{
  color: var(--primary);
}
/* END service detail */

/* service detail */
.service-detail{
  padding: 3rem 0;
}
.service-detail .container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-detail-buttons {
  width: 100%;
  border-bottom: 1px solid rgba(13, 13, 13, 0.10);
  display: flex;
}
.service-detail-button {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.service-detail-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-detail-button:hover::after {
  transform: scaleX(1);
}
.service-detail-button.active::after {
  transform: scaleX(1);
}
.service-detail-content{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-detail-title{
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; 
}
.service-detail-info-wrp{
  display: flex;
  align-items: center;
  gap: 3rem;
}
.service-detail-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.service-detail-info-stat{
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}
.service-detail-info-stat span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0D0D0D;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 72px;
  height: 72px;
  background: rgba(243, 113, 33, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
}
.service-detail-content p{
  margin-bottom: 0;
  color: #0D0D0D;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; 
}
.service-detail-content ul {
    list-style: none;  
    padding: 0;
    margin-bottom: 0;
}
.service-detail-content ul li {
  position: relative;
  padding-left: 2rem;    
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.service-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 24px;
  height: 24px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12L10 17L20 7' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#thumbnail-slider img,
#main-slider img{
  aspect-ratio: 1/1;
  object-fit: cover;
}
#thumbnail-slider img{
  border-radius: .5rem;
}
#main-slider img{
  border-radius: 1.5rem;
}
#thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active{
  border: none;
  transform: unset;
  opacity: 1;
}
#thumbnail-slider .splide__track--nav>.splide__list>.splide__slide{
  opacity: .5;
  border: none;
}
/* END service detail */

/* other courses */
.other-courses{
  padding: 3rem 0;
}
.other-courses .container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-title-wrp{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.section-title-wrp .subtitle{
  color: var(--primary);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.section-title h2{
  color: #0D0D0D;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 0;
}
/* END other courses */

/* Cart Modal */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cart-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 496px;
  height: 100%;
  background-color: #fff;
  z-index: 1050;
  transform: translateX(100%);
  /* Zavrety panel stoji celou sirkou mimo obrazovky. Skryjeme ho, aby na
     mobile nerozsiroval stranku - viditelnost prepneme az po dojazde
     animacie pri zatvarani a hned pri otvarani. */
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 32px 0 0 32px;

}
.cart-modal.open {
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
  transform: translateX(0);
}
.cart-modal-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.cart-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.btn-close-modal {
  background: none;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.btn-close-modal:hover {
  background-color: #f5f5f5;
}
.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  position: relative;
}
.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-item-image {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96px;
  max-height: 96px;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  padding-right: 2rem; 
}
.cart-item-variant {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0.25rem 0.5rem;
  height: 40px;
  width: 70px;
  justify-content: space-between;
}
.quantity-value {
  font-weight: 600;
  font-size: 1rem;
  padding-left: 0.5rem;
}
.quantity-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.quantity-btn {
  background: none;
  border: none;
  padding: 2px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12px;
}
.quantity-btn:hover svg path {
  stroke: var(--primary);
}
.cart-item-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.cart-item-price {
  font-weight: 700;
  font-size: 1.125rem;
}
.cart-item-multiplier {
  color: #999;
  font-size: 0.875rem;
}
.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #C05826;
}
.cart-item-remove:hover {
  opacity: 0.8;
}
.cart-modal-footer {
  padding: 1.5rem 2rem;
  background-color: #F4F6F9;
  border-radius: 0 0 24px 24px; 
}
.cart-modal-footer {
  background-color: #F4F6F9;
  padding: 1.5rem 2rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.cart-total .total-price {
  font-weight: 700;
  font-size: 1.25rem;
}
.cart-modal .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  border-radius: 3rem;
}
@media (max-width: 576px) {
  .cart-modal {
    max-width: 100%;
  }
  
  .cart-modal-header,
  .cart-modal-body,
  .cart-modal-footer {
    padding: 1.5rem;
  }
}
.cart-button{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  border: none;
  transition: all .3s ease-in-out;
}
.cart-button:hover{
  background: #d8530c;
  transform: translateY(-2px);
}
.cart-button svg{
  width: 24px;
  height: 24px;
  stroke: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#cartCountNumber{
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cartCountNumber:focus{
  outline: none;
  box-shadow: none;
}

  .ui-autocomplete {
    position: absolute !important;  
    z-index: 300000 !important;

    margin-top: 6px;
    padding: 6px;

    border-radius: 12px;
    border: 1px solid #e9e9e9;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);

    max-height: 280px;              
    overflow-y: auto;              
    overflow-x: hidden;

    width: auto;                   
    max-width: 600px;
    }

    .ui-autocomplete .ui-menu-item {
    list-style: none;
    margin: 0;
    }

    .ui-autocomplete .ui-menu-item + .ui-menu-item {
    margin-top: 6px;          
    }


  .ui-autocomplete .ui-menu-item { margin: 0; list-style: none; margin-bottom: 20px; }

  .ui-autocomplete .ui-menu-item-wrapper {
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    line-height: 1.2;
  }

  .ui-autocomplete .ui-state-active,
  .ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
    border: 0 !important;
    background: rgba(243,112,33,.10) !important;
    color: #111 !important;
  }

  .sd-item-title {
    font-weight: 700;
    font-size: .95rem;
  }
  .sd-item-meta {
    margin-top: 4px;
    font-size: .85rem;
    color: #6b7280;
  }
  .sd-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: .8rem;
    margin-left: 6px;
    vertical-align: middle;
  }

  /* --- Sidebar categories --- */
.sidebar-categories-title{
  font-weight: 600;
  margin-bottom: .5rem;
}

.sidebar-categories-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}

.sidebar-cat-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .85rem;
  border-radius: .85rem;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-weight: 600;
  font-size: .95rem;
  transition: .15s;
  text-align: left;
}

.sidebar-cat-btn:hover{
  border-color: rgba(0,0,0,.25);
  transform: translateY(-1px);
}

.sidebar-cat-btn.active,
.sidebar-cat-btn[aria-pressed="true"]{
  border-color: #F37121;
  box-shadow: 0 0 0 .15rem rgba(243,113,33,.15);
}

.sidebar-cat-btn .cat-count{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(0,0,0,.55);
}

.discount-tooltip .tooltip-inner{
  max-width: 420px;       
  white-space: nowrap;    
  text-align: left;
}


/* ==== BEXPO mapa SR v pätičke ==== */
.footer .footer-map {
  padding: 0 0 2rem;
}
.bexpo-map {
  max-width: 520px;
  margin: 0 auto;
}
.bexpo-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.bexpo-map__outline {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  stroke-linejoin: round;
  opacity: .9;
}
.bexpo-map__link {
  cursor: pointer;
  outline: none;
}
.bexpo-map__dot {
  fill: var(--primary);
  transition: r .2s ease;
}
.bexpo-map__link:hover .bexpo-map__dot,
.bexpo-map__link:focus-visible .bexpo-map__dot {
  r: 12;
}
.bexpo-map__pulse {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  animation: bexpoPulse 2.4s ease-out infinite;
}
.bexpo-map__pulse--d1 {
  animation-delay: .8s;
}
.bexpo-map__pulse--d2 {
  animation-delay: 1.6s;
}
.bexpo-map__label {
  fill: var(--white);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  transition: fill .2s ease;
}
.bexpo-map__link:hover .bexpo-map__label,
.bexpo-map__link:focus-visible .bexpo-map__label {
  fill: var(--primary);
  text-decoration: underline;
}
.bexpo-map__claim {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  letter-spacing: .4px;
}
.bexpo-map__claim strong {
  color: var(--primary);
  font-weight: 600;
}
@keyframes bexpoPulse {
  0% { r: 9; opacity: .8; }
  100% { r: 26; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bexpo-map__pulse { animation: none; opacity: 0; }
}

/**
 * CTA upravy - hero, kontakt, mobilna lista
 */

/* Kotva na formular nesmie skoncit pod fixnou hlavickou */
#cenova-ponuka {
  scroll-margin-top: 6rem;
}

/* Textovy odkaz pod oranzovym tlacidlom vo video hero (tmavy podklad) */
.hero .hero-video .hero-video-content .hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.hero .hero-video .hero-video-content .hero-video-link:hover,
.hero .hero-video .hero-video-content .hero-video-link:focus {
  color: var(--white);
  opacity: 0.75;
}

/* Tlacidla Zavolat / Napisat spravu v kontaktnom bloku s fotkou */
.contact-section .contact-person .contact-person-actions {
  margin-top: 1.25rem;
}
.contact-section .contact-person .contact-person-actions .btn {
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
}

/* Poznamka pod odosielacim tlacidlom formulara */
.contact-section .contact-form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #6B7280;
  text-align: left;
}

/* Fixna CTA lista - rovnaky princip ako #backToTopBtn: vsetko v zakladnom
   pravidle, bez media query. Media query nizsie ju len zapina na mobile. */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom));
  background-color: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
}
.mobile-cta-bar__btn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  border-radius: 3rem;
  border: 1px solid var(--black);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
}
.mobile-cta-bar__btn--call {
  color: var(--black);
  background-color: transparent;
}
.mobile-cta-bar__btn--call:hover,
.mobile-cta-bar__btn--call:focus {
  color: var(--black);
}
.mobile-cta-bar__btn--offer {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}
.mobile-cta-bar__btn--offer:hover,
.mobile-cta-bar__btn--offer:focus {
  color: var(--white);
}
@media (max-width: 767.98px) {
  .mobile-cta-bar {
    display: flex;
  }
  /* Lista prekryva patu a tlacidlo "spat hore" - odsadime ich nad nu */
  #page-mainpagev2-home {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
  #page-mainpagev2-home #backToTopBtn {
    bottom: calc(5.5rem + env(safe-area-inset-bottom));
    right: 1rem;
  }
}

/* Hero vlavo: obe tlacidla v jednom riadku, kazde na jednom riadku textu.
   Karta col-lg-5 je uzka, preto na desktope zmensujeme bocny padding karty
   aj tlacidiel. flex-wrap: wrap je zachrana - ak by sa pri danej sirke predsa
   nezmestili, spadnu pod seba (nikdy nepretecu a nikdy nebudu na dva riadky). */
.hero .hero-content .btn-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.hero .hero-content .btn-group > .btn {
  white-space: nowrap;
}

/* Desktop: jeden riadok. Bocny padding karty stiahnuty z 3rem/2.5rem na 2rem,
   inak sa dvojica do karty nezmesti ani pri zmensenom pisme. */
@media (min-width: 768px) {
  .hero .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero .hero-content .btn-group > .btn {
    flex: 0 1 auto;
    width: auto;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}
@media (min-width: 992px) {
  .hero .hero-content .btn-group > .btn {
    font-size: 0.8125rem;
  }
}

/* Mobil: pod sebou na plnu sirku, v plnej velkosti. */
@media (max-width: 767.98px) {
  .hero .hero-content .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .hero-content .btn-group > .btn {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Video hero: bez ikony a mensi padding, aby bol dlhy nazov na jednom riadku. */
  .hero .hero-video .hero-video-content .btn-group > .btn {
    white-space: nowrap;
    font-size: 0.8125rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }
  .hero .hero-video .hero-video-content .btn-group > .btn svg {
    display: none;
  }
}
/* Male telefony - inak sa najdlhsi nazov na jeden riadok nezmesti. */
@media (max-width: 400px) {
  .hero .hero-content .btn-group > .btn {
    font-size: 0.75rem;
  }
  .hero .hero-video .hero-video-content .btn-group > .btn {
    font-size: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Odosielacie tlacidlo formulara: v col-lg-4 sa "Odoslať nezáväznú žiadosť"
   pri povodnej velkosti nezmesti na jeden riadok. */
.contact-section form button.btn {
  white-space: nowrap;
  font-size: 0.8125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.contact-section form button.btn svg {
  flex-shrink: 0;
}

