/* Header: Main container and positioning */
header {
  position: absolute;
  z-index: 9999;
  top: 0;
  width: 100%;
  transform: translateZ(0);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  -webkit-transition: 250ms;
  transition: 250ms;
}
header.header__scrolled {
  position: fixed;
}
header.header__scrolled .t-container{
  background-color: #ff3720ed;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.t-container {
  width: 90vw;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.t-row {
  margin: 0;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 16px;
  padding: 0px 16px 0 24px;
}

/* Header: Logo and Title */
.header__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  text-transform: none;
  justify-content: flex-start;
}

.title:hover .slogan__icon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  /* filter: invert(71%) sepia(100%) saturate(1500%) hue-rotate(3deg); */
}

.slogan__icon {
  width: 15px;
  display: inline-block;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  background: url(../images/logo.svg) center no-repeat;
  filter: brightness(1000%);
  background-size: contain;
  position: relative;
  top: 1px;
  margin: 0 1.5px 0 0;
}

.slogan {
  font-weight: 500;
}

.slogan__first {
  font-weight: 500;
}

/* Header: Navigation */
.t-navigation {
  display: flex;
  margin-right: 20px;
  text-align: center;
  gap: 12px;
}

.t-nav__link {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.t-nav__link {
  margin-right: 0;
  padding: 13px 12px;
  border-radius: 8px;
}

.t-nav__link:hover {
  color: #ff3720;
  background-color: #fff;
  border-radius: 8px;
}

/* Header: Mobile Menu */
.header__menu {
  display: none;
}
.menu {
  display:none
}

.hamburger,
.cross {
  font-size: 0;
  line-height: 45px;
  z-index: 1;
  width: 30px;
  margin-top: 3px;
  padding: 0 15px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  outline: 0;
  text-align: right;
}

.hamburger {
  background: url(../images/menu.svg) center no-repeat;
}

.cross {
  display: none;
  background: url(../images/cross.svg) center no-repeat;
}

.menu {
  font-weight: 700;
  position: fixed;
  z-index: 99999999;
  top: 72px;
  left: 2.5vw;
  width: 95vw;
  text-align: left;
  background-color: rgba(255, 255, 255, .95);
  box-shadow: 0 28px 128px -24px rgba(0, 0, 0, .24);
  border-radius: 24px;
  padding: 6px 24px;
}
.menu.menu_inner {
  left: 0;
}
.main__nav {
  font-size: 16px;
  line-height:50px;
  position:relative;
  display:inline-block;
  width:90%;
  height: 40px;
  padding-left:0;
  color:#000000;
  text-decoration: none;
  text-transform: none;
}
.main__nav:hover {
  color:#f33
}
.main__nav:last-child {
  border-bottom:#9a9a9a 0 solid
}
.menu__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000ba;
  z-index: 999;
  display: none;
}
.glyphicon-home {
  font-size:1.5em;
  margin:0 auto;
  color:#fff
}
.lang__select {
  position:absolute;
  top:0;
  left:40px
}
.header__number,.number__link {
  position:relative;
  font-weight:700
}
.menu__langChanger, .menu__currencyChanger {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 16px 0 16px 0;
}
.menu input {
  display: none;
}
.menu label {
  font-size: 16px;
  padding: 8px;
}
.menu input[type="radio"]:checked + label {
  color: #ffffff;
  background-color: #ef3e2b;
  border-radius: 6px;
}

/* Header: Language and Currency Selectors */
.header__langChanger,
.header__currencySelect {
  float: right;
  width: 50px;
  margin: 0;
  padding: 0;
}

.langChanger,
.currencyChanger {
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
}

header .jq-selectbox__select {
  line-height: 40px;
  height: 41px;
  padding: 0 10px 0 10px;
  text-align: left;
  color: #ffffff;
  border-radius: 3px;
  box-shadow: none;
  font-weight: 700;
  font-size: 12px;
}

.jq-selectbox__select:hover {
  background-color: #ffffff;
  border-radius: 8px;
  color: #000000;
}

/* Header: Contact Icons */
.t-contacts {
  display: flex;
  gap: 4px;
  margin: 0px 16px;
}

.t-contacts .t-wa img {
  width: 22px;
}
.t-contacts .t-wa, .t-contacts .t-tgm {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.t-contacts .t-wa:hover {
  background-color: #ffffff;
}
.t-contacts .t-tgm:hover {
  background-color: #ffffff;
}
.t-contacts .t-wa:hover img {
  filter: invert(50%) sepia(93%) saturate(1500%) hue-rotate(87deg);
}

.t-contacts .t-tgm img {
  width: 22px;
}

.t-contacts .t-tgm:hover img {
  filter: invert(50%) sepia(93%) saturate(1500%) hue-rotate(185deg);
}

/* Header: Tooltip and Phone Number */
.header__number {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: none;
  height: 38px;
  margin-top: 14px;
  text-align: center;
}

.number__link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dotted #000;
}

.header__tooltip {
  position: absolute;
  z-index: 1000;
  top: 126px;
  left: 50%;
  display: none;
  width: 280px;
  margin-left: -140px;
  text-align: left;
  border: 1px solid #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}

.header__tooltip_background {
  position: absolute;
  top: 0;
  left: -50%;
  display: none;
  width: 10000px;
  height: 10000px;
  background-color: rgba(255,255,255,.4);
}

/* Header: select2 dropdown */
header .select2-container .select2-selection.select2-selection--single {
  border: none;
  background: none;
  display: inline-block;
  text-decoration: none;
  padding: 0;
  margin-top: 4px;
}
header .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  line-height: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0 10px;
}
header .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
header .select2-container .select2-selection.select2-selection--single:hover {
  border: none;
  background-color: #ffffff !important;
}
header .select2-container .select2-selection.select2-selection--single:hover .select2-selection__rendered {
  color: #000;
}
.header_select_hovered {
  color: #000;
  background-color: #ffffff;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none!important;
  }
  
  .header__menu {
    display: flex;
    width: 20%;
    margin-right: 0;
    order: 3;
    justify-content: flex-end;
  }
  
  .t-navigation,
  .header__number {
    display: none;
  }
  
  .header__title {
    font-size: 24px;
    width: 44% !important;
    order: 2;
    justify-content: center;
    letter-spacing: 0.01em;
  }
  
  .t-row .t-col_custom {
    width: 54px;
    float: right;
    padding: 0;
    margin-top: 5px;
    margin-right: 8px;
  }
  .t-row {
    padding: 0 16px;
  }
  .header__langChanger, .header__currencySelect {
    display: none;
  }
  .t-container {
    width: 95vw;
  }
  .t-contacts {
    order: 1;
    width: 20%;
    margin: 0;
  }
  .slogan__icon {
    width: 15px;
    margin: 0px 1px 0 0px;
    top: 1.5px;
  }
}

.header__scrolled 
 a#logo-link:hover {
    color: #ffffff;
}
a#logo-link:hover {
    color: #ff3720;
}

a#logo-link {color: #fff;text-decoration: none;}

.mobile__link__dropdown {
  margin-left: 10px;
  text-transform: none;
  display: none;
}
.mobile__chevron {
  font-size: 12px;
  width: 50px;
  height: 18px;
  margin: 10px 10px 5px 5px;
}
.text-nav__subtitle {
  display: inline-block;
  font-size:14px;
  font-weight:400;
  margin:2px 0;
  transition:all 150ms ease;
  text-decoration:none;
  color: #000000;
  width: 100%;
}
.text-nav__subtitle:hover {
  text-decoration:underline;
  color:red
}
.text-nav__subtitle_active {
  text-decoration:none;
  color:#000
}