header {
  /* color: var(--grey2); */
  width: 100%;
  /* position: fixed;
  left: 0;
  top: 0; */
  z-index: 150;
  /* border-bottom: 1px solid var(--blue); */
}
header.active {
  /* width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 150; */
  /* border-bottom: 1px solid var(--grey); */
}
.top__header p {
  font-size: 14px !important;
  color: var(--white) !important;
}
.top__header {
  padding: 8px 0;
  background-color: var(--blue);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top__header_content {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--white);
}

.top__header_content a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bottom__header {
  padding: 12px 0;
  background-color: var(--white);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.bottom__header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom__header_support,
.mobile__menu_support {
  font-weight: 600;
  color: var(--textColor);
  padding: 0 8px;
}
.bottom__header_mobile-logo,
.bottom__header_logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bottom__header_logo {
  font-size: 24px;
  font-weight: 700;
  color: #f0f0fb;
}
.bottom__header_btn,
.mobile__menu_btn {
  color: white;
  background-color: var(--red);
  margin-bottom: 12px;
  gap: 11px;
}
/*  */

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500 !important;
  position: relative;
  line-height: 160%;
  background-color: inherit;
  cursor: pointer;
}
.dropdown-wrapper.desktop .dropdown-trigger {
  color: var(--darkBlue);
}
.dropdown-wrapper.mobile .dropdown-trigger {
  color: var(--white);
}
.dropdown-menu a::after {
  content: unset;
}
.dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.dropdown-wrapper.desktop .dropdown-arrow {
  color: var(--darkBlue);
}
.dropdown-wrapper.mobile .dropdown-arrow {
  color: var(--white);
}

.dropdown-arrow svg {
  transform: rotate(-90deg);
}

.dropdown-menu {
  position: absolute;
  border-radius: var(--brad);
  top: 100%;
  left: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  min-width: 160px;
  z-index: 100;
}
.dropdown-wrapper.desktop .dropdown-menu {
  background-color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-wrapper.mobile .dropdown-menu {
  background-color: var(--blue);
  position: relative;
}

.dropdown-wrapper.desktop:hover .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
.dropdown-wrapper.mobile .dropdown-menu.open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: block;
  padding: 12px 16px;
  color: var(--blue);
  text-decoration: none;
  text-wrap: nowrap;
}
.dropdown-menu a:hover {
  background-color: var(--gray2);
}

/*  */
.no-scroll {
  overflow: hidden !important;
}
rect {
  transition: all 0.2s ease-in-out;
}
.header__burger {
  background-color: inherit;
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__burger-menu {
  background-color: inherit;
}
.burger-active rect:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: 3px 9.5px;
  fill: var(--red);
}
.burger-active rect:nth-of-type(2) {
  opacity: 0;
}
.burger-active rect:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: 3.5px 17.5px;
  fill: var(--red);
}

.mobile__menu {
  /* overflow-y: scroll; */
  position: absolute;
  top: 108px;
  left: -150%;
  opacity: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 24px 15px 0px 15px;
  /* background-color: var(--dark3); */
  /* background-image: url('../img/bgMain.webp'); */
  backdrop-filter: blur(20px);
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.mobile__menu_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
  border-radius: var(--radius);
}
.mobile__menu a {
  max-width: 512px;
}
.mobile__menu_location {
  padding: 6px 12px;
  background-color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav--open {
  top: 108px;
  left: 0px;
  opacity: 1;
  z-index: 999;
  transition: all 0.4s ease-in-out;
  /* background-color: rgb(63, 63, 63, 0.7); */
  background-color: var(--blue);
}

.header__nav-list a {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-weight: 500;
  font-size: 18px;
  line-height: 32.4px;
  height: 32px;
  color: var(--yellow1);
}

.mobile__menu_links a {
  color: var(--white);
}
.bottom__header_links a {
  color: var(--darkBlue);
}
.mobile-nav__list a {
  /* color: black; */
  color: var(--yellow1);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header__nav,
.header__button {
  display: none;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  height: 60px;
  color: #b1b1b1;
  border-radius: 50px;
  height: 60px;
  align-items: center;
  justify-content: center;
}
.header__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.mobile-nav__list {
  gap: 40px;
}
.top__header_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top__header_item p {
  font-weight: 500;
  /* display: flex;
  align-items: center; */
}

.top__header_item:nth-child(2) p {
  text-decoration: underline !important;
}

.top__header_right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bottom__header_items {
  justify-content: space-between;
}
.bottom__header_items,
.bottom__header_links,
.bottom__header_right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.bottom__header_items p {
  font-weight: 700;
  color: var(--darkBlue);
  font-size: 20px;
}
@media (min-width: 768px) {
  .mobile-nav__list {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 20px;
  }
  .header__btns button:first-child {
    min-width: 84px;
    height: 36px;
  }
  .header__btns button:first-child p {
    display: inline-block;
  }
}
@media (min-width: 600px) {
  .mobile__menu_links {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
  .dropdown-wrapper.mobile .dropdown-menu {
    background-color: var(--blue);
    position: absolute;
  }
}
@media (min-width: 800px) {
  .mobile__menu {
    /* display: flex;
    gap: 20px; */
    flex-direction: row;
    gap: 20px;
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1300px) {
  .top__header_phone,
  .header__burger,
  .top__header_mobile {
    display: none !important;
  }
  .top__header_content {
    font-size: 16px;
  }
}
@media (max-width: 1300px) {
  /*  */
  .top__header_desktop,
  .bottom__header_items {
    display: flex !important;
  }
  .top__header_desktop,
  .bottom__header_items {
    display: none !important;
  }
  .top__header_mobile {
    display: flex !important;
  }
  .top__header p {
    font-size: 11px !important;
  }
}
