@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-browse-by-technology {
  padding: 3.9375rem 0 6.5625rem;
  border-top: 1px solid #D9D9D9;
}

.fot-browse-by-technology__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.fot-browse-by-technology__content {
  text-align: center;
  margin-bottom: 3.1875rem;
}

.fot-browse-by-technology__content h2 {
  color: #01013D;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.8125rem;
}
.fot-browse-by-technology__content h2 em {
  font-style: italic;
  color: #002C87;
}
.fot-page--training .fot-browse-by-technology__content h2, .fot-page--search .fot-browse-by-technology__content h2, .fot-card-search--training .fot-browse-by-technology__content h2, .fot-card-search--default .fot-browse-by-technology__content h2, .fot-block--training .fot-browse-by-technology__content h2, .fot-color-theme--blue .fot-browse-by-technology__content h2 {
  color: #01013D;
}
.fot-page--certifications .fot-browse-by-technology__content h2, .fot-card-search--certifications .fot-browse-by-technology__content h2, .fot-block--certifications .fot-browse-by-technology__content h2, .fot-color-theme--green .fot-browse-by-technology__content h2 {
  color: #002100;
}
.fot-page--events .fot-browse-by-technology__content h2, .fot-card-search--events .fot-browse-by-technology__content h2, .fot-block--events .fot-browse-by-technology__content h2, .fot-color-theme--pink .fot-browse-by-technology__content h2 {
  color: #430033;
}
.fot-page--news .fot-browse-by-technology__content h2, .fot-card-search--news .fot-browse-by-technology__content h2, .fot-block--news .fot-browse-by-technology__content h2, .fot-color-theme--purple .fot-browse-by-technology__content h2 {
  color: #1E053F;
}
.fot-page--community .fot-browse-by-technology__content h2, .fot-card-search--community .fot-browse-by-technology__content h2, .fot-block--community .fot-browse-by-technology__content h2, .fot-color-theme--orange .fot-browse-by-technology__content h2 {
  color: #490200;
}
.fot-page--jobs .fot-browse-by-technology__content h2, .fot-card-search--jobs .fot-browse-by-technology__content h2, .fot-block--jobs .fot-browse-by-technology__content h2, .fot-color-theme--red .fot-browse-by-technology__content h2 {
  color: #530F10;
}
.fot-page--training .fot-browse-by-technology__content h2 em, .fot-page--search .fot-browse-by-technology__content h2 em, .fot-card-search--training .fot-browse-by-technology__content h2 em, .fot-card-search--default .fot-browse-by-technology__content h2 em, .fot-block--training .fot-browse-by-technology__content h2 em, .fot-color-theme--blue .fot-browse-by-technology__content h2 em {
  color: #002C87;
}
.fot-page--certifications .fot-browse-by-technology__content h2 em, .fot-card-search--certifications .fot-browse-by-technology__content h2 em, .fot-block--certifications .fot-browse-by-technology__content h2 em, .fot-color-theme--green .fot-browse-by-technology__content h2 em {
  color: #006100;
}
.fot-page--events .fot-browse-by-technology__content h2 em, .fot-card-search--events .fot-browse-by-technology__content h2 em, .fot-block--events .fot-browse-by-technology__content h2 em, .fot-color-theme--pink .fot-browse-by-technology__content h2 em {
  color: #E72982;
}
.fot-page--news .fot-browse-by-technology__content h2 em, .fot-card-search--news .fot-browse-by-technology__content h2 em, .fot-block--news .fot-browse-by-technology__content h2 em, .fot-color-theme--purple .fot-browse-by-technology__content h2 em {
  color: #5700C5;
}
.fot-page--community .fot-browse-by-technology__content h2 em, .fot-card-search--community .fot-browse-by-technology__content h2 em, .fot-block--community .fot-browse-by-technology__content h2 em, .fot-color-theme--orange .fot-browse-by-technology__content h2 em {
  color: #E52B17;
}
.fot-page--jobs .fot-browse-by-technology__content h2 em, .fot-card-search--jobs .fot-browse-by-technology__content h2 em, .fot-block--jobs .fot-browse-by-technology__content h2 em, .fot-color-theme--red .fot-browse-by-technology__content h2 em {
  color: #BC0000;
}

.fot-browse-by-technology__content 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;
  margin: 0 auto;
  line-height: 1.4;
  max-width: 51.375rem;
}

.fot-browse-by-technology__logos-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.125rem;
  max-width: 67rem;
  margin: 0 auto;
}

.fot-browse-by-technology:not(.fot-browse-by-technology--tooltips-enabled) .fot-browse-by-technology__logo-item {
  flex: 0 0 12.5rem;
  max-width: 12.5rem;
}
.fot-browse-by-technology:not(.fot-browse-by-technology--tooltips-enabled) .fot-browse-by-technology__logo-link {
  display: block;
  background-color: #FFFFFF;
  border: 1px solid #ECEDEE;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.075);
  border-radius: 1.25rem;
  padding: 1.25rem;
  height: 9.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fot-browse-by-technology:not(.fot-browse-by-technology--tooltips-enabled) .fot-browse-by-technology__logo-link:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.1);
}

.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logos-grid {
  justify-content: space-between;
  max-width: 100%;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-link {
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  height: auto;
  transition: filter 0.3s ease;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo {
  filter: grayscale(100%);
  opacity: 0.66;
  transition: filter 0.3s ease;
  max-width: 11.875rem;
  max-height: 3.3125rem;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip {
  position: relative;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__logo {
  filter: grayscale(0%);
  opacity: 1;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip {
  position: absolute;
  margin-top: 1.9375rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  min-width: 14.0625rem;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-content {
  position: relative;
  background-color: #ECEDEE;
  border: 2px solid #00BEFF;
  border-radius: 1.25rem;
  padding: 0.9375rem 0.9375rem 1.25rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-content::before {
  content: "";
  position: absolute;
  top: -1.4375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.375rem solid transparent;
  border-right: 1.375rem solid transparent;
  border-bottom: 1.375rem solid #00BEFF;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-content::after {
  content: "";
  position: absolute;
  top: -1.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.3125rem solid transparent;
  border-right: 1.3125rem solid transparent;
  border-bottom: 1.3125rem solid #ECEDEE;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-text {
  font-size: 2.8125rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-text-small {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8125rem;
  letter-spacing: -0.01em;
  color: #000000;
  line-height: 1.3;
  color: #232325;
}
.fot-browse-by-technology--tooltips-enabled .fot-browse-by-technology__logo-item.fot-enabled-tooltip .fot-browse-by-technology__tooltip-text-small--bold {
  font-weight: 600;
}

.fot-browse-by-technology__logo {
  display: block;
  max-width: 100%;
  max-height: 3.875rem;
  height: auto;
  object-fit: contain;
}

/*# sourceMappingURL=browse-by-technology-block.css.map */
