@font-face {
    font-family: 'Rubik';
    src: url('fonts/Rubik.ttf') format('opentype');
  }
@font-face {
    font-family: 'Almoni Tzar AAA';
    src: url('fonts/almoni-tzar-aaa-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Almoni Tzar AAA';
    src: url('fonts/almoni-tzar-aaa-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Almoni Tzar AAA';
    src: url('fonts/almoni-tzar-aaa-extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Almoni Tzar AAA';
    src: url('fonts/almoni-tzar-aaa-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Fb Liddar Bold';
    src: url('fonts/FbLiddar-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
  @font-face {
    font-family: 'Assistant';
    src: url('fonts/Assistant.ttf') format('opentype');
    /* font-weight: bold; */
    font-style: normal;
  }
  @font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo.ttf') format('opentype');
    /* font-weight: bold; */
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.ttf') format('opentype');
    /* font-weight: bold; */
    font-style: normal;
  }
.header_bar {
    min-height: 6.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #fff;
}

.plain-link {
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}
.plain-link:hover,
.plain-link:focus {
    text-decoration: none !important;
}

.container_header_logo {
    width: 9.01vw;
    height: 3.906vw;
    margin: 0.677vw 0 1.667vw 0;
}
.container_header_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header_menu {
    margin: 0 7.344vw;
    display: flex;
    gap: 2.604vw;
}

.header_menu a {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.938vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #713fa0;

    position: relative;
    transition: color 0.3s ease;
}

/* Подчеркивание "снизу-вверх" при наведении */
.header_menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2vw;
    width: 100%;
    height: 2px;
    background-color: #713fa0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover эффект */
.header_menu a:hover {
    color: #5e3290;
}

.header_menu a:hover::after {
    transform: scaleX(1);
}

/* .header_menu {
    margin: 0 7.344vw;
    display: flex;
    gap: 2.604vw;
}
.header_menu a {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.938vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #713fa0;
} */


.header_language_selection {
    display: flex;
    gap: 0.208vw;
}
.header_language_selection h3 {
    font-family: "Rubik";
    font-weight: 400;
    /* font-size: 14px; */
    font-size: 0.729vw;
    color: #737577;
}
.header_language_selection h3.select {
  transform: rotate(90deg);
  cursor: pointer;
}
[dir="rtl"] .header_language_selection h3.select {
    transform: rotate(-90deg);
}
.styled-language-select {
  outline: none;
  appearance: none;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 0.729vw;
  color: #737577;
}

/* .header_info {
    display: flex;
    flex-direction: column;
    gap: 0.104vw;
    margin: 0 1.563vw 0 2.604vw;
}
.header_info p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.625vw;
    color: #737577;
    margin: 0;
}
.header_info span {
    font-weight: 300;
    font-size: 0.833vw;
} */
.header_info {
    display: flex;
    flex-direction: column;
    gap: 0.104vw;
    margin: 0 1.563vw 0 2.604vw;
}

.header_info p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.625vw;
    color: #737577;
    margin: 0;
}

.header_info span {
    font-weight: 300;
    font-size: 0.833vw;
}

/* Анимация ссылок внутри header_info */
.header_info a {
    position: relative;
    color: #713fa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Подчеркивание при наведении */
.header_info a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1vw;
    width: 100%;
    height: 1px;
    background-color: #713fa0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover эффект */
.header_info a:hover {
    color: #5e3290;
}

.header_info a:hover::after {
    transform: scaleX(1);
}

.header_language_selection span{
  transform: rotate(-90deg);
  font-family: "Rubik";
  font-weight: 400;
  font-size: 0.729vw;
  color: #737577;
}
[dir="rtl"] .header_language_selection span{
  transform: rotate(90deg);
}
.header_button_question {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;
    width: 9.375vw;
    height: 2.083vw;
    box-shadow: 0 5px 25px 0 rgba(38, 72, 81, 0.3);
    background: #713fa0;
    cursor: pointer;

    transition: all 0.3s ease;
    transform: translateY(0);
}

.header_button_question:hover {
    background: #5e3290; /* темнее при наведении */
    transform: translateY(-3px); /* лёгкое "подпрыгивание" */
    box-shadow: 0 8px 30px rgba(38, 72, 81, 0.4); /* усиленная тень */
}

.header_button_question h2 {
    font-family: "Rubik";
    font-weight: 500;
    font-size: 0.833vw;
    text-align: center;
    color: #fff;

    transition: color 0.3s ease;
}

.header_button_question:hover h2 {
    color: #e0d4f7; /* немного светлее белого текста при наведении */
}


/* .header_button_question {
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 4px;
    width: 9.375vw;
    height: 2.083vw;
    box-shadow: 0 5px 25px 0 rgba(38, 72, 81, 0.3);
    background: #713fa0;
    cursor: pointer;
}
.header_button_question h2 {
    font-family: "Rubik";
    font-weight: 500;
    font-size: 0.833vw;
    text-align: center;
    color: #fff;
} */
.header_mob_menu {
  display: none;
}
.header_mob_ask {
  display: none;
}
.header_mob_ask2 {
    width: 2.5vw;
    height: 2.5vw;
   
  }
@media (max-width: 768px) {
  .styled-language-select {
    outline: none;
    appearance: none;
    font-family: "Rubik";
    font-weight: 400;
    font-size: 3.733vw;
    color: #737577;
  }
  .header_mob_menu {
    display: block;
  }
  .header_mob_ask {
    display: block;
  }
  .header_mob_ask2 {
    display: none;
    
   
  }
  .header_menu {
    display: none;
  }
  .header_language_selection {
    display: none;
  }
  .header_info {
    display: none;
  }
  #mob_a, #mob {
    display: none;
  }
  .header_bar {
      min-height: auto;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin: 5.333vw;
      background: none;
  }
  .header_mob_menu {
    width: 12vw;
    height: 12vw;
    border-radius: 100%;
    background: #fff;
    padding: 3.733vw 3.2vw 3.467vw 4vw;
    box-shadow: 0 5px 25px 0 rgba(38, 72, 81, 0.3);
  }
 .header_mob_ask {
    width: 12vw;
    height: 12vw;
   
  }

  .header_mob_menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  [dir="rtl"] .header_mob_menu img {
    transform: scaleY(-1) rotate(180deg);  
  }
  .header_mob_ask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container_header_logo {
    width: 37.333vw;
    height: 16vw;
    margin: 0;
  }

}