.countries-strip {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1rem;
  height: 50px;
  z-index: 1003;
}
@media (max-width: 991px) {
  .countries-strip {
    position: absolute;
    padding-left: var(--space-s);
    height: var(--header-height);
    justify-content: center;
  }
}
.countries-strip__country {
  height: 20px;
}
.countries-strip__country img {
  display: flex;
  max-width: unset;
}
.countries-strip__inner {
  display: flex;
  column-gap: var(--space-xs);
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .countries-strip__inner {
    align-items: flex-start;
  }
}
.countries-strip__wrap {
  display: flex;
  column-gap: var(--space-s);
}
@media (max-width: 991px) {
  .countries-strip__wrap {
    padding-top: 6px;
    padding-right: 8px;
    padding-bottom: 6px;
    padding-left: 8px;
    background-color: var(--white);
    border-top-left-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    position: absolute;
    top: 4px;
    left: 4px;
  }
}
.eg-header {
  position: relative;
  overflow: visible;
}
.eg-header__nav-wrap {
  background-color: var(--primary);
  padding: 1rem 0;
}
.eg-header__nav-container {
  width: 100%;
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.eg-header .eg-main-menu {
  color: inherit;
  flex: 1;
}
.eg-header .eg-main-menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
}
.eg-header .eg-main-menu li a {
  display: inline-flex;
  position: relative;
  color: var(--text-on-primary);
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 1.4rem;
  padding-right: 2.2rem;
  padding-bottom: 1.4rem;
  padding-left: 2.2rem;
  transition: 0.2s ease color;
}
.eg-header .eg-main-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary);
  height: 3px;
  width: 0;
  transition: 0.6s ease width, 0.6s ease background;
}
.eg-header .eg-main-menu li a:hover {
  color: var(--accent);
}
.eg-header .eg-main-menu li a:hover::before {
  width: 100%;
  background: var(--accent);
}
.eg-header .eg-right-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .eg-header .eg-main-menu, .eg-header .eg-right-menu {
    display: none;
  }
  .eg-header .eg-header__nav-wrap {
    padding: 0;
  }
}
.eg-header .eg-menu-cart a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 991px) {
  .eg-header .eg-menu-cart a {
    position: fixed;
    z-index: 999;
    bottom: var(--space-s);
    right: var(--space-s);
  }
}
.eg-header .eg-menu-cart i {
  background: var(--success-active);
  aspect-ratio: 1;
  width: 3.2rem;
  height: 3.2rem;
  display: grid !important;
  place-items: center;
}
.eg-header .eg-menu-cart i::before {
  color: #fff;
  font-size: 1.7rem;
  line-height: 0;
  margin-right: 2px;
}
.eg-header .eg-menu-cart .count-wrap {
  background: #fff;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.6em;
}
@media (max-width: 991px) {
  .eg-header .eg-menu-cart .count-wrap {
    box-shadow: 0px 1px 5px #0000004a;
  }
}
.eg-header .eg-menu-cart .count-wrap span {
  color: var(--success-active);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-xs);
}
.header-banner {
  background-image: linear-gradient(#e52d3d, #ef6432);
}
@media (max-width: 478px) {
  .header-banner {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    background-image: linear-gradient(#e52d3d, #ef6432);
  }
}
.header-banner__heading {
  color: inherit;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: var(--lh-h1);
}
@media (max-width: 478px) {
  .header-banner__heading {
    display: none;
  }
}
.header-banner__heading--desktop {
  font-size: calc(min(64px, calc(4.9vw - 1px)));
}
.header-banner__heading--mobile {
  display: none;
}
@media (max-width: 478px) {
  .header-banner__heading--mobile {
    font-size: 9.6vw;
    text-align: center;
    letter-spacing: 0px;
    display: block;
  }
}
.header-banner__inner {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: var(--space-m);
  align-items: center;
  flex-direction: row;
  height: min(245px, 24vw);
  max-width: 1200px;
}
@media (max-width: 991px) {
  .header-banner__inner {
    height: calc(24vw + 6rem);
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  .header-banner__inner {
    flex-wrap: nowrap;
  }
}
@media (max-width: 478px) {
  .header-banner__inner {
    height: fit-content;
    padding: var(--space-s);
    padding-top: var(--space-xs);
    flex-direction: column;
    align-items: center;
  }
}
.header-banner__inner-content {
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: var(--text-on-primary);
}
@media (max-width: 478px) {
  .header-banner__inner-content {
    align-items: center;
  }
}
.header-banner__logo {
  display: inline-block;
  padding-top: 1.4rem;
  width: 30%;
  max-width: 200px;
}
@media (max-width: 478px) {
  .header-banner__logo {
    width: auto;
    height: 140px;
  }
  .header-banner__logo img {
    width: 100%;
    height: 100%;
  }
}
.header-banner__pretext {
  font-size: min(30px, 2.5vw);
  margin-bottom: 0;
}
.header-banner__pretext b {
  font-weight: 700;
}
@media (max-width: 478px) {
  .header-banner__pretext {
    display: none;
  }
}
.header-banner__text {
  font-size: min(30px, calc(2.3vw - 1px));
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
}
@media (max-width: 478px) {
  .header-banner__text {
    display: none;
  }
}
.header-banner-mobile__freecall {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .header-banner-mobile__freecall {
    color: var(--primary);
    font-size: calc(4vw + 10px);
  }
}
@media (max-width: 478px) {
  .header-banner-mobile__freecall {
    text-align: center;
  }
}
.header-banner-mobile__freecall-wrap {
  color: var(--text-on-primary);
  text-align: right;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  display: none;
}
@media (max-width: 991px) {
  .header-banner-mobile__freecall-wrap {
    align-items: center;
  }
}
@media (max-width: 478px) {
  .header-banner-mobile__freecall-wrap {
    display: block;
    background-color: var(--text-on-primary);
    border-bottom-width: 8px;
    border-bottom-style: solid;
    border-bottom-color: var(--primary);
  }
}
@media (max-width: 991px) {
  .header-banner-mobile__text {
    color: var(--text-on-primary);
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 300;
  }
}
@media (max-width: 478px) {
  .header-banner-mobile__text {
    font-size: calc(3.8vw + 3px);
  }
}
.header-banner-mobile__text-wrap {
  display: none;
}
@media (max-width: 991px) {
  .header-banner-mobile__text-wrap {
    padding-top: 2vw;
    padding-bottom: 2vw;
    background-color: var(--primary);
    align-items: center;
  }
}
@media (max-width: 478px) {
  .header-banner-mobile__text-wrap {
    display: block;
  }
}
