/**
 * 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;
}
.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);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: var(--white) !important;
  background-color: #d65e1c !important;
  border-color: #d65e1c !important;
}
.btn-outline-black {
  color: var(--black);
  border-color: var(--black);
  background-color: transparent;
}
.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:active {
  color: var(--black) !important;
  border-color: var(--black) !important;
  background-color: transparent !important;
  opacity: 0.7;
}
.btn-outline-white {
  color: var(--white);
  border-color: var(--white);
  background-color: transparent;
}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
  color: var(--white) !important;
  border-color: var(--white) !important;
  background-color: transparent !important;
  opacity: 0.7;
}
.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 {
  color: var(--white) !important;
  background-color: #313131 !important;
  border-color: #313131 !important;
}
.btn-white {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: var(--primary) !important;
  background-color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
}
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.25rem;
  height: 1.25rem;
  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-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;
  transition: color 0.15s ease;
}
.header .nav-link:hover,
.header .nav-link:focus,
.header .nav-link:active {
  color: 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: block;
  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);
}



/**
 * Breadcrumb
 */
.breadcrumb-wrapper .breadcrumb-content {
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.5rem;
  background: #F3F5F9;
  min-height: 300px;
  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 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.15s ease;
}
.service-card:hover,
.service-card:focus,
.service-card:active {
  color: var(--black);
  background: var(--white);
  opacity: 0.8;
  /* box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1); */
}
.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: opacity 0.3s ease, background 0.3s ease;
  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;
}
.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;
}
#page-mainpagev2-home .course-card {
  margin: 0;
  padding: 1.5rem 0.875rem 2rem;
}
.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: center;
  gap: 3.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 1.5rem;
}
#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;
}



/**
 * 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: 2rem;
}
.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:hover,
.services-list .service-card:focus,
.services-list .service-card:active {
  opacity: 1;
  /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15); */
  transform: translateY(-6px);
}



/**
 * 
 * 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;
}
.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;
  margin-bottom: 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);
}



/**
 * 
 * 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 cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card a {
  text-decoration: none;
  color: var(--black);
  transition: color 0.15s ease;
}
.post-card a:hover,
.post-card a:focus,
.post-card a:active {
  color: var(--primary);
}
.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;
}
