@charset "UTF-8";
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
.fot-training-horizontal-scroll {
  padding: 4.75rem 0 4.625rem;
  background: linear-gradient(to top, #E4F2F9 20%, #FFFFFF 100%);
  position: relative;
}

.fot-training-horizontal-scroll::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../images/fot-website-background-grid-light.png");
  background-position: bottom;
  background-repeat: repeat-x;
  position: absolute;
  z-index: 0;
  opacity: 0.33;
}

.fot-training-horizontal-scroll__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 1;
}

.fot-training-horizontal-scroll__header {
  margin-bottom: 2.75rem;
}

.fot-training-horizontal-scroll__content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.4375rem;
}

.fot-training-horizontal-scroll__content-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.125rem;
  max-width: 51.0625rem;
}

.fot-training-horizontal-scroll__content-text h2 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: #01013D;
}
.fot-training-horizontal-scroll__content-text h2 em {
  color: #002C87;
  font-style: italic;
}

.fot-training-horizontal-scroll__content-text p {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  color: #232325;
  line-height: 1.3;
  margin: 0;
  color: #232325;
}

.fot-training-horizontal-scroll__archive-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.fot-training-horizontal-scroll__archive-button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  color: #232325;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #002C87;
}
.fot-training-horizontal-scroll__archive-button:hover {
  color: #01013D;
}

.fot-training-horizontal-scroll__archive-arrow {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.fot-training-horizontal-scroll__archive-button:hover .fot-training-horizontal-scroll__archive-arrow {
  transform: translateX(0.25rem);
}

.fot-training-horizontal-scroll__training-pill {
  padding: 0.375rem 1rem;
}

.fot-training-horizontal-scroll__tags {
  margin-bottom: 1.1875rem;
}

.fot-training-horizontal-scroll__tags-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fot-training-horizontal-scroll__tag {
  margin: 0;
}

.fot-training-horizontal-scroll__tag-button {
  padding: 1rem 1.375rem;
  border-radius: 3.125rem;
  border: 1px solid #ECEDEE;
  background: #FFFFFF;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #01013D;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.fot-training-horizontal-scroll__tag-button:hover, .fot-training-horizontal-scroll__tag-button.active {
  background: #E4F2F9;
  color: #002C87;
  border-color: rgba(0, 44, 135, 0.33);
}

.fot-training-horizontal-scroll--no-tags .fot-training-horizontal-scroll__carousel-wrapper {
  margin-top: 0.5rem;
}

.fot-training-horizontal-scroll__carousel-wrapper {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .fot-training-horizontal-scroll__carousel-wrapper {
    width: 150%;
    max-width: none;
    margin-left: 0;
    overflow: visible;
  }
}

.fot-training-horizontal-scroll__slider {
  position: relative;
  width: 100%;
  margin: 0;
  max-width: calc(25.125rem * 4 + 1rem * 3);
  overflow: hidden;
  padding: 1.25rem 0;
}

.fot-training-horizontal-scroll__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}
@media (min-width: 992px) {
  .fot-training-horizontal-scroll__track {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.fot-training-horizontal-scroll__track:active {
  cursor: grabbing;
}

.fot-training-horizontal-scroll__slide {
  flex: 0 0 25.125rem;
  width: 25.125rem;
  max-width: 25.125rem;
}

.fot-training-horizontal-scroll__card {
  width: 100%;
  max-height: 38.5rem;
  background: #FFFFFF;
  border-radius: 0.9375rem;
  box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 44, 135, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 1.875rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fot-training-horizontal-scroll__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5625rem;
  background-color: #01013D;
  z-index: 0;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
}
.fot-training-horizontal-scroll__card > * {
  position: relative;
  z-index: 1;
}

.fot-training-horizontal-scroll__card-image {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
  margin-bottom: 1.1875rem;
}

.fot-training-horizontal-scroll__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 0.9375rem;
}

.fot-training-horizontal-scroll__card-logo-overlay {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  background-image: url("../../images/fot-atf-tech-button-background-small.png");
  background-size: cover;
  backdrop-filter: blur(10px);
  height: 3.75rem;
  width: 5.8125rem;
  border-radius: 0.625rem;
  padding: 0.4375rem 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fot-training-horizontal-scroll__card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fot-training-horizontal-scroll__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fot-training-horizontal-scroll__card-title {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.375rem;
  color: #01013D;
  margin: 0 0 0.3125rem;
  line-height: 1.3;
}

.fot-training-horizontal-scroll__card-description {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.9375rem;
}

.fot-training-horizontal-scroll__card-price {
  color: #232325;
  margin: 0 0 0.9375rem;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-currency {
  font-size: 1rem;
  font-weight: 600;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-amount {
  font-size: 1.5rem;
  font-weight: 600;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-sale {
  color: #E52B17;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-sale .fot-training-horizontal-scroll__price-currency {
  font-size: 1rem;
  font-weight: 600;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-sale .fot-training-horizontal-scroll__price-amount {
  font-size: 1.5rem;
  font-weight: 600;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-regular {
  color: #6E6E6F;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-regular .fot-training-horizontal-scroll__price-currency,
.fot-training-horizontal-scroll__card-price .fot-training-horizontal-scroll__price-regular .fot-training-horizontal-scroll__price-amount {
  font-size: 1.125rem;
  font-weight: 400;
}
.fot-training-horizontal-scroll__card-price .woocommerce-Price-amount {
  font-size: 1.5rem;
  font-weight: 600;
}
.fot-training-horizontal-scroll__card-price .woocommerce-Price-currencySymbol {
  font-size: 1rem;
  font-weight: 600;
}

.fot-training-horizontal-scroll__card-button {
  margin-top: auto;
  margin: 0 0 2.125rem;
}

.fot-training-horizontal-scroll__card-footer {
  border-top: 2px dashed #ECEDEE;
  margin: 0 -1.875rem -1.875rem;
  padding: 1rem 1.875rem 1.6875rem;
}

.fot-training-horizontal-scroll__card-categories {
  font-size: 1rem;
  font-weight: 600;
  color: #002C87;
  margin: 0 0 0.4375rem;
}

.fot-training-horizontal-scroll__card-certification {
  font-size: 1rem;
  font-weight: 400;
  color: #01013D;
  margin: 0 0 0.5rem;
}

.fot-training-horizontal-scroll__card-tags {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6A;
}

.fot-training-horizontal-scroll__dots {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  margin-left: 0;
  margin-top: 1.9375rem;
}

.fot-training-horizontal-scroll__dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.4375rem;
  background-color: transparent;
  border: 4px solid #002C87;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fot-training-horizontal-scroll__dot:hover {
  transform: scale(1.1);
}
.fot-training-horizontal-scroll__dot.active {
  background-color: #002C87;
  width: 1.875rem;
  border-radius: 0.4375rem;
}

/*# sourceMappingURL=training-horizontal-scroll-block.css.map */
