.header {
  width: 100%;
  background-color: #ced0d9;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}

@media (max-width: 834px) {
  .header {
    padding: 11px 27px;
    position: fixed;
  }
}

.header__content {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 60px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}

@media (max-width: 834px) {
  .header__content {
    width: 100%;
    padding: 11px 0 0 0;
  }
}

.bl__logo {
  align-items: center;
  display: flex;
  column-gap: 18px;
}

.tq-logo {
  width: 50px;
  height: 50px;
}

@media (max-width: 834px) {
  .tq-logo {
    width: 36px;
    height: 35px;
  }
}

.image-contain {
  object-fit: contain;
}

@media screen and (min-width:800px) {
  .image-contain:nth-child(2) {
    width: 40px;
    height: 40px;
  }

  #logo-ibuflash {
    height: 67.5px;
  }
}

.ibuflash-logo {
  width: 120px;
  height: 87px;
}

@media (max-width: 834px) {
  .ibuflash-logo {
    width: 74px;
    height: 50px;
  }
}

.header__nav {
  width: 80%;
}

@media (max-width: 834px) {
  .header__nav {
    width: auto;
  }
}

.header__nav .hamburguer-menu {
  display: none;
}

@media (max-width: 834px) {
  .header__nav .hamburguer-menu {
    position: absolute;
    visibility: hidden;
    top: -9999px;
  }

  .header__nav .hamburguer-menu:checked~ul {
    display: block;
    padding: 30px;
    position: absolute;
    right: 0;
    top: 10vh;
    width: 49%;
  }
}

.burger {
  position: relative;
  width: 35px;
  height: 25px;
  background: transparent;
  cursor: pointer;
  display: none;
}

@media (max-width: 834px) {
  .burger {
    width: 39px;
    display: block;
  }
}

.burger input {
  opacity: 0;
}

.burger span {
  position: absolute;
  display: block;
  height: 4px;
  width: 100%;
  background: #622562;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

.header__nav__list {
  display: flex;

}

@media (max-width: 834px) {
  .header__nav__list {
    display: block;
    padding: 30px;
    position: absolute;
    left: 0;
    top: 72px;
    width: 100%;
    height: 100vh;
    background: #ced0d9;
    transition: all 0.4s ease;
    transform: translateX(-100%);
    opacity: 0;
  }

  .header__nav__list.active {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__nav__item {
  font-size: 1.188em;
  line-height: 2.1em;
  flex-grow: 1;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  overflow: visible;
}

.header__nav__item.selected>a {
  color: #7c3577;
}

.header__nav__dropdown a.active {
  color: #7c3577;
}

@media (max-width: 834px) {
  .header__nav__item {
    text-align: left;
  }
}

.header__nav__item:hover {
  overflow: visible;
  color: #622562;
}

.header__nav__item:hover::after {
  transition: all 0.4s linear;
  background: #622562;
  background: radial-gradient(circle, #622562 0%, rgba(98, 37, 98, 0.9752494748) 35%, rgba(98, 37, 98, 0.3898153011) 100%);
}

.header__nav__item:hover>a {
  color: currentColor;
}

@media (min-width: 834px) {
  .header__nav__item:hover .header__nav__dropdown {
    opacity: 1;
    transition: all 0.4s ease;
  }
}

.header__nav__item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: 0;
  background: #000;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 834px) {
  .header__nav__item:not(:last-of-type)::before {
    content: unset;
  }
}

.header__nav__item::after {
  content: "";
  width: 50%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100%;
  opacity: 0.8;
  margin: 0 auto;
  transition: all 0.4s linear;
}

@media (max-width: 834px) {
  .header__nav__item::after {
    content: unset;
  }
}

.header__nav__item a {
  color: #5b5b5f;
  text-decoration: none;
  font-family: "FuturaStd-Medium";
  font-size: 0.9vw;
}

@media (max-width: 1280px) {
  .header__nav__item a {
    font-size: 1vw;
  }
}

@media (max-width: 834px) {
  .header__nav__item a {
    font-size: 16px;
  }
}

.header__nav__item .btn_dropdown {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  display: block;
}

@media (min-width: 834px) {
  .header__nav__item .btn_dropdown {
    display: none;

  }

}

.btn_dropdown {
  border: unset;
  outline: unset;
  background-color: transparent;
  color: #5b5b5f;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.btn_dropdown.active {
  transform: rotate(180deg);
}

.active {
  color: #7c3577 !important;
}

.active-sublink {
  color: #7c3577 !important;
}

.header__nav__dropdown {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(100%) !important;
  opacity: 0;
}

@media (max-width: 834px) {
  .header__nav__dropdown {
    position: relative;
    transform: unset !important;
    max-height: 0;
    transition: all 0.4s ease;

  }

  .header__nav__dropdown.active {
    max-height: 300px;
    transition: all 0.4s ease;
    padding: 10px 0 20px 20px;
    opacity: 1;
  }
}

.header__nav__dropdown .sub-item {
  line-height: 22px;
}

.header__nav__dropdown a {
  font-size: 0.7vw !important;
}

@media (max-width: 834px) {
  .header__nav__dropdown a {
    font-size: 16px !important;
  }
}

.header__nav__dropdown a:hover {
  color: #622562;
}