@charset "UTF-8";
/*--------------------------------------------------------------
# Technology Hero Block Styles
--------------------------------------------------------------*/
/**
 * 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-technology-hero {
  background-image: url("../../images/square-grids-full.png");
  background-repeat: repeat-x;
  background-position: bottom;
  position: relative;
  margin-top: 1.25rem;
}

.fot-technology-hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
}

.fot-technology-hero__overlay {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}

.fot-technology-hero__background-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  height: 100%;
  min-height: 48.125rem;
}

.fot-technology-hero__background-wrap::before {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0.27%, rgba(0, 0, 0, 0.8) 100%);
  background-blend-mode: multiply;
  background-repeat: repeat-x;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
}

.fot-technology-hero__background-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background: url("../../images/overlay-grid.png");
  background-size: cover;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}

.fot-technology-hero__background-image {
  display: block;
  object-fit: cover;
  height: 100% !important;
}

.fot-technology-hero__container {
  position: absolute;
  top: 0;
  z-index: 1;
  padding: 4.8125rem 5.375rem 3.25rem;
}

.fot-technology-hero__content {
  margin-bottom: 1.875rem;
}

.fot-technology-hero__content h1 {
  line-height: 1.12;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
  max-width: 28.5rem;
}
.fot-technology-hero__content h1 em {
  font-style: italic;
}

.fot-technology-hero__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.25rem;
}

.fot-technology-hero__content ul li {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-size: 1.1875rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 0.9375rem;
  padding-left: 2.3125rem;
  position: relative;
}
.fot-technology-hero__content ul li:last-child {
  margin-bottom: 0;
}
.fot-technology-hero__content ul li::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("../../icons/icon-check.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-color: #E4F2F9;
  border-radius: 0.3125rem;
}

.fot-technology-hero__rating-info {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.5rem;
  cursor: pointer;
  height: 21px;
  transform: translateY(-4px);
}

.fot-technology-hero__rating .fot-trustpilot__info-button::before {
  width: 1.25rem;
  height: 1.25rem;
}

.fot-technology-hero__technologies {
  margin-top: 3.375rem;
}

.fot-technology-hero__tech-grid {
  display: flex;
  gap: 1.5625rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fot-technology-hero__tech-item {
  flex-basis: calc(33.333% - 25px);
  min-height: 8.5625rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.5rem;
  border-radius: 1.6875rem;
  border: 1px solid rgba(236, 237, 238, 0.33);
}

.fot-technology-hero__tech-logo {
  max-width: 12.9375rem !important;
  max-height: 5.0625rem;
  display: block;
  position: relative;
  z-index: 2;
}

.fot-technology-hero__tech-link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid rgba(236, 237, 238, 0.4);
  border-radius: 1.25rem;
  overflow: hidden;
}
.fot-technology-hero__tech-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../images/fot-atf-tech-button-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  background-color: #FFFFFF;
}
.fot-technology-hero__tech-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  opacity: 0.33;
  z-index: 1;
  filter: blur(10px);
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(0, 0, 0, 0.07);
}

/*# sourceMappingURL=technology-hero-block.css.map */
