/* site-top.css — sticky header / site nav / country picker / center menu ATF CSS.
 * Extracted from themes/mathnasium/assets/css/sass/style.css (plain CSS, no SASS).
 * Sections ordered to match style.css ascending cascade.
 * Hero CSS is NOT included — load hero component CSS separately as a second ATF sheet.
 * Selectors intentionally shortened (:is(), flatter descendants) vs style.css for ATF size.
 */

/* --- Base tokens + Bootstrap :root (from style.css) --- */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-rgb: 33, 37, 41;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

/* --- Bootstrap reboot (from style.css / _reboot.scss, through [hidden]) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/* --- Header helpers (nav ul flush via scoped .header-menu .nav rules below) --- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: inherit;
}

/* --- Theme typography (from _main.scss / style.css) --- */
body {
  margin: 0;
  font-family: "Nunito Sans", "Avenir";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #232C33;
  word-wrap: break-word;
}

p {
  margin-bottom: 30px;
  font-family: "Nunito Sans", "Avenir";
}

/* Typography */
h1, .h1 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 900;
  font-size: 72px;
  line-height: 70px;
  text-transform: uppercase;
  color: #232C33;
}
@media (max-width: 1279px) and (min-width: 992px) {
  h1, .h1 {
    font-size: 56px;
    line-height: 58px;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 40px;
    line-height: 46px;
  }
}

h2, .h2 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 900;
  font-size: 56px;
  line-height: 58px;
  text-transform: uppercase;
  color: #232C33;
}
@media (max-width: 1279px) and (min-width: 992px) {
  h2, .h2 {
    font-size: 48px;
    line-height: 55px;
    letter-spacing: -0.15px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.15px;
  }
}

h3, .h3 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 900;
  font-size: 48px;
  line-height: 55px;
  letter-spacing: -1px;
  color: #232C33;
}
@media (max-width: 1279px) {
  h3, .h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  h3, .h3 {
    letter-spacing: -0.15px;
  }
}

h4, .h4 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.15px;
  color: #232C33;
}
@media (max-width: 1279px) {
  h4, .h4 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: normal;
  }
}

h5, .h5 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 800;
  font-size: 24px;
  line-height: 34px;
  color: #232C33;
}
@media (max-width: 991px) {
  h5, .h5 {
    font-size: 18px;
    line-height: 30px;
  }
}

.body16 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #929294;
  margin-bottom: 64px;
}

.b1 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #232C33;
}

.b2 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #232C33;
}

.b3 {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #232C33;
}
@media (max-width: 991px) {
  .b3 {
    color: #BB6BD9;
  }
}

.q {
  font-family: "Nunito Sans", "Avenir";
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  color: #232C33;
}
@media (max-width: 991px) {
  .q {
    font-size: 24px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .q {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
  }
}

.source {
  color: #929294;
}

strong {
  font-weight: 900;
  font-size: 18px;
  line-height: 30px;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #EF3E33;
}

/* --- Utilities used by header markup --- */
/* util .list-inline */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* util .list-inline-item */
.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* util .d-none */
.d-none {
  display: none !important;
}

/* util .d-sm-none — must precede .d-md-block so md+ show rules win */
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}

/* util .d-md-block */
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

/* util .pull-left */
.pull-left {
  float: left;
}

/* util .pull-right */
.pull-right {
  float: right;
}

/* util .clearfix */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.clearfix {
  float: none !important;
  clear: both !important;
}

/* util .row */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* --- Bootstrap grid (.col through offsets/gutters; from style.css) --- */
.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

/* --- Flex utilities used by hero / ATF components --- */
.justify-content-center {
  justify-content: center !important;
}

/* --- Bootstrap fragments used by center-home (minimal; not full modules) --- */
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}
.is-invalid ~ .invalid-feedback {
  display: block;
}

/* --- Icon fonts — FontAwesome moved to site-btm; ATF uses CSS chevrons --- */
.icon-chevron-down {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.35em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
  vertical-align: middle;
}

/* --- Theme buttons used in header CTA / mobile drawer --- */
.primary-theme-btn {
  color: #ffffff;
  background: linear-gradient(180deg, #B1232A 10.2%, #83161B 121.43%);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  border-radius: 1px;
  padding: 16px 15px;
  font-family: "Nunito Sans", "Avenir";
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: inherit;
  max-width: 330px;
  margin: 0 auto;
}
.primary-theme-btn a {
  color: #ffffff;
}

.primary-theme-btn:hover {
  background: #B5121B;
  box-shadow: none;
  color: #ffffff;
}
.primary-theme-btn:hover a {
  color: #ffffff;
}

.secondary-theme-btn {
  color: #B5121B;
  background: linear-gradient(180deg, #FFFFFF 10.2%, #D8D8D8 121.43%);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  border-radius: 1px;
  padding: 16px 15px;
  font-family: "Nunito Sans", "Avenir";
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  border: 1.5px solid #e0e0e0;
  box-shadow: 2px 2px 4px #929294;
  display: inherit;
  max-width: 330px;
  margin: 0 auto;
}
.secondary-theme-btn a {
  color: #B5121B;
}

.secondary-theme-btn:hover {
  background: #ffffff;
  border: 1.5px solid #F4F4F4;
  box-sizing: border-box;
  border-radius: 1px;
  color: #B5121B;
}
.secondary-theme-btn:hover a {
  color: #B5121B;
}


/* --- .container --- */
.container {
  margin: 0px auto;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 375px) {
  .container-sm, .container {
    max-width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1279px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1290px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1380px;
  }
}


/* --- Header / sticky nav / center menu / country picker --- */
.header {
  top: 0;
  z-index: 993;
  overflow: visible;
  width: 100%;
  transition: ease-in-out 0.2s;
}

.header.hide {
  transform: translateY(-100%);
}

.header :is(.container, .container-fluid) {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* bjm */
  height: 100%;
}

.header-logo {
  margin-right: auto;
}
body:dir(rtl) .header-logo {
  margin-left: auto;
  margin-right: initial;
}

.header-logo .logo-light {
  display: none;
}

.header-logo * {
  transition: linear 0.1s;
}

.header.sticky.absolute-light .header-logo img {
  width: auto;
  height: 54px;
  max-height: 54px;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .header.sticky.absolute-light .header-logo img {
    max-height: 41px;
  }
}

.header.sticky .header-logo img {
  width: auto;
  height: 54px;
  max-height: 54px;
  margin: 14px 0;
}
@media (max-width: 767px) {
  .header.sticky .header-logo img {
    max-height: 46px;
  }
}

.header-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-left: 32px;
  cursor: pointer;
  border: none;
  background: transparent;
}
@media (max-width: 767px) {
  .header-toggle {
    max-height: 46px;
  }
}

.header-toggle span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 0px;
  transition: linear 0.1s;
}

.header-toggle span:after,
.header-toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 0px;
  transition: linear 0.1s;
}

.header-toggle span:before {
  top: -10px;
}

.header-toggle span:after {
  bottom: -10px;
}

.header-toggle.toggle-close span {
  background: 0 0;
}

.header-toggle.toggle-close span:before {
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}

.header-toggle.toggle-close span:after {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}

.header-menu {
  display: inline-block;
  font-size: 14px;
  z-index: 995;
}

.header-menu .nav {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-menu .nav ul:not(.nav-dropdown):not(.nav-subdropdown) {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-menu .nav-item hr {margin:0.7rem 0}
.header-menu :is(.nav-item, .nav-link-item) {
  text-align: left;
}
body:dir(rtl) .header-menu :is(.nav-item, .nav-link-item) {
  text-align: right;
}

.header-menu :is(.nav-item, .nav-link-item) .nav-link {
  padding: 0;
}

.header-menu .nav-dropdown-toggle {
  position: relative;
  display: inline-block;
  color: #fff !important;
}

.header-menu .nav-dropdown-toggle:after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
  vertical-align: middle;
  color: #ffffff !important;
}
@media (max-width: 1279px) {
  .header-menu .nav-dropdown-toggle:after {
    color: #EF3E33 !important;
    width: 0.35em;
    height: 0.35em;
    transform: translateY(-0.05em) rotate(-45deg);
  }
  body:dir(rtl) .header-menu .nav-dropdown-toggle:after {
    transform: translateY(-0.05em) rotate(135deg);
  }
}

.header-menu .nav-subdropdown-toggle {
  position: absolute;
}

.header-menu .nav-subdropdown-toggle:after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.header-menu.font-2 .nav-item .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header.sticky.absolute-light {
  position: fixed;
  top: 0;
  left: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 7.14%, rgba(0, 0, 0, 0) 92.86%);
  box-shadow: none;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  height: 80px;
}

@media (min-width: 1279px) {
  .header.sticky.absolute-light .container {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .header.sticky.absolute-light .container,
  .header.sticky .container {
    max-width: 1410px !important;
  }
}
.header.absolute-light.border-bottom,
.header.absolute-light.border-top {
  border-color: rgba(255, 255, 255, 0.1);
}

.header.absolute-light .header-logo .logo-dark {
  display: none;
}

.header.absolute-light .header-logo .logo-light {
  display: inline-block;
}

.header.absolute-light .header-toggle span {
  background: #fff;
}

.header.absolute-light .header-toggle span:is(:after, :before) {
  background: #fff;
}

.header.absolute-light .header-toggle.toggle-close span {
  background: 0 0;
}

.header-menu :is(.nav-item, .nav-link-item) .nav-dropdown .nav-dropdown-item .nav-dropdown-link {
  position: relative;
  display: block;
  transition: linear 60ms;
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: #000000;
}

.header-menu :is(.nav-item, .nav-link-item) .nav-dropdown .nav-dropdown-item .nav-dropdown-link:hover {
  color: #EF3E33;
}

.header-menu :is(.nav-item, .nav-link-item) .nav-dropdown .nav-dropdown-item .nav-title {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 40px;
  color: #000000;
}

@media (min-width: 1279px) {
  .header:not(.left):not(.center) .header-menu {
    margin-left: auto;
  }
  body:dir(rtl) .header:not(.left):not(.center) .header-menu {
    margin-right: auto;
    margin-left: initial;
  }
  .header:not(.left):not(.center) .header-menu.centerSelected {
    min-width: 630px;
  }
  .header.left .header-logo {
    margin-right: 30px;
  }
  .header.left .header-menu {
    margin-right: auto;
  }
  .header.center .header-logo {
    margin-right: auto;
  }
  .header.center .header-menu .nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
  }
  .header-menu :is(.nav-item, .nav-link-item) {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 0 0 17px;
  }
  body:dir(rtl) .header-menu :is(.nav-item, .nav-link-item) {
    margin-right: 20px;
    margin-left: initial;
  }
  .header-menu :is(.nav-item, .nav-link-item):first-child {
    margin-left: 0;
  }
  body:dir(rtl) .header-menu :is(.nav-item, .nav-link-item):first-child {
    margin-right: 0;
    margin-left: initial;
  }
  .header-menu :is(.nav-item, .nav-link-item) a.nav-link:before {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    content: "";
    background: #EF3E33;
    height: 0;
    transition: all 0.14s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header-menu .nav-dropdown-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown {
    position: absolute;
    top: 75px;
    left: 0;
    transform: translateY(10px);
    z-index: 995;
    visibility: hidden;
    opacity: 0;
    width: 360PX;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 24px;
    transition: ease-out 0.14s;
  }
  body:dir(rtl) .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown {
    right: 0;
  }
  .header-menu .nav-dropdown-item {
    position: relative;
    display: block;
    margin: 0;
  }
  .header-menu .nav-dropdown-link.sd-toggle:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0.35em;
    height: 0.35em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header-menu .nav-subdropdown-toggle {
    display: none;
  }
  .header-menu .nav-subdropdown {
    position: absolute;
    top: -15px;
    left: 243px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    width: 240px;
    border-radius: 0.375em;
    box-shadow: 0 10px 40px -4px rgba(22, 25, 28, 0.17);
    padding: 15px;
    transition: linear 60ms;
  }
  .header-menu .nav-subdropdown-item {
    display: block;
    margin: 0;
  }
  .header-menu .nav-subdropdown-link {
    display: block;
    border-radius: 0.375em;
    padding: 7px 15px;
    transition: linear 60ms;
  }
  .header-menu .nav-subdropdown-link:hover {
    background: #eff2f5;
  }
  .header-menu .nav-dropdown-item:hover .nav-subdropdown {
    visibility: visible;
    opacity: 1;
  }
  .header-menu :is(.nav-item, .nav-link-item):hover .nav-link:before {
    height: 4px;
  }
  .header-menu .nav-item:hover .nav-dropdown {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .header-menu:is(.dropdown-black, .dropdown-dark) .nav-dropdown :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
    color: #fff;
  }
  .header-menu:is(.dropdown-black, .dropdown-dark) .nav-dropdown a:not(.button):not(.button-circle) {
    color: rgba(255, 255, 255, 0.8);
  }
  .header-menu:is(.dropdown-black, .dropdown-dark) .nav-dropdown a:not(.button):not(.button-circle):is(:focus, :hover) {
    color: #fff;
  }
  .header-menu:is(.dropdown-black, .dropdown-dark) .nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .header-menu:is(.dropdown-black, .dropdown-dark) .nav-subdropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .header-menu.dropdown-dark .nav-dropdown {
    background: #131517;
  }
  .header-menu.dropdown-dark .nav-subdropdown {
    background: #131517;
  }
  .header-menu.dropdown-black .nav-dropdown {
    background: #000;
  }
  .header-menu.dropdown-black .nav-subdropdown {
    background: #000;
  }
  .header.absolute-dark .header-menu .nav-item .nav-link:before {
    background: rgba(0, 0, 0, 0.05);
  }
  .header-menu-extra {
    margin-left: 0;
  }
  .header-toggle {
    display: none;
  }
  .header:not(.center):not(.left) .header-menu .nav-item:is(:last-child, :nth-last-child(2)) .nav-dropdown {
    right: 0;
    left: auto;
  }
  body:dir(rtl) .header:not(.center):not(.left) .header-menu .nav-item:is(:last-child, :nth-last-child(2)) .nav-dropdown {
    left: 0;
    right: auto;
  }
  .header:not(.center):not(.left) .header-menu .nav-item:is(:last-child, :nth-last-child(2)) .nav-subdropdown {
    right: 243px;
    left: auto;
  }
  body:dir(rtl) .header:not(.center):not(.left) .header-menu .nav-item:is(:last-child, :nth-last-child(2)) .nav-subdropdown {
    left: 243px;
    right: auto;
  }
  .header:not(.center):not(.left) .container-fluid .header-menu .nav-dropdown {
    right: 0;
    left: auto;
  }
  body:dir(rtl) .header:not(.center):not(.left) .container-fluid .header-menu .nav-dropdown {
    left: 0;
    right: auto;
  }
  .header:not(.center):not(.left) .container-fluid .header-menu .nav-subdropdown {
    right: 243px;
    left: auto;
  }
  body:dir(rtl) .header:not(.center):not(.left) .container-fluid .header-menu .nav-subdropdown {
    left: 243px;
    right: auto;
  }
}
@media (max-width: 1279px) {
  .header {
    height: 70px;
  }
  .header-menu {
    position: absolute;
    top: 78px;
    right: -120%;
    overflow-y: auto;
    background: #fff;
    width: 435px;
    box-shadow: 0 0 36px 0 rgba(22, 25, 28, 0.17);
    padding: 20px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header-menu.show {
    right: 0;
    height: 100vh;
  }
  .header-menu .nav {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header-menu :is(.nav-item, .nav-link-item) {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-bottom: 1px solid #e3e6e9;
    padding: 12px 0;
  }
  .header-menu :is(.nav-item, .nav-link-item):last-child {
    border: 0;
  }
  .header-menu :is(.nav-item, .nav-link-item) .nav-link {
    width: auto;
    height: auto;
    color: #000;
  }
  .header-menu .nav-dropdown-toggle {
    position: absolute;
    top: 14px;
    right: 0;
    width: 22px;
    height: 22px;
    text-align: right;
  }
  body:dir(rtl) .header-menu .nav-dropdown-toggle {
    left: 0;
    right: unset;
  }
  .header-menu .nav-dropdown-toggle.active {
    color: #131517;
  }
  .header-menu .nav-dropdown {
    display: none;
    background: #fff;
    padding: 10px 0 0 20px;
  }
  body:dir(rtl) .header-menu .nav-dropdown {
    padding-left: 0;
    padding-right: 20px;
  }
  .header-menu .nav-dropdown.show {
    display: block;
  }
  .header-menu .nav-dropdown-item {
    position: relative;
    margin: 0 0 8px;
  }
  .header-menu .nav-dropdown-item:last-child {
    margin: 0;
  }
  .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown,
  .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown .nav-dropdown-item,
  .header-menu :is(.nav-item, .nav-link-item) .nav-subdropdown,
  .header-menu :is(.nav-item, .nav-link-item) .nav-subdropdown li {
    list-style: none;
  }
  .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown .nav-dropdown-item :is(.nav-dropdown-link, .nav-title) {
    font-size: 18px;
    line-height: 1.5;
  }
  .header-menu .nav-subdropdown-toggle {
    top: 0;
    right: 0;
    width: 21px;
    height: 21px;
    text-align: right;
  }
  .header-menu .nav-subdropdown-toggle:after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .header-menu .nav-subdropdown {
    display: none;
    padding: 8px 0 0 20px;
  }
  .header-menu .nav-subdropdown.show {
    display: block;
  }
  .header-menu .nav-subdropdown li {
    margin: 0 0 8px;
  }
  .header-menu .nav-subdropdown li:last-child {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header-menu {
    width: 360px;
  }
}
@media (max-width: 480px) {
  .header-menu {
    width: 320px;
  }
}
@media (min-width: 992px) {
  .header-lg {
    height: 90px;
  }
  .header-lg .container-fluid {
    padding: 0 40px;
  }
  .header-lg .header-menu .nav-item .nav-link {
    line-height: 90px;
  }
  .header-lg .header-menu .nav-item .nav-link:before {
    bottom: 27px;
  }
  .header-lg .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown {
    top: 93px;
  }
  .header-xl {
    height: 100px;
  }
  .header-xl .container-fluid {
    padding: 0 50px;
  }
  .header-xl .header-menu .nav-item .nav-link {
    line-height: 100px;
  }
  .header-xl .header-menu .nav-item .nav-link:before {
    bottom: 32px;
  }
  .header-xl .header-menu :is(.nav-item, .nav-link-item) .nav-dropdown {
    top: 103px;
  }
}
.header-placeholder {
  height: 80px;
}

.header-placeholder-lg {
  height: 90px;
}

.header-placeholder-xl {
  height: 100px;
}

@media (max-width: 991.98px) {
  .header-placeholder,
  .header-placeholder-lg,
  .header-placeholder-xl {
    height: 70px;
  }
}
ul[class*=" list-inline"] li,
ul[class^=list-inline] li {
  display: inline-block;
}

body:dir(rtl) .list-inline {
  padding-right: 0;
  padding-left: unset;
}

ul.list-inline {
  margin-right: -7px;
  margin-left: -7px;
}

ul.list-inline li {
  padding: 0 7px;
}

.header-menu :is(.nav-item, .nav-link-item) a.nav-link {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.2px;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .header-menu :is(.nav-item, .nav-link-item) a.nav-link {
    font-size: 14px;
  }
}
@media (max-width: 1279px) {
  .header-menu :is(.nav-item, .nav-link-item) a.nav-link {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.6px;
    color: #000000;
  }
  .header-menu :is(.nav-item, .nav-link-item) a.nav-link:hover {
    color: #EF3E33;
  }
}

/* Desktop nav layout must follow typography (line-height: 22px above would otherwise win). */
@media (min-width: 1279px) {
  .header-menu :is(.nav-item, .nav-link-item) a.nav-link {
    display: inline-flex;
    line-height: 80px;
  }
}

.header-phone {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 12px;
  letter-spacing: -0.2px;
  color: #ffffff;
}
.header-phone img {
  padding: 0 5px 7px 5px;
}
@media (min-width: 1280px) and (max-width: 1400px) {
  .header-phone {
    display: none;
  }
}

.header-location {
  margin-bottom: 10px;
  position: relative;
}
.header-location a.btn-link {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  padding: 12px 14px;
  background: linear-gradient(180deg, #B1232A 10.2%, #83161B 121.43%);
  box-shadow: none;
  cursor: pointer;
  border-radius: 1px;
  text-decoration: none;
}
.header-location a.btn-link:hover {
  background: #EF3E33;
}
.header-location a.btn-link i {
  margin-left: 18px;
  font-size: 16px;
}
body:dir(rtl) .header-location a.btn-link i {
  margin-right: 18px;
  margin-left: initial;
}
.header-location a.primary-theme-btn {
  padding: 13px 12px;
  font-size: 14px;
}

@media (min-width: 1280px) and (max-width: 1401px) {
  .header-location a.longLbl.primary-theme-btn {
    font-size: 14px;
    padding: 12px 7px;
  }
}
.header-menu-extra ul.list-inline {
  margin: 6px 0 0;
}

.header-menu-extra .location-box {
  position: absolute;
  width: 496px;
  min-height: 100px;
  right: 5px;
  top: 32px;
  display: none;
  padding-top: 20px;
}
.header-menu-extra .location-box form {
  margin: 20px 0 5px;
}
.header-menu-extra .location-box form input[type=text] {
  height: 50px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-radius: 1px;
  width: 378px;
  border: none;
  display: inline-block;
}
.header-menu-extra .location-box form button {
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
}
.header-menu-extra .location-box .title {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 12px;
  letter-spacing: -0.2px;
  color: #000000;
}
.header-menu-extra .location-box a {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 49px;
  text-decoration-line: underline;
  color: #EF3E33;
  display: block;
}
.header-menu-extra .location-box .inner-box {
  background: rgba(255, 255, 255, 0.98);
  border: 0.5px solid #000000;
  box-sizing: border-box;
  border-radius: 1px;
  padding: 20px 20px 11px;
  float: left;
  width: 100%;
  margin-bottom: 16px;
}
.header-menu-extra .location-box .icon {
  display: inline-block;
  margin-right: 20px;
}
.header-menu-extra .location-box .details {
  display: inline-block;
  width: 90%;
}
.header-menu-extra .location-box .box-header {
  display: block;
  width: 100%;
  float: left;
}
.header-menu-extra .location-box .location-title {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: #000000;
}
.header-menu-extra .location-box .mi {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 30px;
  color: #EF3E33;
}
.header-menu-extra .location-box .details .location {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 19px;
}
.header-menu-extra .location-box .link {
  display: block;
  margin-left: 38px;
}
.header-menu-extra .location-box .link a {
  line-height: 30px;
}
.header-menu-extra .location-box .default-btn {
  margin: 17px 0 14px 47px;
  float: left;
  display: block;
}
.header-menu-extra .location-box .default-btn a {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.5px;
  color: #000000;
  text-decoration: none;
}
.header-menu-extra .location-box .default-btn a img {
  margin-left: 100px;
  margin-bottom: 5px;
}

.header-menu-extra .location-box .location-box-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 20px 25px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  float: left;
  display: block;
  width: 100%;
}

.header-menu-extra .header-location:hover .location-box {
  display: block !important;
}

.header-menu .nav-item a.nav-link.d-toggle {
  position: relative;
}

.header-menu span.mycenter {
  display: none;
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.2px;
  color: #ffffff;
  position: absolute;
  top: 5px;
}

.header-menu .nav-item a.nav-link.d-toggle span.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
  min-width: 65px;
}
@media (max-width: 1279px) {
  .header-menu .nav-item a.nav-link.d-toggle span.ellipsis {
    max-width: 290px;
    display: inline-block;
  }
}

ul.nav-dropdown.center-dropdown {
  width: 496px !important;
  list-style: none;
}
@media (max-width: 1279px) {
  ul.nav-dropdown.center-dropdown {
    width: 100% !important;
  }
}
ul.nav-dropdown.center-dropdown .inner-navigation {
  list-style: none;
  margin-bottom: 10px;
}
ul.nav-dropdown.center-dropdown .nav-dropdown-item {
  list-style: none;
}
ul.nav-dropdown.center-dropdown .center-info {
  border-top: 1px solid #C8C8C8;
  border-bottom: 1px solid #C8C8C8;
  padding: 10px 0 5px;
  margin: 20px 0 10px;
}
ul.nav-dropdown.center-dropdown .center-info ul {
  display: block;
  text-align: center;
}
ul.nav-dropdown.center-dropdown .center-info li {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #EF3E33;
  display: inline-block;
  margin: 0 17px;
}
ul.nav-dropdown.center-dropdown .center-info a {
  color: #EF3E33 !important;
  display: inline-flex;
  align-items: center;
}
ul.nav-dropdown.center-dropdown .center-info a:is(:hover, :active) {
  text-shadow: 0 0 5px yellow;
}
ul.nav-dropdown.center-dropdown .center-info .no-swap {
  display: flex;
}
ul.nav-dropdown.center-dropdown .iconWrapper {
  position: relative;
}
ul.nav-dropdown.center-dropdown .iconWrapper .iconText {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #FFF;
  pointer-events: none;
  z-index: 10000000;
  margin: 0;
}
ul.nav-dropdown.center-dropdown .lni.lni-comments-alt {
  font-size: 18px;
}
ul.nav-dropdown.center-dropdown .center-info :is(.lni.lni-phone, .lni.lni-comments-alt) {
  padding: 0 10px;
}
ul.nav-dropdown.center-dropdown .center-address {
  color: #000000;
}
ul.nav-dropdown.center-dropdown .center-name {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: #000000;
}
ul.nav-dropdown.center-dropdown .center-name:hover {
  color: #B5121B;
}
ul.nav-dropdown.center-dropdown .center-address1 {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
ul.nav-dropdown.center-dropdown .center-address .link {
  margin-top: 15px;
  display: block;
}
ul.nav-dropdown.center-dropdown .center-address .link a {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  color: #EF3E33;
}
ul.nav-dropdown.center-dropdown .center-address .link .button-link {
  color: #EF3E33;
  font-weight: 900;
  padding: 8px;
  float: left;
  min-width: 200px;
}
ul.nav-dropdown.center-dropdown .direction {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  color: #EF3E33;
  display: block;
  text-align: center;
}
ul.nav-dropdown.center-dropdown .direction .label {
  color: #000000;
  font-weight: 500;
}

@media (max-width: 1279px) {
  .header.sticky.absolute-light .header-logo img {
    width: auto;
    height: 54px;
    max-height: 54px;
    margin: 10px 0;
  }
  .header.sticky.absolute-light {
    height: 78px;
    background: #000000;
  }
  ul.nav-dropdown.center-dropdown .direction .label {
    font-size: 16px;
  }
  ul.nav-dropdown.center-dropdown .mapLinkCon {
    padding-right: 0;
  }
  .header.sticky .find-location.choosed .no-swap {
    margin-left: 0;
  }
}
.width-100 {
  width: 100%;
}

@media (min-width: 1279px) {
  .header-menu .nav-dropdown-toggle {
    display: none !important;
  }
  .header-menu .nav-item.center-navigation-main .nav-dropdown-toggle {
    display: block !important;
  }
}
.header-menu .nav-item.center-navigation-main .nav-link {
  padding-right: 15px;
}

/* COUNTRY PICKER */
#ctrySelCon {
  position: relative;
  width: auto;
  margin: 0 0 2px 20px;
}

#ctrySelCon button {
  background: linear-gradient(180deg, #B1232A 10.2%, #83161B 121.43%);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  border-radius: 1px;
  font-size: 18px;
  width: 100%;
  border: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  cursor: pointer;
  font-family: normal;
}

ul#ctrySelDpDn {
  position: absolute;
  top: 2.9em;
  width: auto;
  visibility: hidden;
  right: 0px;
  background-color: white;
  color: black;
  border-radius: 4px;
  border: 3px solid #83161B;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
body:dir(rtl) ul#ctrySelDpDn {
  left: 0px;
  right: unset;
}

ul#ctrySelDpDn li img {
  border: 1px solid darkorange;
  width: 32px;
  min-width: 32px;
  flex-shrink: 0;
  margin-right: 0.25em;
}
body:dir(rtl) ul#ctrySelDpDn li img {
  margin-left: 0.25em;
  margin-right: initial;
}

ul#ctrySelDpDn li a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  padding: 0.4em;
  font-size: 14px;
  font-weight: 900;
}

ul#ctrySelDpDn li a > span:first-child {
  flex-shrink: 0;
}

ul#ctrySelDpDn span {
  display: inline-flex;
}

ul#ctrySelDpDn a:hover {
  background: rgba(0, 0, 0, 0.2);
  color: black;
}

ul#ctrySelDpDn.menu-open {
  visibility: visible;
}

#ctrySelCon button img {
  width: 26px;
  margin-right: 8px;
  border: 1px solid darkorange;
}
body:dir(rtl) #ctrySelCon button img {
  margin-left: 8px;
  margin-right: initial;
}

#ctrySelCon .arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: transform ease-in-out 0.3s;
}

/* Country Selector Flyout Menu for Multi-Lang Countries */
#ctrySelCon .dropdown-content li.has-flyout {
  position: relative;
}

#ctrySelCon .dropdown-content li.has-flyout i {
  margin-left: auto;
}
#ctrySelCon .dropdown-content li.has-flyout > a > div:last-child {
  margin-left: auto;
}
body:dir(rtl) #ctrySelCon .dropdown-content li.has-flyout i {
  margin-right: 0.25em;
}
body:dir(rtl) #ctrySelCon .dropdown-content li.has-flyout > a > div:last-child {
  margin-right: auto;
  margin-left: initial;
}

#ctrySelCon .submenu {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  z-index: 2;
}
body:dir(rtl) #ctrySelCon .submenu {
  left: unset;
  right: 100%;
}

#ctrySelCon .submenu.menu-open {
  visibility: visible;
}

#ctrySelCon .submenu li a {
  padding: 7px;
  white-space: nowrap;
}

#ctrySelCon .dropdown-content li.has-flyout > a[aria-expanded=true] {
  background: rgba(0, 0, 0, 0.2);
  color: black;
}

/* header element fixes */
@media (max-width: 576px) {
  .header .container {
    padding: 0 10px;
  }
  .header-logo {
    margin: auto;
    max-height: none;
  }
  .header.sticky.absolute-light .header-logo img {
    margin: auto;
    max-height: none;
    height: auto;
    width: 100%;
    max-width: 48vw;
  }
  #ctrySelCon, .header-toggle {
    margin-left: 20px;
  }
  #ctrySelCon, .header-toggle {
    margin-right: 20px;
    margin-left: initial;
  }
  ul#ctrySelDpDn {
    top: 2.4rem;
    border-width: 2px;
  }
  ul#ctrySelDpDn li img {
    width: 26px;
    min-width: 26px;
  }
  ul#ctrySelDpDn li a {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .header-menu-extra {
    right: 180px;
  }
}
@media (max-width: 991px) {
  .header-menu-extra {
    display: none !important;
  }
}
@media (min-width: 1340px) {
  .header-menu-extra {
    margin-left: 1vw;
  }
  body:dir(rtl) .header-menu-extra {
    margin-right: 1vw;
    margin-left: initial;
  }
}
@media (min-width: 576px) {
  #ctrySelCon button {
    padding: 9px 10px;
  }
  #ctrySelCon button img {
    width: 32px;
    margin-right: 10px;
  }
}
@media (min-width: 1279px) {
  #ctrySelCon {
    margin: 0 0 3px 15px;
  }
  body:dir(rtl) #ctrySelCon {
    margin-right: 15px;
    margin-left: initial;
  }
}
@media (min-width: 1401px) {
  #ctrySelCon {
    margin-bottom: 2px;
  }
  .header-menu .nav-item a.nav-link.d-toggle span.ellipsis {
    max-width: 150px;
  }
}
/* END COUNTRY PICKER */
@media (min-width: 1280px) {
  body:dir(rtl) #sMetRes.method-result .our-result .content {
    margin-left: 50px;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  #sMetRes > .our-result .btnCtaSchedAssessCon:dir(rtl) {
    text-align: right !important;
    padding-right: 0 !important;
  }
  #sMetRes .c2 {
    padding-left: 50px !important;
    padding-right: 20px !important;
  }
}
@media (min-width: 768px) {
  body:dir(rtl) #y-best legend, body:dir(rtl) #yBestVB legend {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  #y-best legend, #yBestVB legend {
    margin: 0 0 0 115px;
  }
  body:dir(rtl) #y-best legend, body:dir(rtl) #yBestVB legend {
    margin-right: 115px;
    margin-left: initial;
  }
}
/** top-nav items styling ES-specific **/
@media (min-width: 1280px) {
  html[lang=es] .header-menu .nav-item,
  html[lang=es] .header-menu .nav-link-item {
    margin: 0 0 0 14px;
  }
}
@media (min-width: 1280px) and (max-width: 1299px) {
  html[lang=es] .header-menu .nav:has(> .center-navigation-main) .nav-item,
  html[lang=es] .header-menu .nav:has(> .center-navigation-main) .nav-link-item {
    margin: 0 0 0 4px;
  }
}
@media (min-width: 1300px) {
  html[lang=es] .header-menu .nav:has(> .center-navigation-main) .nav-item,
  html[lang=es] .header-menu .nav:has(> .center-navigation-main) .nav-link-item {
    margin: 0 0 0 6px;
  }
}
@media (min-width: 1280px) {
  html[lang=es] .header-phone {
    display: none;
  }
  .header-menu span.mycenter {display:block}
}


/* --- Shared find-location / location-wrapper (header dropdowns) --- */
.location-wrapper {
  display: block;
  margin: -200px auto 0;
}
.location-wrapper .find-location {
  align-self: flex-end;
  width: 416px;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(146, 146, 148, 0.4);
  margin: 0px auto;
}
@media (max-width: 991px) {
  .location-wrapper .find-location {
    width: 375px;
  }
}
@media (max-width: 480px) {
  .location-wrapper .find-location {
    width: 90%;
  }
}
.location-wrapper .location-header {
  background: #F4F4F4;
  box-shadow: 0px 1px 10px rgba(146, 146, 148, 0.3);
  padding: 24px;
}
.location-wrapper .location-header .title {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.2px;
  color: #000000;
  margin-bottom: 8px;
}
.location-wrapper .location-header :is(h4, .h4) {
  font-weight: 800;
  font-size: 20px;
  line-height: 40px;
  color: #000000;
  margin-bottom: 8px;
}
.location-wrapper .location-header a {
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.15px;
  text-decoration: none;
  color: #EF3E33;
}
.location-wrapper .location-header a:after {
  content: "";
  width: 90px;
  height: 2px;
  margin: 0px 3px 4px;
  background: #C8C8C8;
  display: block;
  max-width: 100%;
}
.location-wrapper .location-body {
  padding: 24px 24px 16px;
  display: block;
  float: left;
  width: 100%;
}
.location-wrapper .inner-box {
  background: rgba(255, 255, 255, 0.98);
  border: 0.5px solid #C8C8C9;
  box-sizing: border-box;
  border-radius: 1px;
  padding: 16px 16px 11px;
  float: left;
  width: 100%;
  margin-bottom: 16px;
}
.location-wrapper .icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
.location-wrapper .icon i {
  font-size: 30px;
}
.location-wrapper .details {
  display: inline-block;
  width: 86%;
}
.location-wrapper .box-header {
  display: block;
  width: 100%;
  float: left;
}
.location-wrapper .location-title {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: #000000;
}
.location-wrapper .mi {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 30px;
  color: #EF3E33;
}
.location-wrapper .details .location {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 19px;
  text-align: start;
  display: inline-block;
  margin-top: 5px;
}
.location-wrapper .link {
  display: block;
  margin-left: 0px;
}
.location-wrapper .link a {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #EF3E33;
  display: block;
}
.location-wrapper .default-btn {
  margin: 17px auto 14px;
  float: left;
  display: block;
  width: 100%;
  text-align: center;
}
.location-wrapper .default-btn a {
  font-family: "Nunito Sans", "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.5px;
  color: #000000;
  text-decoration: none;
}
.location-wrapper .default-btn a img {
  margin-left: 20px;
  margin-bottom: 5px;
}


.find-location.choosed .location-header {
  padding: 24px 54px;
  color: #000000;
}
.find-location.choosed .location-header :is(h4, .h4) {
  font-weight: 900;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.25px;
}
.find-location.choosed .location-header .address {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.find-location.choosed .location-body {
  padding: 24px 56px 32px;
}
.find-location.choosed .contact-information a {
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #EF3E33;
  margin-bottom: 48px;
  display: inline-block;
}
.find-location.choosed .contact-information ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.find-location.choosed .contact-information li {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #242424;
  margin-bottom: 10px;
}
.find-location.choosed .contact-information li a {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #EF3E33;
  text-decoration: none;
  margin-bottom: 0;
}
.find-location.choosed .contact-information li a:is(:hover, :active) {
  text-shadow: 0 0 5px yellow;
}
.find-location.choosed .contact-information li img {
  margin-right: 12px;
  margin-bottom: 10px;
}
body:dir(rtl) .find-location.choosed .contact-information li img {
  margin-left: 12px;
  margin-right: initial;
}
.find-location.choosed .default-btn {
  margin: 0px !important;
}
.find-location.choosed .default-btn a {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #939394;
}
.find-location.choosed .default-btn a.primary-theme-btn {
  color: #ffffff;
  width: 100%;
  display: block;
  margin: 0 0 24px;
}


.find-location .location-header form {
  margin: 20px 0 5px;
}
.find-location .location-header form input[type=text] {
  height: 50px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-radius: 1px;
  width: 83%;
  border: none;
  display: inline-block;
}
@media (max-width: 991px) {
  .find-location .location-header form input[type=text] {
    width: 80%;
  }
}
.find-location .location-header form button {
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
}


.blogList .container .portfolio-wrapper.spacing-50 {
  margin: 0 -25px;
}

.press-section {
  float: left;
  display: block;
  width: 100%;
  padding: 120px 0 0;
  background: #f4f4f4;
}
@media (max-width: 991px) {
  .press-section {
    padding-bottom: 0;
    background: #E5E5E5;
  }
}
.press-section :is(h2, .h2) {
  color: #000000;
}
.press-section :is(h2, .h2):after {
  content: "";
  width: 200px;
  height: 2px;
  margin: 36px 0 52px;
  background: rgba(0, 0, 0, 0.2);
  display: block;
}
.press-section .blogList {
  background-repeat: repeat-x;
  background-position: bottom left;
  padding: 0;
}
.press-section .portfolio-wrapper.spacing-50 {
  margin: 0;
}
.press-section .portfolio-wrapper.spacing-50 .portfolio-item {
  padding: 0px 24px 40px 0;
}
@media (max-width: 991px) {
  .press-section .portfolio-wrapper.spacing-50 .portfolio-item {
    padding: 0px 12px 40px;
  }
}
.press-section #loadMore {
  margin-bottom: 80px;
}
.press-section .mbl-form-wrapper {
  background: #fff;
  padding: 56px 0;
  clear: both;
}
.press-section .sticky-sidebar {
  position: relative;
}
.press-section .form-wrapper {
  background: #F4F4F4;
  box-shadow: 0px 5px 10px rgba(146, 146, 148, 0.25);
  border-radius: 1px;
  padding: 32px 24px;
}
@media (max-width: 991px) {
  .press-section .form-wrapper {
    position: static;
    padding: 22px 19px;
  }
}
.press-section .form-wrapper p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
}
@media (max-width: 991px) {
  .press-section .form-wrapper p {
    font-size: 16px;
    line-height: 24px;
  }
}
.press-section .form-wrapper p.heading {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 800;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 32px;
}
.press-section .form-wrapper :is(h4, .h4, .request-press-title) {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .press-section .form-wrapper :is(h4, .h4, .request-press-title) {
    margin-bottom: 22px;
  }
}
.press-section .request-press-title {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.15px;
  color: #232C33;
}
@media (max-width: 1279px) {
  .press-section .request-press-title {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: normal;
  }
}
.press-section .request-press-description {
  font-family: "Nunito Sans", "Avenir";
  font-weight: 800;
  font-size: 24px;
  line-height: 34px;
  color: #232C33;
}
@media (max-width: 991px) {
  .press-section .request-press-description {
    font-size: 18px;
    line-height: 30px;
  }
}
.press-section .form-wrapper input {
  background: #FFFFFF;
  border-radius: 1px;
  border: none;
  box-shadow: none;
  margin-bottom: 16px;
  height: 61px;
}
.press-section .form-wrapper .primary-theme-btn {
  width: 100%;
  border: none;
  margin-top: 32px;
}
