@charset "UTF-8";
/*!
Theme Name: Focus on Tech
Theme URI: http://underscores.me/
Author: Aeros Salaga
Author URI: https://aerossalaga.com/
Description: Focus on Tech main theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: focus-on-tech
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Focus on Tech is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
	- Font face declarations
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "Bromny";
  src: url("assets/fonts/bromny-regular-webfont.woff2") format("woff2"), url("assets/fonts/bromny-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bromny";
  src: url("assets/fonts/bromny-regularitalic-webfont.woff2") format("woff2"), url("assets/fonts/bromny-regularitalic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Bromny";
  src: url("assets/fonts/bromny-semibold-webfont.woff2") format("woff2"), url("assets/fonts/bromny-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bromny";
  src: url("assets/fonts/bromny-semibolditalic-webfont.woff2") format("woff2"), url("assets/fonts/bromny-semibolditalic-webfont.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/**
 * 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));
 */
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body:not(#tinymce) {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
h1 {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 2.8125rem;
  line-height: 1;
  letter-spacing: 0;
  color: #01013D;
  clear: both;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 0;
  color: #01013D;
  clear: both;
  margin: 2.5rem 0 1.5rem;
}

h3 {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #1E053F;
  clear: both;
  margin: 2rem 0 1.25rem;
}

h4 {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #232325;
  clear: both;
  margin: 1.5rem 0 1rem;
}

h5 {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #232325;
  clear: both;
  margin: 1.25rem 0 0.75rem;
}

h6 {
  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.5rem;
  letter-spacing: 0;
  color: #232325;
  clear: both;
  margin: 1rem 0 0.5rem;
}

p {
  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.5rem;
  letter-spacing: 0;
  color: #232325;
  margin-bottom: 1.25rem;
}

ul, ol {
  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.5rem;
  letter-spacing: 0;
  color: #232325;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
ul li, ol 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.5rem;
  letter-spacing: 0;
  color: #232325;
  margin-bottom: 0.5rem;
}
ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #1E053F;
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 0.25rem solid #1E053F;
  background: rgba(30, 5, 63, 0.05);
}
blockquote p {
  margin-bottom: 1rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}

address {
  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.5rem;
  letter-spacing: 0;
  color: #232325;
  margin: 0 0 1.5rem;
  font-style: italic;
}

pre {
  background: #ECEDEE;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  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.5rem;
  letter-spacing: 0;
  color: #232325;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow: auto;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(110, 110, 111, 0.2);
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  color: #1E053F;
  background: rgba(30, 5, 63, 0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

abbr,
acronym {
  border-bottom: 1px dotted #6E6E6F;
  cursor: help;
  text-decoration: none;
}

mark,
ins {
  background: #FFFACD;
  text-decoration: none;
  padding: 0.125rem 0.25rem;
  border-radius: 0.125rem;
}

del {
  text-decoration: line-through;
  color: #BC0000;
}

big {
  font-size: 125%;
}

small,
.fot-small-text,
caption {
  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.5rem;
  letter-spacing: 0;
  color: #232325;
}

caption {
  margin-bottom: 0.75rem;
  text-align: left;
}

hr {
  background-color: #D9D9D9;
  border: 0;
  height: 1px;
  margin: 2rem 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

[style*="font-family: 'Bromny'"],
[style*="font-family: Bromny"],
.fot-bromny-font,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

.fot-site,
body {
  overflow-x: hidden;
}

body:not(#tinymce).is-sticky-header {
  margin-top: 4.375rem;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #232325;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

/* Elements
--------------------------------------------- */
hr {
  border: 0;
  height: 1px;
  margin: 1.5rem 0;
}

body ul,
body ol {
  margin: 0;
  padding: 0;
}
body ul {
  list-style: disc;
}
body ol {
  list-style: decimal;
}
body li > ul,
body li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

body#tinymce ul,
body#tinymce ol {
  padding-left: 25px;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/
.fot-table {
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  border: 1px solid #ECEDEE;
  overflow: hidden;
  background-color: #FEEEEE;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.fot-table th {
  background-color: #530F10;
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border-left: 1px solid #FFFFFF;
  line-height: 1.1;
  text-align: left;
  vertical-align: top;
}
.fot-table td {
  padding: 1.25rem;
  padding-right: 1.25rem !important;
  border-bottom: 1px solid #ECEDEE;
  border-left: 1px solid #ECEDEE;
  text-align: left;
  vertical-align: top;
}
.fot-table tr:nth-child(even) {
  background-color: #FFFFFF;
}
.fot-table a {
  color: #FF0000;
}
.fot-table p {
  margin: 0;
}

/*--------------------------------------------------------------
# Badges
--------------------------------------------------------------*/
.fot-badge--training, .fot-badge--blue {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  box-shadow: 0 0 0.25rem 0 rgba(0, 190, 255, 0.5);
}
.fot-badge--training::before, .fot-badge--blue::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-training.svg");
}
.fot-badge--training.fot-badge--small, .fot-badge--blue.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--training.fot-badge--small::before, .fot-badge--blue.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-training.svg");
}
.fot-badge--training.fot-badge--big, .fot-badge--blue.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--training.fot-badge--big::before, .fot-badge--blue.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-training.svg");
}
.fot-badge--certifications, .fot-badge--green {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #00C800 0%, #009900 100%);
  box-shadow: 0 0 0.25rem 0 rgba(0, 196, 0, 0.5);
}
.fot-badge--certifications::before, .fot-badge--green::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-certifications.svg");
}
.fot-badge--certifications.fot-badge--small, .fot-badge--green.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--certifications.fot-badge--small::before, .fot-badge--green.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-certifications.svg");
}
.fot-badge--certifications.fot-badge--big, .fot-badge--green.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--certifications.fot-badge--big::before, .fot-badge--green.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-certifications.svg");
}
.fot-badge--news, .fot-badge--purple {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #A056FF 0%, #803CD9 100%);
  box-shadow: 0 0 0.25rem 0 rgba(175, 114, 255, 0.5);
}
.fot-badge--news::before, .fot-badge--purple::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-news.svg");
}
.fot-badge--news.fot-badge--small, .fot-badge--purple.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--news.fot-badge--small::before, .fot-badge--purple.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-news.svg");
}
.fot-badge--news.fot-badge--big, .fot-badge--purple.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--news.fot-badge--big::before, .fot-badge--purple.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-news.svg");
}
.fot-badge--events, .fot-badge--pink {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #FF52A3 0%, #E72982 100%);
  box-shadow: 0 0 0.25rem 0 rgba(255, 94, 169, 0.5);
}
.fot-badge--events::before, .fot-badge--pink::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-events.svg");
}
.fot-badge--events.fot-badge--small, .fot-badge--pink.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--events.fot-badge--small::before, .fot-badge--pink.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-events.svg");
}
.fot-badge--events.fot-badge--big, .fot-badge--pink.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--events.fot-badge--big::before, .fot-badge--pink.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-events.svg");
}
.fot-badge--community, .fot-badge--orange {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #FF7900 0%, #FF5600 100%);
  box-shadow: 0 0 0.25rem 0 rgba(255, 125, 0, 0.5);
}
.fot-badge--community::before, .fot-badge--orange::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-community.svg");
}
.fot-badge--community.fot-badge--small, .fot-badge--orange.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--community.fot-badge--small::before, .fot-badge--orange.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-community.svg");
}
.fot-badge--community.fot-badge--big, .fot-badge--orange.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--community.fot-badge--big::before, .fot-badge--orange.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-community.svg");
}
.fot-badge--jobs, .fot-badge--red {
  width: 3.75rem;
  height: 3.75rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #FF0000 0%, #DC0000 100%);
  box-shadow: 0 0 0.25rem 0 rgba(255, 0, 0, 0.5);
}
.fot-badge--jobs::before, .fot-badge--red::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.25rem 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-jobs.svg");
}
.fot-badge--jobs.fot-badge--small, .fot-badge--red.fot-badge--small {
  width: 1.75rem;
  height: 1.75rem;
}
.fot-badge--jobs.fot-badge--small::before, .fot-badge--red.fot-badge--small::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-jobs.svg");
}
.fot-badge--jobs.fot-badge--big, .fot-badge--red.fot-badge--big {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 1.4375rem;
}
.fot-badge--jobs.fot-badge--big::before, .fot-badge--red.fot-badge--big::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5625rem 3.5625rem;
  width: 3.5625rem;
  height: 3.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-jobs.svg");
}

/*--------------------------------------------------------------
# Pills / Tags
--------------------------------------------------------------*/
.fot-pill {
  background-color: #E4F2F9;
  color: #01013D;
  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;
  padding: 0.4375rem 0.8125rem;
  border-radius: 0.9375rem;
  display: inline-block;
}
.fot-page--training .fot-pill, .fot-page--search .fot-pill, .fot-card-search--training .fot-pill, .fot-card-search--default .fot-pill, .fot-block--training .fot-pill, .fot-color-theme--blue .fot-pill {
  background-color: #E4F2F9;
}
.fot-page--certifications .fot-pill, .fot-card-search--certifications .fot-pill, .fot-block--certifications .fot-pill, .fot-color-theme--green .fot-pill {
  background-color: #EBFAEB;
}
.fot-page--events .fot-pill, .fot-card-search--events .fot-pill, .fot-block--events .fot-pill, .fot-color-theme--pink .fot-pill {
  background-color: #FEF2FF;
}
.fot-page--news .fot-pill, .fot-card-search--news .fot-pill, .fot-block--news .fot-pill, .fot-color-theme--purple .fot-pill {
  background-color: #F6F0FF;
}
.fot-page--community .fot-pill, .fot-card-search--community .fot-pill, .fot-block--community .fot-pill, .fot-color-theme--orange .fot-pill {
  background-color: #FFEAD8;
}
.fot-page--jobs .fot-pill, .fot-card-search--jobs .fot-pill, .fot-block--jobs .fot-pill, .fot-color-theme--red .fot-pill {
  background-color: #FEEEEE;
}
.fot-page--training .fot-pill, .fot-page--search .fot-pill, .fot-card-search--training .fot-pill, .fot-card-search--default .fot-pill, .fot-block--training .fot-pill, .fot-color-theme--blue .fot-pill {
  color: #01013D;
}
.fot-page--certifications .fot-pill, .fot-card-search--certifications .fot-pill, .fot-block--certifications .fot-pill, .fot-color-theme--green .fot-pill {
  color: #002100;
}
.fot-page--events .fot-pill, .fot-card-search--events .fot-pill, .fot-block--events .fot-pill, .fot-color-theme--pink .fot-pill {
  color: #430033;
}
.fot-page--news .fot-pill, .fot-card-search--news .fot-pill, .fot-block--news .fot-pill, .fot-color-theme--purple .fot-pill {
  color: #1E053F;
}
.fot-page--community .fot-pill, .fot-card-search--community .fot-pill, .fot-block--community .fot-pill, .fot-color-theme--orange .fot-pill {
  color: #490200;
}
.fot-page--jobs .fot-pill, .fot-card-search--jobs .fot-pill, .fot-block--jobs .fot-pill, .fot-color-theme--red .fot-pill {
  color: #530F10;
}
.fot-pill--regular {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #01013D;
  padding: 0.4375rem 1rem;
}
.fot-pill--green {
  background-color: #EBFAEB;
  color: #002100;
}

.fot-pill__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

/*--------------------------------------------------------------
# Link Arrow
--------------------------------------------------------------*/
.fot-link-arrow {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0;
  color: #002C87;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.fot-link-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 0.3125rem;
  transition: all 0.3s ease;
}
.fot-link-arrow::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: inherit;
}
.fot-link-arrow:hover::before {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
.fot-icon-boxed {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.fot-icon-boxed--linkedin::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-image: url("assets/icons/icon-boxed-linkedin.svg");
}
.fot-icon-boxed--facebook::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-image: url("assets/icons/icon-boxed-facebook.svg");
}
.fot-icon-boxed--instagram::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-image: url("assets/icons/icon-boxed-instagram.svg");
}
.fot-icon-boxed--youtube {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.6875rem 1.4375rem;
  width: 1.6875rem;
  height: 1.4375rem;
  display: inline-block;
  background-image: url("assets/icons/icon-boxed-youtube.svg");
}

.fot-icon--info-circle-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.96875rem 0.96875rem;
  width: 0.96875rem;
  height: 0.96875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-information-circle-white.svg");
}
.fot-icon--info-circle-dark::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.96875rem 0.96875rem;
  width: 0.96875rem;
  height: 0.96875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-information-circle-dark.svg");
}
.fot-icon--blank-calendar::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-blank-calendar.svg");
}
.fot-icon--circle-clock::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-circle-clock.svg");
}
.fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-training.svg");
}
.fot-page--training .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-training.svg");
}
.fot-page--certifications .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-certifications.svg");
}
.fot-page--events .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-events.svg");
}
.fot-page--news .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-news.svg");
}
.fot-page--community .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-community.svg");
}
.fot-page--jobs .fot-icon--search::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-magnifying-glass-jobs.svg");
}
.fot-icon--location-pin::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-location-pin.svg");
}
.fot-icon--calendar-mark::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-calendar-mark.svg");
}
.fot-icon--play-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-play-white.svg");
}
.fot-icon--add-blue::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-add-blue.svg");
}
.fot-icon--subtract-blue::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-subtract-blue.svg");
}
.fot-icon--arrow-up-left-red::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-up-left-red.svg");
}
.fot-icon--arrow-right-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-right-white.svg");
}
.fot-icon--file-upload::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-file-upload.svg");
}
.fot-icon--lock::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-lock.svg");
}
.fot-icon--location::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-location.svg");
}
.fot-icon--phone::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-phone.svg");
}
.fot-icon--search-black::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("assets/icons/icon-search-black.svg");
}
.fot-icon--delete-file-red::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.375rem 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background-image: url("assets/icons/icon-delete-file-red.svg");
}
.fot-icon--target-arrow-green::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.75rem 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  display: inline-block;
  background-image: url("assets/icons/icon-target-arrow-green.svg");
}
.fot-icon--calendar-schedule-green::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.75rem 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  display: inline-block;
  background-image: url("assets/icons/icon-calendar-schedule-green.svg");
}
.fot-icon--correct-password-check-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.8125rem 1.8125rem;
  width: 1.8125rem;
  height: 1.8125rem;
  display: inline-block;
  background-image: url("assets/icons/icon-correct-password-check-white.svg");
}
.fot-icon--hamburger-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem 0.875rem;
  width: 1.125rem;
  height: 0.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-hamburger-white.svg");
}
.fot-icon--home-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-home-white.svg");
}
.fot-icon--badge-training::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-training.svg");
}
.fot-icon--badge-events::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-events.svg");
}
.fot-icon--badge-certifications::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-certifications.svg");
}
.fot-icon--badge-community::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-community.svg");
}
.fot-icon--badge-jobs::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-badge-jobs.svg");
}
.fot-icon--tools-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-tools-white.svg");
}
.fot-icon--book-ribbon-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-book-ribbon-white.svg");
}
.fot-icon--diamond-shine-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-diamond-shine-white.svg");
}
.fot-icon--area-chart-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-area-chart-white.svg");
}
.fot-icon--setting-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-setting-white.svg");
}
.fot-icon--help-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-help-white.svg");
}
.fot-icon--account-circle-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-account-circle-white.svg");
}
.fot-icon--comment-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-comment-white.svg");
}
.fot-icon--concierge-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-concierge-white.svg");
}
.fot-icon--logout-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-logout-white.svg");
}
.fot-icon--warning-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4375rem 2.25rem;
  width: 2.4375rem;
  height: 2.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-warning-white.svg");
}
.fot-icon--accordion-down::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-accordion-down.svg");
}
.fot-icon--accordion-up::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-accordion-up.svg");
}

.fot-block-icon {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 0.625rem;
  box-shadow: 3px 3px 12px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-block-icon::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}
.fot-block-icon--blue {
  background-color: #002C87;
}
.fot-block-icon--green {
  background-color: #006100;
}
.fot-block-icon--purple {
  background-color: #5700C5;
}
.fot-block-icon--pink {
  background-color: #E72982;
}
.fot-block-icon--orange {
  background-color: #E52B17;
}
.fot-block-icon--red {
  background-color: #BC0000;
}
.fot-block-icon--yellow {
  background-color: #FFD700;
}
.fot-block-icon--ribbon-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-ribbon-white.svg");
}
.fot-block-icon--information-circle-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-information-circle-white.svg");
}
.fot-block-icon--user-question-mark-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-user-question-mark-white.svg");
}
.fot-block-icon--workspace-desk-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-workspace-desk-white.svg");
}
.fot-block-icon--book-1-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-book-1-white.svg");
}
.fot-block-icon--text-search-1-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-text-search-1-white.svg");
}
.fot-block-icon--focus-points-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-focus-points-white.svg");
}
.fot-block-icon--tag-new-square-white::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url("assets/icons/icon-tag-new-square-white.svg");
}

.fot-training-card {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 1.25rem;
  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-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-card > * {
  position: relative;
  z-index: 1;
}

.fot-training-card__image {
  position: relative;
  width: 100%;
  height: 12rem;
  margin-bottom: 1.1875rem;
}

.fot-training-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 0.9375rem;
}
.fot-training-card__img--placeholder {
  background: linear-gradient(135deg, #002C87, #0066FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  padding: 1.25rem;
}

.fot-training-card__logo-overlay {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  background-image: url("assets/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-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fot-training-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fot-training-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-card__description {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.9375rem;
}

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

.fot-training-card__button {
  margin-bottom: 1.5rem;
}

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

.fot-training-card__categories {
  font-size: 0.875rem;
  font-weight: 600;
  color: #002C87;
  margin: 0 0 0.4375rem;
}

.fot-training-card__certification {
  font-size: 0.875rem;
  font-weight: 400;
  color: #01013D;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.fot-training-card__tags {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6A6A6A;
}

.fot-jobs-card {
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-radius: 1.25rem;
  box-shadow: 0 0.125rem 0.75rem 0 #ECEDEE;
  overflow: hidden;
}
.fot-jobs-card .fot-jobs-card__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem 0.875rem 1.75rem;
  background: #490200;
  color: #FFFFFF;
}
.fot-jobs-card .fot-jobs-card__title {
  margin: 0;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-size: 1.125rem;
}
.fot-jobs-card .fot-jobs-card__title-link {
  color: #fff;
  text-decoration: none !important;
}
.fot-jobs-card .fot-jobs-card__meta {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  opacity: 0.9;
  font-style: italic;
}
.fot-jobs-card .fot-jobs-card__content {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .fot-jobs-card .fot-jobs-card__content {
    grid-template-columns: 7fr 3fr;
  }
  .fot-jobs-card .fot-jobs-card__content::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    bottom: 1.25rem;
    left: 70%;
    pointer-events: none;
    border: 1px dashed #e5e5e5;
  }
}
.fot-jobs-card .fot-jobs-card__summary {
  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;
  color: #232325;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.fot-jobs-card .fot-jobs-card__attributes {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0;
  align-self: start;
}
.fot-jobs-card .fot-jobs-card__attribute {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto;
  gap: 0.15rem;
  align-items: start;
}
.fot-jobs-card .fot-jobs-card__attribute + .fot-jobs-card__attribute {
  margin: 0.625rem 0 0;
}
.fot-jobs-card .fot-jobs-card__attribute-key {
  margin: 0;
}
.fot-jobs-card .fot-jobs-card__icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  color: #C40000;
}
.fot-jobs-card .fot-jobs-card__attribute-value {
  margin: 0.3125rem 0 0;
  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;
  color: #232325;
  font-size: 0.9375rem;
}
.fot-jobs-card .fot-jobs-card__footer {
  padding: 0 1.25rem 1.25rem 1.75rem;
}
.fot-jobs-card .fot-jobs-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.fot-jobs-card .fot-jobs-card__tag {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 62.4375rem;
  background: #FEEEEE;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}
.fot-jobs-card .fot-jobs-card__tag span {
  color: #530F10;
}

body.fot-page--jobs .fot-archive-filterable__grid {
  grid-template-columns: repeat(1, 1fr);
}

.fot-event-card {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  border: 1px solid #ECEDEE;
  box-shadow: 0.3125rem 0.3125rem 0.9375rem 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.fot-event-card:hover {
  transform: translateY(-0.25rem);
}

.fot-event-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.fot-event-card__image {
  height: 13rem;
  overflow: hidden;
}

.fot-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fot-event-card__datetime {
  background-color: #430033;
  padding: 1rem 1.875rem;
}

.fot-event-card__date,
.fot-event-card__time {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8125rem;
  color: #FFFFFF;
  line-height: 1.5;
}
.fot-event-card__date:first-child,
.fot-event-card__time:first-child {
  margin-bottom: 0.25rem;
}

.fot-event-card__date-text {
  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;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.fot-event-card__time-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.fot-event-card__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.fot-event-card__icon--date, .fot-event-card__icon--time {
  filter: brightness(0) invert(1);
}

.fot-event-card__content {
  padding: 0.875rem 1.75rem 1.625rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  flex: 1;
}

.fot-event-card__title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0;
  color: #002C87;
  margin: 0 0 0.6875rem;
  color: #232325;
  min-height: 6rem;
  line-height: 1.5;
}

.fot-event-card__excerpt {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #232325;
  color: #232325;
  margin-top: auto;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.fot-event-card__price {
  color: #232325;
  margin: 0 0 1.125rem;
}
.fot-event-card__price .fot-event-card__price-currency {
  font-size: 1rem;
  font-weight: 600;
}
.fot-event-card__price .fot-event-card__price-amount {
  font-size: 1.5rem;
  font-weight: 600;
}
.fot-event-card__price .fot-event-card__price-free {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002100;
}
.fot-event-card__price .fot-event-card__price-external {
  font-size: 1rem;
  font-weight: 600;
  color: #6E6E6F;
  text-transform: uppercase;
}

.fot-event-card__button .fot-button {
  width: 100%;
  padding: 0.625rem 0;
  background: linear-gradient(135deg, #FF52A3 0%, #E72982 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 0.625rem;
  transition: all 0.3s ease;
  border: none;
}
.fot-event-card__button .fot-button:hover {
  background: linear-gradient(135deg, #E72982 0%, #D1246F 100%);
}
.fot-event-card__button .fot-event-external-btn:hover {
  opacity: 0.9;
}

.fot-event-card__footer {
  border-top: 1px dashed #ECEDEE;
  padding: 0.625rem 1.75rem 1.1875rem;
}

.fot-event-card__tags {
  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: 0.875rem;
  color: #6E6E6F;
}

.fot-alert, .fot-info-message, .fot-warning-message, .fot-error-message, .fot-success-message {
  padding: 0.9375rem;
  margin: 1.25rem 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.fot-alert p, .fot-info-message p, .fot-warning-message p, .fot-error-message p, .fot-success-message p {
  margin: 0;
  font-size: 0.875rem;
}
.fot-alert p:not(:last-child), .fot-info-message p:not(:last-child), .fot-warning-message p:not(:last-child), .fot-error-message p:not(:last-child), .fot-success-message p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.fot-alert strong, .fot-info-message strong, .fot-warning-message strong, .fot-error-message strong, .fot-success-message strong {
  font-weight: 600;
}
.fot-alert--success, .fot-success-message {
  background-color: #EBFAEB;
  color: #155724;
}
.fot-alert--error, .fot-error-message {
  background-color: #f8d7da;
  color: #721c24;
}
.fot-alert--warning, .fot-warning-message {
  background-color: #FFFACD;
  color: #856404;
}
.fot-alert--info, .fot-info-message {
  background-color: #d1ecf1;
  color: #0c5460;
}
.fot-alert--dismissible {
  position: relative;
  padding-right: 3.125rem;
}
.fot-alert--compact {
  padding: 0.625rem 0.75rem;
  margin: 0.625rem 0;
  font-size: 0.8125rem;
}
.fot-alert--full-width {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  grid-column: 1/-1;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

.fot-button {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #FFFFFF;
  line-height: 1.5625rem;
  padding: 0.375rem 1.25rem;
  border-radius: 0.625rem;
  background: #002C87;
  display: inline-block;
  transition: all 0.3s ease;
}
.fot-button--big {
  padding: 0.65625rem 1.25rem;
  border-radius: 0.9375rem;
}
.fot-button--white {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--white:hover {
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  border-color: #00BEFF;
}
.fot-button--card-button {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.9375rem;
}
.fot-page--training .fot-button--card-button, .fot-page--search .fot-button--card-button, .fot-card-search--training .fot-button--card-button, .fot-card-search--default .fot-button--card-button, .fot-block--training .fot-button--card-button, .fot-color-theme--blue .fot-button--card-button {
  background-color: #002C87;
}
.fot-page--certifications .fot-button--card-button, .fot-card-search--certifications .fot-button--card-button, .fot-block--certifications .fot-button--card-button, .fot-color-theme--green .fot-button--card-button {
  background-color: #006100;
}
.fot-page--events .fot-button--card-button, .fot-card-search--events .fot-button--card-button, .fot-block--events .fot-button--card-button, .fot-color-theme--pink .fot-button--card-button {
  background-color: #E72982;
}
.fot-page--news .fot-button--card-button, .fot-card-search--news .fot-button--card-button, .fot-block--news .fot-button--card-button, .fot-color-theme--purple .fot-button--card-button {
  background-color: #5700C5;
}
.fot-page--community .fot-button--card-button, .fot-card-search--community .fot-button--card-button, .fot-block--community .fot-button--card-button, .fot-color-theme--orange .fot-button--card-button {
  background-color: #E52B17;
}
.fot-page--jobs .fot-button--card-button, .fot-card-search--jobs .fot-button--card-button, .fot-block--jobs .fot-button--card-button, .fot-color-theme--red .fot-button--card-button {
  background-color: #BC0000;
}
.fot-button--purple-gradient {
  background: linear-gradient(135deg, #A056FF 0%, #803CD9 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--purple-gradient:hover {
  box-shadow: 0 0 0.9375rem 0 rgba(151, 71, 255, 0.5);
}
.fot-button--blue-light {
  background: #00BEFF;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--blue-light:hover {
  box-shadow: 0 0 0.9375rem 0 rgba(151, 71, 255, 0.5);
}
.fot-button--blue-light.fot-button--bordered {
  background: transparent;
  border: 2px solid #00BEFF;
  color: #00BEFF;
  padding: 0.40625rem 1.25rem;
}
.fot-button--blue-light.fot-button--bordered:hover {
  background: #00BEFF;
  color: #FFFFFF;
}
.fot-button--blue-gradient {
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--blue-gradient:hover {
  box-shadow: 0 0 0.9375rem 0 rgba(151, 71, 255, 0.5);
}
.fot-button--green-gradient {
  background: linear-gradient(135deg, #00C800 0%, #009900 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--community {
  background: #E52B17;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.fot-button--community:hover {
  background: #490200;
}
.fot-button--small {
  font-size: 1rem;
  padding: 0.375rem 1.25rem;
}
.fot-button--bordered {
  background: transparent;
  border: 1px solid;
  padding: 0.46875rem 0.9375rem 0.5rem;
}
.fot-button--content-type {
  padding: 0.65625rem 1.25rem;
  border-radius: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
.fot-page--training .fot-button--content-type, .fot-page--search .fot-button--content-type, .fot-card-search--training .fot-button--content-type, .fot-card-search--default .fot-button--content-type, .fot-block--training .fot-button--content-type, .fot-color-theme--blue .fot-button--content-type {
  background-color: #002C87;
}
.fot-page--certifications .fot-button--content-type, .fot-card-search--certifications .fot-button--content-type, .fot-block--certifications .fot-button--content-type, .fot-color-theme--green .fot-button--content-type {
  background-color: #006100;
}
.fot-page--events .fot-button--content-type, .fot-card-search--events .fot-button--content-type, .fot-block--events .fot-button--content-type, .fot-color-theme--pink .fot-button--content-type {
  background-color: #E72982;
}
.fot-page--news .fot-button--content-type, .fot-card-search--news .fot-button--content-type, .fot-block--news .fot-button--content-type, .fot-color-theme--purple .fot-button--content-type {
  background-color: #5700C5;
}
.fot-page--community .fot-button--content-type, .fot-card-search--community .fot-button--content-type, .fot-block--community .fot-button--content-type, .fot-color-theme--orange .fot-button--content-type {
  background-color: #E52B17;
}
.fot-page--jobs .fot-button--content-type, .fot-card-search--jobs .fot-button--content-type, .fot-block--jobs .fot-button--content-type, .fot-color-theme--red .fot-button--content-type {
  background-color: #BC0000;
}

body.woocommerce-js .fot-training-card__button .fot-product-button > a {
  background-color: #002C87;
  color: #FFFFFF;
  border-radius: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5625rem;
  padding: 0.5rem 0;
  width: 100%;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}
body.woocommerce-js .fot-training-card__button .fot-product-button > a.added {
  display: none;
}
body.woocommerce-js .fot-training-card__button .fot-product-button > a:hover {
  background-color: #01013D;
  color: #FFFFFF;
}

.fot-product-button {
  margin: 0;
}

.fot-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: none;
}
.fot-btn--primary {
  background: #002C87;
  color: #FFFFFF;
}
.fot-btn--primary:hover {
  background: #01013D;
}
.fot-btn--orange {
  background: #E52B17;
  color: #FFFFFF;
}
.fot-btn--orange:hover {
  background: #490200;
}
.fot-btn--gradient {
  background: linear-gradient(94.03deg, #FF7900 2.33%, #FF5600 97.6%);
  box-shadow: 0 0.25rem 0.875rem 0 rgba(255, 114, 1, 0.4);
  color: #FFFFFF;
}
.fot-btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.375rem 1.125rem 0 rgba(255, 114, 1, 0.5);
}
.fot-btn--gradient:active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.5rem 0 rgba(255, 114, 1, 0.6);
}
.fot-btn--full {
  width: 100%;
}
.fot-btn--large {
  padding: 0.625rem 2rem;
  font-size: 1.5rem;
}
.fot-btn__arrow {
  margin-left: 0.5rem;
  font-size: 1.25rem;
}
.fot-btn__arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0);
  border-radius: 50%;
  margin-left: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
}
.fot-btn__arrow-circle i {
  font-size: 0.75rem;
  color: #FFFFFF;
}
.fot-btn:hover .fot-btn__arrow-circle {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.fot-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ECEDEE;
  border-radius: 0.5rem;
  background: #FFFFFF;
  color: #232325;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.fot-social-btn:hover {
  border-color: #6E6E6F;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.1);
}
.fot-social-btn img {
  width: 2.5rem;
  height: 1.25rem;
  object-fit: contain;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  box-sizing: border-box;
}

select {
  cursor: pointer;
}

.fot-form-field {
  margin-bottom: 1.875rem;
}
.fot-form-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #232325;
}
.fot-form-field input,
.fot-form-field select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #D9D9D9;
  border-radius: 0.5625rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: none !important;
}
.fot-form-field input:focus,
.fot-form-field select:focus {
  outline: none;
  border-color: #BC0000;
}
.fot-form-field input[readonly],
.fot-form-field select[readonly] {
  background-color: #ECEDEE;
  color: #6E6E6F;
}
.fot-form-field input[type=tel] {
  direction: ltr;
}
.fot-form-field--with-icon .fot-field-icon {
  position: absolute;
  right: 0.75rem;
  top: 0;
  margin-top: 1rem;
  pointer-events: none;
  z-index: 2;
}
.fot-form-field--with-icon input {
  padding-right: 2.5rem;
}
.fot-form-field--with-icon select,
.fot-form-field--with-icon .fot-talent-select {
  padding-right: 2.5rem;
}
.fot-form-field--with-icon .fot-floating-label,
.fot-form-field--with-icon .fot-static-label {
  max-width: calc(100% - 3.125rem);
}
.fot-form-field--floating {
  position: relative;
}
.fot-form-field--floating + .fot-form-field--floating {
  margin-top: 2.1875rem;
}
.fot-form-field--floating-select {
  position: relative;
}
.fot-form-field--floating-select + .fot-form-field--floating-select, .fot-form-field--floating + .fot-form-field--floating-select, .fot-form-field--floating-select + .fot-form-field--floating {
  margin-top: 2.1875rem;
}
.fot-form-field--multiselect {
  position: relative;
}
.fot-form-field--multiselect .fot-static-label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6E6E6F;
  background: #FFFFFF;
  padding: 0 0.25rem;
  z-index: 1;
}
.fot-form-field--multiselect select,
.fot-form-field--multiselect .fot-talent-select {
  width: 100%;
  padding: 1rem 0.75rem;
  border: 1px solid #D9D9D9;
  border-radius: 0.5625rem;
  font-size: 0.875rem;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}
.fot-form-field--multiselect select:focus,
.fot-form-field--multiselect .fot-talent-select:focus {
  outline: none;
  border-color: #BC0000;
}

.fot-selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.fot-selected-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.5rem 0.3125rem 0.625rem;
  border-radius: 1.0625rem;
  font-size: 0.75rem;
  gap: 0.375rem;
  border: 0.0625rem solid #D9D9D9;
}
.fot-selected-tag .fot-remove-tag {
  background: none;
  border: none;
  color: #6E6E6F;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}
.fot-selected-tag .fot-remove-tag:hover {
  color: #BC0000;
}

.fot-form-field--floating input {
  padding: 0.875rem 0.75rem 0.625rem 0.75rem;
}
.fot-form-field--floating input::placeholder {
  color: transparent;
}
.fot-form-field--floating input:focus {
  outline: none;
  border-color: #BC0000;
}

.fot-form-field--floating input[readonly] {
  background-color: #ECEDEE;
  color: #6E6E6F;
}
.fot-form-field--floating input[readonly]:focus {
  border-color: #D9D9D9;
}

.fot-form-field--floating .fot-floating-label {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #6E6E6F;
  background: #FFFFFF;
  padding: 0 0.25rem;
  transition: all 0.2s ease;
  pointer-events: none;
  margin: 0;
}

.fot-form-field--floating input:focus + .fot-floating-label,
.fot-form-field--floating input:not(:placeholder-shown) + .fot-floating-label {
  top: 0;
  left: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
}

.fot-form-field--floating input[readonly]:focus + .fot-floating-label {
  color: #6E6E6F;
}

.fot-form-field--floating input[readonly]:not(:placeholder-shown) + .fot-floating-label {
  background: transparent;
  color: #6E6E6F;
}

.fot-form-field--floating-select select {
  width: 100%;
  padding: 0.875rem 0.75rem 0.625rem 0.75rem;
  border: 1px solid #D9D9D9;
  border-radius: 0.5625rem;
  font-size: 0.875rem;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  appearance: none;
}
.fot-form-field--floating-select select:focus {
  outline: none;
  border-color: #BC0000;
}

.fot-form-field--floating-select select option[value=""] {
  color: transparent;
}

.fot-form-field--floating-select .fot-floating-label {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #6E6E6F;
  background: #FFFFFF;
  padding: 0 0.25rem;
  transition: all 0.2s ease;
  pointer-events: none;
  margin: 0;
}

.fot-form-field--floating-select select:focus + .fot-floating-label {
  top: 0;
  left: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
}

.fot-form-field--floating-select.has-value .fot-floating-label {
  top: 0;
  left: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
}

.fot-form__field {
  margin-bottom: 1.25rem;
}
.fot-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6E6E6F;
  margin-bottom: 0.5rem;
}
.fot-form__field--floating-label {
  position: relative;
  margin-top: 0.5rem;
}
.fot-form__field--floating-label > label {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6E6E6F;
  margin-bottom: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
  background: #FFFFFF;
  padding: 0 0.25rem;
  opacity: 0;
}
.fot-form__field--floating-label input:focus + label:not(.fot-label--empty):not(.fot-label--focused):not(.fot-label--filled), .fot-form__field--floating-label input:not(:placeholder-shown) + label:not(.fot-label--empty):not(.fot-label--focused):not(.fot-label--filled), .fot-form__field--floating-label select:focus + label:not(.fot-label--empty):not(.fot-label--focused):not(.fot-label--filled), .fot-form__field--floating-label select:not([value=""]) + label:not(.fot-label--empty):not(.fot-label--focused):not(.fot-label--filled) {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #002C87;
  background: #FFFFFF;
  opacity: 1;
}
.fot-form__field--floating-label input:focus, .fot-form__field--floating-label select:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 3px rgba(0, 44, 135, 0.1);
}
.fot-form__field--floating-label input:focus::placeholder, .fot-form__field--floating-label select:focus::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fot-form__field--floating-label input:placeholder-shown + label:not(.fot-label--empty):not(.fot-label--focused):not(.fot-label--filled) {
  top: 0.75rem;
  left: 1rem;
  font-size: 1rem;
  color: #6E6E6F;
  background: transparent;
}
.fot-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .fot-form__row {
    grid-template-columns: 1fr;
  }
}
.fot-form__coupon-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .fot-form__coupon-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.fot-form__input, .fot-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #6E6E6F;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
  color: #232325;
}
.fot-form__input:focus, .fot-form__select:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 3px rgba(0, 44, 135, 0.1);
}
.fot-form__input::placeholder, .fot-form__select::placeholder {
  color: #6E6E6F;
}
.fot-form__input--coupon, .fot-form__select--coupon {
  flex: 1;
}
@media (max-width: 767.98px) {
  .fot-form__input--coupon, .fot-form__select--coupon {
    width: 100%;
  }
}
.fot-form__select {
  background: #FFFFFF;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6E6F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.fot-form__select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002C87' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}
.fot-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fot-form__checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.fot-form__checkbox label {
  font-size: 0.875rem;
  color: #01013D;
  margin: 0;
  line-height: 1.7;
}
.fot-form__checkboxes {
  margin-bottom: 1.5rem;
}
.fot-form__field--floating-label label.fot-label--empty {
  opacity: 0;
}
.fot-form__field--floating-label label.fot-label--focused {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #002C87;
  background: #FFFFFF;
  opacity: 1;
}
.fot-form__field--floating-label label.fot-label--filled {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6E6E6F;
  background: #FFFFFF;
  opacity: 1;
}
.fot-form__field--floating-label input:focus::placeholder, .fot-form__field--floating-label input + label.fot-label--focused ~ input::placeholder, .fot-form__field--floating-label input + label.fot-label--filled ~ input::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fot-form__checkbox label a {
  color: #002C87;
  text-decoration: none;
}
.fot-form__checkbox label a:hover {
  text-decoration: underline;
}
.fot-form__password-strength {
  margin-top: 0.5rem;
}
.fot-form__strength-bar {
  height: 0.375rem;
  background: #ECEDEE;
  border-radius: 0.1875rem;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.fot-form__strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 0.1875rem;
  transition: all 0.3s ease;
}
.fot-form__strength-fill.fot-weak {
  width: 33%;
  background: #BC0000;
}
.fot-form__strength-fill.fot-medium {
  width: 66%;
  background: linear-gradient(to right, #FFB800, #FF8A00);
}
.fot-form__strength-fill.fot-strong {
  width: 100%;
  background: #006100;
}
.fot-form__strength-text {
  font-size: 0.75rem;
  color: #6E6E6F;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fot-form__strength-text.fot-weak {
  color: #BC0000;
}
.fot-form__strength-text.fot-medium {
  color: #FF8A00;
}
.fot-form__strength-text.fot-strong {
  color: #006100;
}
.fot-form__field--select {
  position: relative;
}
.fot-form__select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6E6E6F;
  pointer-events: none;
  font-size: 0.75rem;
}
.fot-form__error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.fot-form__error p {
  margin: 0;
  color: #BC0000;
  font-size: 0.875rem;
}
.fot-form__field-error {
  display: none;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: #BC0000;
  line-height: 1.4;
}
.fot-form__field--error .fot-form__input,
.fot-form__field--error .fot-form__select {
  border-color: #BC0000;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem 1rem;
  padding-right: 2.5rem;
}
.fot-form__field--error .fot-form__input:focus,
.fot-form__field--error .fot-form__select:focus {
  border-color: #BC0000;
  box-shadow: 0 0 0 3px rgba(188, 0, 0, 0.1);
}
.fot-form__field--error .fot-form__input {
  background-image: url("/wp-content/themes/focus-on-tech/assets/icons/icon-fot-form-error.svg");
}
.fot-form__field--error .fot-form__select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BC0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}
.fot-form__field--error .fot-form__select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BC0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}
.fot-form__field--error .fot-form__field-error {
  display: block;
}
.fot-form__field--error.fot-form__field--floating-label label {
  color: #BC0000;
}
.fot-form__field--error:has(.fot-form__edit-btn) .fot-form__input {
  background-position: right 3rem center;
  padding-right: 4.75rem;
}
.fot-form__field--error:has(.fot-form__edit-btn) .fot-form__select {
  background-position: right 3rem center;
  padding-right: 4.75rem;
}
.fot-form__edit-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #002C87;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  z-index: 2;
}
.fot-form__edit-btn:hover {
  background: rgba(0, 44, 135, 0.1);
  color: #01013D;
}
.fot-form__edit-btn svg,
.fot-form__edit-btn img {
  width: 1rem;
  height: 1rem;
  display: block;
}
.fot-form__input--readonly {
  background: #ECEDEE;
  border-color: #6E6E6F;
  cursor: default;
  padding-right: 2.75rem;
}
.fot-form__input--readonly:focus {
  border-color: #6E6E6F;
  box-shadow: none;
}

.fot-password-strength__bar {
  height: 0.25rem;
  background: #ECEDEE;
  border-radius: 0.125rem;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.fot-password-strength__fill {
  height: 100%;
  width: 0%;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}
.fot-password-strength__fill.fot-weak {
  width: 25%;
  background: #BC0000;
}
.fot-password-strength__fill.fot-medium {
  width: 50%;
  background: #FFB800;
}
.fot-password-strength__fill.fot-strong {
  width: 75%;
  background: #006100;
}
.fot-password-strength__fill.fot-very-strong {
  width: 100%;
  background: #002100;
}
.fot-password-strength__text {
  font-size: 0.75rem;
  color: #6E6E6F;
}
.fot-password-strength__text.fot-weak {
  color: #BC0000;
}
.fot-password-strength__text.fot-medium {
  color: #FFB800;
}
.fot-password-strength__text.fot-strong {
  color: #006100;
}
.fot-password-strength__text.fot-very-strong {
  color: #002100;
}

.fot-validation-error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.fot-validation-error p {
  margin: 0;
  color: #BC0000;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header Layout
--------------------------------------------------------------*/
.fot-header {
  width: 100%;
  background: #FFFFFF;
  z-index: 1000;
  position: relative;
  box-shadow: 0 0.1875rem 0.75rem 0 rgba(0, 0, 0, 0.07);
}

.fot-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.fot-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fot-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
}

.fot-header__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.375rem;
}

.fot-header__logo {
  flex-shrink: 0;
}

.fot-header__logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}

body.logged-in .fot-header__logo img {
  height: 2.125rem;
}

.fot-header__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.fot-header__menu-item {
  position: relative;
  margin-bottom: 0;
}

.fot-header__menu-item--megamenu .fot-header__menu-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  padding: 0 0 0 0.875rem;
  border: 1px solid #002C87;
  outline: none;
  box-shadow: inset 0 0 0 0 #002C87;
  transition: all 0.3s ease;
}
.fot-header__menu-item--megamenu .fot-header__menu-link:hover {
  box-shadow: inset 0 0 0 1px #002C87;
  margin: 0;
}
.fot-header__menu-item--megamenu .fot-header__menu-link::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9375rem 0.5625rem;
  width: 0.9375rem;
  height: 0.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-down-gradient-blue.svg");
  width: 2.5rem;
  height: 2.5rem;
}
.fot-header__menu-item--megamenu .fot-header__menu-link.is-active {
  background: #002C87;
  color: #FFFFFF;
}
.fot-header__menu-item--megamenu .fot-header__menu-link.is-active:hover {
  background: #01013D;
  color: #FFFFFF;
  border: 1px solid #01013D;
  box-shadow: inset 0 0 0 1px #01013D;
}
.fot-header__menu-item--megamenu .fot-header__menu-link.is-active::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9375rem 0.5625rem;
  width: 0.9375rem;
  height: 0.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-up-white.svg");
  width: 2.5rem;
  height: 2.5rem;
}

.fot-header__menu-link {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #232325;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fot-header__menu-link:hover {
  color: #1E053F;
}

.fot-header__search-form {
  position: relative;
  margin-bottom: 0;
}

.fot-header__search-input {
  padding: 0.75rem 5.4375rem 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid #CBCBCB;
  background: #FFFFFF;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  width: 22.25rem;
}

.fot-header__search-button {
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  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: #FFFFFF;
  border: none;
  width: 5.4375rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: unset;
  box-shadow: 0 0 0.25rem 0 rgba(0, 190, 255, 0.5);
}

.fot-header__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.fot-header__actions .fot-header__menu-link {
  color: #002C87;
}

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

.fot-header__cart-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.75rem 1.8125rem;
  width: 1.75rem;
  height: 1.8125rem;
  display: inline-block;
  background-image: url("assets/icons/icon-shopping-cart-3.svg");
  display: block;
}

.fot-header__cart-count {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #FFFFFF;
  background: #FF0000;
  border-radius: 0.3125rem;
  padding: 0 0.4375rem;
  line-height: 1.25;
  margin-left: -0.375rem;
}

.fot-header__megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 77.5rem;
  transform: translateX(-27.8%) translateY(0);
  padding: 0;
  background: #FFFFFF;
  box-shadow: 0.3125rem 0.3125rem 1.5625rem 0 rgba(0, 0, 0, 0.12);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.fot-header__megamenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-27.8%) translateY(3.125rem);
}
.fot-header__megamenu::before {
  content: "";
  display: block;
  background: #FFFFFF;
  width: 2.125rem;
  height: 2.125rem;
  position: absolute;
  top: -1.0625rem;
  right: 0;
  bottom: 0;
  left: 0;
  left: 29.2%;
  transform: rotate(45deg);
  box-shadow: 0.3125rem 0.3125rem 1.5625rem 0 rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.fot-header__megamenu-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 1.25rem;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fot-header__megamenu-column {
  flex: 1 1 25%;
  padding: 0 1.875rem;
  margin: 1.5rem 0 2.625rem;
  position: relative;
}
.fot-header__megamenu-column:not(:first-child) {
  padding-right: 2rem;
}
.fot-header__megamenu-column:not(:first-child)::before {
  content: "";
  display: block;
  background: #ECEDEE;
  width: 0.125rem;
  height: calc(100% - 5px);
  margin-left: -0.0625rem;
  position: absolute;
  top: 0.3125rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.fot-header__megamenu-column:last-child {
  margin: 0;
  border-left: none;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fot-header__megamenu-column:last-child::before {
  display: none;
}

.fot-header__megamenu-column-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.875rem 0;
}
.fot-header__megamenu-column-inner::before {
  content: "";
  display: block;
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  width: 100%;
  height: calc(100% - 1px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.1;
}
.fot-header__megamenu-column-inner:first-child {
  padding-bottom: 0.75rem;
}
.fot-header__megamenu-column-inner:first-child::after {
  content: "";
  display: table;
  clear: both;
}
.fot-header__megamenu-column-inner:last-child {
  padding-bottom: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.fot-header__megamenu-column-inner:last-child::before {
  position: absolute;
  top: unset;
  right: 0;
  bottom: 0;
  left: 0;
}
.fot-header__megamenu-column-inner:last-child .fot-header__megamenu-list {
  margin-top: 0;
}
.fot-header__megamenu-column-inner * {
  position: relative;
  z-index: 1;
}

.fot-header__megamenu-column-inner .fot-header__megamenu-list {
  margin: 0.75rem 0 0;
}

.fot-header__megamenu-heading {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0;
  color: #002C87;
  line-height: 1.25;
  color: #01013D;
  margin: 0 0 0.5rem;
}

.fot-header__megamenu-heading .fot-badge {
  border-radius: 0.3125rem;
  margin-right: 0.5rem;
}

.fot-header__megamenu-heading--badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.fot-header__megamenu-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #232325;
  line-height: 1.4;
  color: #6E6E6F;
  margin: 0;
}

.fot-header__megamenu-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 20px;
  padding-right: 1.125rem;
}

.fot-header__megamenu-logo {
  height: 4rem;
  border-radius: 0.9375rem;
  border: 1px solid #ECEDEE;
  flex-basis: calc(50% - 2.5px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.fot-header__megamenu-logo img {
  max-width: 89px;
  max-height: 47px;
}

.fot-header__megamenu-link {
  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;
  color: #002C87;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.25rem 0.625rem 0.4375rem;
  border-radius: 0.9375rem;
  transition: all 0.3s ease;
}
.fot-header__megamenu-link:hover, .fot-header__megamenu-link.active {
  background: #E4F2F9;
}

.fot-header__megamenu-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.fot-header__megamenu-item {
  margin: 0 0 0.6875rem;
}

.fot-header__megamenu-button {
  margin-left: 0.625rem;
}
.fot-header__megamenu-button::before {
  background: #002C87;
}

.fot-header__megamenu-feature-button {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 6.4375rem;
  text-align: center;
  margin-top: 1.125rem;
  border-radius: 0.9375rem;
  overflow: hidden;
  box-shadow: 0 0 0.75rem 0.125rem rgba(188, 77, 228, 0.3);
}

.fot-header__megamenu-feature-button-head {
  display: block;
  width: 100%;
  padding: 1.125rem 0.8125rem 1rem 0.75rem;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  line-height: 1.13;
  color: #FFFFFF;
  background: linear-gradient(94.03deg, #D555E3 2.33%, #A446E5 97.6%);
}

.fot-header__megamenu-feature-button-text {
  display: block;
  width: 100%;
  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;
  line-height: 1.13;
  color: #FFFFFF;
  background: #5F34E3;
  padding: 0.6875rem 0.8125rem 1rem;
  border-top: 1px solid rgba(236, 237, 238, 0.4);
  white-space: nowrap;
}

body.admin-bar .fot-header {
  top: 32px;
}

.fot-header__user-dropdown {
  position: relative;
}

.fot-header__user-avatar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8125rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  outline: none;
}

.fot-header__user-avatar-img {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #002C87;
}

.fot-header__user-dropdown-arrow {
  transition: transform 0.3s ease;
}
.fot-header__user-dropdown-arrow::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9375rem 0.5625rem;
  width: 0.9375rem;
  height: 0.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-down-gradient-blue.svg");
  display: block;
}

.fot-header__user-dropdown.active .fot-header__user-dropdown-arrow {
  transform: rotate(180deg);
}

.fot-header__user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border-radius: 1.25rem;
  box-shadow: 5px 5px 25px 0px rgba(0, 0, 0, 0.12);
  min-width: 11.9375rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 2.9375rem;
  transform: translateX(70px);
}
.fot-header__user-dropdown-menu::before {
  content: "";
  display: block;
  background: #FFFFFF;
  width: 2.125rem;
  height: 2.125rem;
  position: absolute;
  top: -0.875rem;
  right: 3.75rem;
  transform: rotate(45deg);
  z-index: 0;
}

.fot-header__user-dropdown.active .fot-header__user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(70px);
}

.fot-header__user-dropdown-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #ECEDEE;
}

.fot-header__user-dropdown-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.25rem;
}

.fot-header__user-dropdown-name {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #002C87;
}

.fot-header__user-dropdown-email {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6E6E6F;
  font-size: 0.875rem;
}

.fot-header__user-dropdown-list {
  list-style: none;
  padding: 0 0 0.75rem 0;
  margin: 0;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  overflow: hidden;
}

.fot-header__user-dropdown-item {
  margin: 0;
}
.fot-header__user-dropdown-item--divider {
  height: 1px;
  background-color: #ECEDEE;
}

.fot-header__user-dropdown-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.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: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  transition: background-color 0.3s ease;
  width: 100%;
  display: block;
  color: #002C87;
}
.fot-header__user-dropdown-link:hover {
  background: #E4F2F9;
  font-weight: 600;
}

.fot-icon--user::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-user.svg");
}

.fot-icon--order::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-shopping-cart-3.svg");
}

.fot-icon--lock::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-lock.svg");
}

.fot-icon--logout::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("assets/icons/icon-logout.svg");
}

/*--------------------------------------------------------------
# Footer Layout
--------------------------------------------------------------*/
.fot-footer__top {
  background-color: #232325;
  background-image: linear-gradient(0.98deg, rgba(1, 1, 61, 0) 0.82%, #01013D 99.14%);
  padding: 2.4375rem 0 2.25rem;
  background-blend-mode: overlay;
}

.fot-footer__top .fot-footer__top-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}

.fot-footer__top .fot-footer__title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #FFFFFF;
  margin: 0;
}

.fot-footer {
  background-color: #232325;
  border-top: 1px solid #ECEDEE;
  padding-bottom: 2.4375rem;
}

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

.fot-footer__logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
}

.fot-footer__logo {
  mix-blend-mode: lighten;
}

.fot-footer__menus {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1.125rem;
}

.fot-footer__menu-title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  background: linear-gradient(135deg, #00BEFF 0%, #009EFF 100%);
  background-clip: text;
  color: transparent;
  margin: 0 0 1.3125rem;
}

.fot-footer__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fot-footer__menu-item {
  margin-bottom: 0.75rem;
}

.fot-footer__menu-link {
  color: #FFFFFF;
  position: relative;
  transition: color 0.3s ease;
}
.fot-footer__menu-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #FFFFFF;
}
.fot-footer__menu-link:hover::after {
  transform: scaleX(1);
}

.fot-footer__menu-button {
  color: #FFFFFF;
}

.fot-footer__menu {
  padding-top: 2rem;
}

.fot-footer__menu--highlight {
  position: relative;
  padding: 2.125rem 2rem 1.5625rem;
}
.fot-footer__menu--highlight > * {
  position: relative;
  z-index: 1;
}
.fot-footer__menu--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 1.25rem);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}

.fot-footer__menu--highlight .fot-footer__menu-title {
  background: linear-gradient(135deg, #FF7900 0%, #FF5600 100%);
  background-clip: text;
  color: transparent;
}

.fot-footer__bottom {
  margin-top: 3.875rem;
}
.fot-footer__bottom::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #6E6E6F;
}

.fot-footer__bottom-top {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.fot-footer__bottom-logo {
  width: 11.875rem;
  display: block;
}

.fot-footer__bottom-social-link {
  text-indent: -9999px;
  overflow: hidden;
}

.fot-footer__bottom-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}

.fot-footer__bottom-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.fot-footer__bottom-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #232325;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

.fot-footer__bottom-link {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #232325;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
  position: relative;
  transition: color 0.3s ease;
}
.fot-footer__bottom-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #FFFFFF;
}
.fot-footer__bottom-link:hover::after {
  transform: scaleX(1);
}

.fot-footer__bottom-bottom-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.625rem;
}

/**
 * Sidebar Layout Styles
 * 
 * Collapsible sidebar for logged-in users
 * - 220px max width when expanded
 * - Collapsible to icon-only view
 * - Hover tooltips for collapsed state
 * - Positioned below header on left side
 */
/* stylelint-disable selector-class-pattern */
.fot-layout-container {
  overflow: hidden;
}

.fot-sidebar {
  position: relative;
  width: 13.75rem;
  min-height: calc(100vh - 70px);
  background-color: #01013D;
  transition: width 0.3s ease;
  flex-shrink: 0;
  z-index: 400;
}
.fot-sidebar--collapsed {
  width: 3.5rem;
}
.fot-sidebar--collapsed .fot-sidebar__heading {
  opacity: 0;
  transform: translateX(-100%);
}
.fot-sidebar--collapsed .fot-sidebar__menu-text,
.fot-sidebar--collapsed .fot-sidebar__logout-text {
  opacity: 0;
  transform: translateX(-100%);
}
.fot-sidebar--collapsed .fot-sidebar__submenu {
  display: none;
}
.fot-sidebar__toggle {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 1.0625rem 0.5rem 1.1875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.fot-sidebar__hamburger {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  background-color: #002C87;
  border: none;
  cursor: pointer;
  border-radius: 0.625rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.fot-sidebar__hamburger-icon::before {
  display: block;
}
.fot-sidebar .fot-sidebar--collapsed .fot-sidebar__hamburger .fot-sidebar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}
.fot-sidebar .fot-sidebar--collapsed .fot-sidebar__hamburger .fot-sidebar__hamburger-line:nth-child(2) {
  opacity: 0;
}
.fot-sidebar .fot-sidebar--collapsed .fot-sidebar__hamburger .fot-sidebar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.4375rem, -0.375rem);
}
.fot-sidebar__heading {
  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: #FFFFFF;
  text-transform: uppercase;
  max-width: 91px;
  margin: 0;
}
.fot-sidebar__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}
.fot-sidebar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.fot-sidebar__menu-item {
  position: relative;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.fot-sidebar__menu-item:not(.fot-sidebar__menu-item--has-children) {
  border-left: 5px solid transparent;
}
.fot-sidebar__menu-item:not(.fot-sidebar__menu-item--has-children)::before {
  content: "";
  display: block;
  background: transparent;
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  left: -0.1875rem;
  transform: translateY(-50%) rotate(45deg);
  z-index: 0;
  transition: all 0.3s ease;
}
.fot-sidebar__menu-item:not(.fot-sidebar__menu-item--has-children):hover {
  border-color: #00BEFF;
}
.fot-sidebar__menu-item:not(.fot-sidebar__menu-item--has-children):hover::before {
  background: #00BEFF;
}
.fot-sidebar__menu-item::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 1px;
  width: calc(100% - 15px);
  background-color: rgba(255, 255, 255, 0.25);
}
.fot-sidebar__menu-item--has-children::after {
  height: 0.5px;
}
.fot-sidebar__menu-item--has-children .fot-sidebar__menu-link {
  position: relative;
}
.fot-sidebar__menu-item--has-children .fot-sidebar__menu-link::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8125rem 0.4375rem;
  width: 0.8125rem;
  height: 0.4375rem;
  display: inline-block;
  background-image: url("assets/icons/icon-arrow-down-white.svg");
  margin-left: auto;
  transition: transform 0.3s ease;
}
.fot-sidebar__menu-item--has-children:hover .fot-sidebar__menu-link::after {
  transform: rotate(180deg);
}
.fot-sidebar__menu-item--has-children:hover::after {
  display: none;
}
.fot-sidebar__menu-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.1875rem 1.125rem 1.0625rem 0.8125rem;
  color: #232325;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 1.0625rem;
}
.fot-sidebar__menu-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #D9D9D9;
  transition: color 0.3s ease;
}
.fot-sidebar .fot-sidebar__menu-link.current-menu-item .fot-sidebar__menu-icon,
.fot-sidebar .fot-sidebar__menu-link.current-page-ancestor .fot-sidebar__menu-icon {
  color: #FFFFFF;
}
.fot-sidebar__menu-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #FFFFFF;
}
.fot-sidebar__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 44, 135, 0) 0%, rgba(0, 44, 135, 0.5) 100%);
  transition: max-height 0.3s ease;
}
.fot-sidebar__menu-item:hover .fot-sidebar__submenu {
  max-height: var(--submenu-height, 62.5rem);
}
.fot-sidebar__submenu-item {
  margin-bottom: 0;
  border-bottom: none;
}
.fot-sidebar__submenu-item:last-child {
  margin-bottom: 8px;
}
.fot-sidebar__submenu-link {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #FFFFFF;
  padding: 1.0625rem 1.125rem 0.9375rem 3.5625rem;
  display: block;
}
.fot-sidebar__logout {
  position: relative;
}
.fot-sidebar__logout::before {
  content: "";
  display: block;
  background: transparent;
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  left: -0.1875rem;
  transform: translateY(-50%) rotate(45deg);
  z-index: 0;
  transition: all 0.3s ease;
}
.fot-sidebar__logout::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 1px;
  width: calc(100% - 15px);
  background-color: rgba(255, 255, 255, 0.25);
}
.fot-sidebar__logout:hover {
  border-color: #00BEFF;
}
.fot-sidebar__logout:hover::before {
  background: #00BEFF;
}
.fot-sidebar__logout-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.1875rem 1.125rem 1.0625rem;
  color: #232325;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.75rem;
  position: relative;
}
.fot-sidebar__logout-link::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 1px;
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.25);
}
.fot-sidebar__logout-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #BC0000;
  transition: color 0.3s ease;
}
.fot-sidebar .fot-sidebar__logout-link:hover .fot-sidebar__logout-icon {
  color: #FFFFFF;
}
.fot-sidebar__logout-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .fot-sidebar {
    transform: translateX(-100%);
  }
  .fot-sidebar--open {
    transform: translateX(0);
  }
}

body.fot-sidebar-present {
  display: flex;
  flex-direction: column;
}
body.fot-sidebar-present .fot-layout-container {
  display: flex;
  flex: 1;
  min-height: calc(100vh - 70px);
}
body.fot-sidebar-present .site-content {
  flex: 1;
  transition: margin-left 0.3s ease;
  margin-left: 0;
}
@media (max-width: 768px) {
  body.fot-sidebar-present .site-content {
    margin-left: 0;
  }
}

body.admin-bar.fot-sidebar-present .fot-layout-container {
  min-height: calc(100vh - 70px - 32px);
}

body.fot-sidebar-collapsed .fot-sidebar__menu-item {
  border-left: none;
  padding-left: 0.25rem;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item::before {
  display: none;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item:not(:first-child) .fot-sidebar__menu-link {
  margin-top: -0.0625rem;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-link {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 2;
  position: relative;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-text {
  padding: 1.3125rem 1.3125rem 1.25rem 0.125rem;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item:hover {
  border-color: transparent;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item:hover::before {
  display: none;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item:hover .fot-sidebar__menu-link {
  background-color: #002C87;
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
body.fot-sidebar-collapsed .fot-sidebar__menu-item:hover .fot-sidebar__menu-text {
  opacity: 1;
  transform: none;
  background-color: #002C87;
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  display: inline-block;
  min-height: toRem;
}

/*--------------------------------------------------------------
# Notice
--------------------------------------------------------------*/
.fot-announcement-banner {
  background: #002C87;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.13);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  top: 4.375rem;
  display: none;
}

.fot-announcement-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 3.75rem;
}

.fot-announcement-banner__icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.fot-announcement-banner__icon-image {
  width: 2.875rem;
  height: 2.875rem;
}

.fot-announcement-banner__text p {
  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;
  color: #FFFFFF;
}
.fot-announcement-banner__text p strong {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #FFFFFF;
}

.fot-announcement-banner__content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5625rem;
}

body.admin-bar .fot-announcement-banner {
  top: 6.375rem;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.fot-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.625rem;
  height: 3.75rem;
}

.fot-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
}

.fot-breadcrumbs__link {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #01013D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fot-breadcrumbs__link:hover {
  color: #01013D;
  text-decoration: underline;
}

.fot-breadcrumbs__current {
  color: #232325;
  font-size: 0.875rem;
  font-weight: 500;
}

.fot-breadcrumbs__separator {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 1.15625rem;
  height: 1.15625rem;
}

.fot-breadcrumbs__separator::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.3125rem 0.5625rem;
  width: 0.3125rem;
  height: 0.5625rem;
  display: inline-block;
  background-image: url("assets/icons/icon-breadcrumbs-arrow.svg");
}

.fot-breadcrumbs__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  height: 3.75rem;
}

.fot-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 0;
  width: 100%;
  gap: 0.125rem;
}
.fot-pagination .prev, .fot-pagination .next {
  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;
  font-weight: 600;
  border: 0;
}
.fot-page--training .fot-pagination .prev, .fot-page--search .fot-pagination .prev, .fot-card-search--training .fot-pagination .prev, .fot-card-search--default .fot-pagination .prev, .fot-block--training .fot-pagination .prev, .fot-color-theme--blue .fot-pagination .prev, .fot-page--training .fot-pagination .next, .fot-page--search .fot-pagination .next, .fot-card-search--training .fot-pagination .next, .fot-card-search--default .fot-pagination .next, .fot-block--training .fot-pagination .next, .fot-color-theme--blue .fot-pagination .next {
  color: #002C87;
}
.fot-page--certifications .fot-pagination .prev, .fot-card-search--certifications .fot-pagination .prev, .fot-block--certifications .fot-pagination .prev, .fot-color-theme--green .fot-pagination .prev, .fot-page--certifications .fot-pagination .next, .fot-card-search--certifications .fot-pagination .next, .fot-block--certifications .fot-pagination .next, .fot-color-theme--green .fot-pagination .next {
  color: #006100;
}
.fot-page--events .fot-pagination .prev, .fot-card-search--events .fot-pagination .prev, .fot-block--events .fot-pagination .prev, .fot-color-theme--pink .fot-pagination .prev, .fot-page--events .fot-pagination .next, .fot-card-search--events .fot-pagination .next, .fot-block--events .fot-pagination .next, .fot-color-theme--pink .fot-pagination .next {
  color: #E72982;
}
.fot-page--news .fot-pagination .prev, .fot-card-search--news .fot-pagination .prev, .fot-block--news .fot-pagination .prev, .fot-color-theme--purple .fot-pagination .prev, .fot-page--news .fot-pagination .next, .fot-card-search--news .fot-pagination .next, .fot-block--news .fot-pagination .next, .fot-color-theme--purple .fot-pagination .next {
  color: #5700C5;
}
.fot-page--community .fot-pagination .prev, .fot-card-search--community .fot-pagination .prev, .fot-block--community .fot-pagination .prev, .fot-color-theme--orange .fot-pagination .prev, .fot-page--community .fot-pagination .next, .fot-card-search--community .fot-pagination .next, .fot-block--community .fot-pagination .next, .fot-color-theme--orange .fot-pagination .next {
  color: #E52B17;
}
.fot-page--jobs .fot-pagination .prev, .fot-card-search--jobs .fot-pagination .prev, .fot-block--jobs .fot-pagination .prev, .fot-color-theme--red .fot-pagination .prev, .fot-page--jobs .fot-pagination .next, .fot-card-search--jobs .fot-pagination .next, .fot-block--jobs .fot-pagination .next, .fot-color-theme--red .fot-pagination .next {
  color: #BC0000;
}
.fot-pagination .prev {
  margin-right: auto;
}
.fot-pagination .next {
  margin-left: auto;
}
.fot-pagination .page-numbers:not(.prev, .next) {
  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-weight: 600;
  background-color: transparent;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fot-page--training .fot-pagination .page-numbers:not(.prev, .next), .fot-page--search .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--training .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--default .fot-pagination .page-numbers:not(.prev, .next), .fot-block--training .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--blue .fot-pagination .page-numbers:not(.prev, .next) {
  color: #002C87;
}
.fot-page--certifications .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--certifications .fot-pagination .page-numbers:not(.prev, .next), .fot-block--certifications .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--green .fot-pagination .page-numbers:not(.prev, .next) {
  color: #006100;
}
.fot-page--events .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--events .fot-pagination .page-numbers:not(.prev, .next), .fot-block--events .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--pink .fot-pagination .page-numbers:not(.prev, .next) {
  color: #E72982;
}
.fot-page--news .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--news .fot-pagination .page-numbers:not(.prev, .next), .fot-block--news .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--purple .fot-pagination .page-numbers:not(.prev, .next) {
  color: #5700C5;
}
.fot-page--community .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--community .fot-pagination .page-numbers:not(.prev, .next), .fot-block--community .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--orange .fot-pagination .page-numbers:not(.prev, .next) {
  color: #E52B17;
}
.fot-page--jobs .fot-pagination .page-numbers:not(.prev, .next), .fot-card-search--jobs .fot-pagination .page-numbers:not(.prev, .next), .fot-block--jobs .fot-pagination .page-numbers:not(.prev, .next), .fot-color-theme--red .fot-pagination .page-numbers:not(.prev, .next) {
  color: #BC0000;
}
.fot-pagination .page-numbers:not(.prev, .next).current {
  color: #FFFFFF;
}
.fot-page--training .fot-pagination .page-numbers:not(.prev, .next).current, .fot-page--search .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--training .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--default .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--training .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--blue .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #002C87;
}
.fot-page--certifications .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--certifications .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--certifications .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--green .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #006100;
}
.fot-page--events .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--events .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--events .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--pink .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #E72982;
}
.fot-page--news .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--news .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--news .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--purple .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #5700C5;
}
.fot-page--community .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--community .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--community .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--orange .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #E52B17;
}
.fot-page--jobs .fot-pagination .page-numbers:not(.prev, .next).current, .fot-card-search--jobs .fot-pagination .page-numbers:not(.prev, .next).current, .fot-block--jobs .fot-pagination .page-numbers:not(.prev, .next).current, .fot-color-theme--red .fot-pagination .page-numbers:not(.prev, .next).current {
  background-color: #BC0000;
}
.fot-pagination .page-numbers:not(.prev, .next).current:first-child {
  margin-left: auto;
}
.fot-pagination .page-numbers:not(.prev, .next).current:last-child {
  margin-right: auto;
}

/* Posts and pages
--------------------------------------------- */
/* Comments
--------------------------------------------- */
/* Widgets
--------------------------------------------- */
/* Media
--------------------------------------------- */
/* Trustpilot
--------------------------------------------- */
.fot-trustpilot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.53125rem;
}

.fot-trustpilot__info-button {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  cursor: pointer;
}
.fot-trustpilot__info-button::before {
  background-size: 100% 100%;
}

.fot-trustpilot__logo-img {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #000000;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #FFFFFF;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*# sourceMappingURL=style.css.map */
