.top__header {
  position: fixed;
  height: 60px;
  z-index: 999;
  background: var(--main-white-color);
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all linear 0.3s;
  border-bottom: 1px solid #e2e2e2;
}

.top__header.title_costomi {
  height: 60px;
  width: 100%;
  z-index: 10;
  position: absolute;
  top: 60px;
  padding: 0px 70px;
  border-bottom: 1px solid #e2e2e2;
}

.top__header .header-wrapper {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 70px;
}

.top__header .header-wrapper .costomi-title {
  font-weight: bold;
  font-size: 18px;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid var(--primary-color);
}

.top__header img {
  width: 100%;
  height: auto;
  background-color: var(--while-color);
}

.top__header a {
  text-decoration: none;
}

.top__header.active {
  border-bottom: 1px solid var(--light-grey-color);
  transition: all linear 0.3s;
}

.top__header .container__wrapper {
  height: calc(100% + 1px);
  background: transparent;
  position: relative;
  z-index: 1000;
  transition: all linear 0.3s;
  background-color: transparent;
}

.top__header .container__layout {
  padding: 6px 40px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  max-width: 1220px;
}

.top__header .top__header--left {
  display: flex;
  gap: 48px;
  align-items: center;
  height: 100%;
}

.top__header .top__header--left .header__left--logo img {
  height: 20px;
  width: auto;
  object-fit: cover;
  cursor: pointer;
}

.top__header .top__header--left .header__left--menu {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  color: var(--dark-black-color);
}

.top__header .top__header--left .header__left--menu .header__left--item {
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 20px;
  transition: all linear 0.3s;
}

.top__header .top__header--left .header__left--menu .header__left--item span {
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
  color: var(--dark-black-color);
}

.top__header .top__header--left .header__left--menu .header__left--item:hover {
  background-color: #f2f2f2;
  transition: all linear 0.3s;
}

.top__header .top__header--left .header__left--menu .header__left--item.active {
  background-color: var(--soft-grey-color);
  transition: all linear 0.3s;
}

.top__header .top__header--left .header__left--menu .header__left--item:active {
  background-color: var(--soft-grey-color);
  transition: all linear 0.3s;
}

.top__header .top__header--right {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 100%;
  position: relative;
}

.top__header .header__right--language {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 100%;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
}

.top__header .header__moblie--menu-list .header__right--language {
  margin-top: 20px;
}

.top__header .top__header--right .common__btn {
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  min-width: 93px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 20px;
}

.top__header .header__right--language img {
  height: 20px;
  width: 20px;
  object-fit: cover;
}

.top__header .header__right--language .active_icon {
  display: none;
}

.top__header .header__right--language span {
  line-height: 22px;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 16px;
}

.top__header .header__moblie--menu-list .header__right--language span {
  color: var(--dark-black-color);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}

.top__header .header__right--language:hover img {
  filter: invert(49%) sepia(53%) saturate(6627%) hue-rotate(216deg) brightness(101%) contrast(101%);
}

.top__header .header__right--language:hover span {
  /* color: var(--primary-color); */
}

.top__header .header__right--language:hover:active span,
.top__header .header__right--language:active span {
  color: var(--dark-blue-color);
}

.top__header .header__right--language:hover:active img,
.top__header .header__right--language:active img {
  filter: invert(109%) sepia(82%) saturate(7468%) hue-rotate(215deg) brightness(90%) contrast(101%);
}

/* CUSTOM HEADER FOR MAIN PAGE */
.top__header.custom {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all linear 0.3s, border-bottom linear 0s;
}

.top__header.custom .top__header--left .header__left--logo img {
  filter: invert(100%) sepia(100%) saturate(0) hue-rotate(104deg) brightness(102%) contrast(100%);
}

.top__header.custom .top__header--left .header__left--menu .header__left--item span {
  color: var(--main-white-color);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.top__header.custom .header__right--language img {
  filter: invert(1) sepia(1) saturate(0) hue-rotate(104deg) brightness(2) contrast(1);
  width: 16px;
  height: 16px;
}

.top__header.custom .header__right--language span {
  color: var(--main-white-color);
  font-size: 16px;
  line-height: 22px;
}

.top__header.custom .top__header--right .common__btn {
  border-color: var(--main-white-color);
  color: var(--main-white-color);
}

.top__header.custom:hover {
  background: var(--main-white-color);
  border-bottom: 1px solid var(--main-white-color);
  transition: all linear 0.3s, border-bottom linear 0.3s 0.2s;
}

.top__header.custom.active {
  background: var(--main-white-color);
  border-bottom: 1px solid #e2e2e2;
  transition: all linear 0.3s, border-bottom linear 0.3s 0.2s;
}

.top__header.custom.scrolled {
  background: var(--main-white-color);
  /* Same as hover/active */
  border-bottom: 1px solid #e2e2e2;
  /* Same as hover/active */
  transition: all linear 0.3s, border-bottom linear 0.3s 0.2s;
  /* Same transition */
}

.top__header.custom:hover .top__header--left .header__left--logo img,
.top__header.custom.active .top__header--left .header__left--logo img,
.top__header.custom.scrolled .top__header--left .header__left--logo img {
  filter: unset;
}

.top__header.custom:hover .top__header--left .header__left--menu .header__left--item span,
.top__header.custom.active .top__header--left .header__left--menu .header__left--item span,
.top__header.custom.scrolled .top__header--left .header__left--menu .header__left--item span {
  color: var(--dark-black-color);
}

.top__header.custom:hover .header__right--language img,
.top__header.custom.active .header__right--language img,
.top__header.custom.scrolled .header__right--language img {
  filter: unset;
}

.top__header.custom:hover .header__right--language span,
.top__header.custom.active .header__right--language span,
.top__header.custom.scrolled .header__right--language span {
  color: #8a8a8a;
}

.top__header.custom:hover .top__header--right .common__btn,
.top__header.custom.active .top__header--right .common__btn,
.top__header.custom.scrolled .top__header--right .common__btn {
  border-color: var(--primary-color);
  color: var(--primary-color);

  &:hover {
    border-color: var(--white-color);
    color: var(--white-color);
  }
}

.top__header.custom .header__moblie--menu-container .header__right--language span {
  color: var(--main-white-color);
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-black-color);
  font-weight: 400;
}

.top__header.custom:hover .header__moblie--menu-list .header__right--language img {
  filter: grayscale(100%) brightness(0) contrast(100%);
}

.top__header .header__moblie--menu-list .header__right--language .default_icon {
  filter: grayscale(100%) brightness(0) contrast(100%);
  width: 20px;
  height: 20px;
}

.top__header.custom .header__right--language:hover img {
  filter: invert(49%) sepia(53%) saturate(6627%) hue-rotate(216deg) brightness(101%) contrast(101%);
}

.top__header.custom .header__right--language:hover span {
  color: var(--primary-color);
}

/*END CUSTOM HEADER FOR MAIN PAGE */

.footer__right--popup__language,
.header__right--popup__language {
  position: absolute;
  right: calc(100% - 74px);
  top: 12px;
  background-color: var(--white-color);
  display: none;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  padding: 8px;
  box-shadow: 0px 6px 10px rgb(0 0 0 / 15%);
  border-radius: 8px;
  width: 264px;
  box-sizing: border-box;
  border: 1px solid var(--light-grey-color);
}

.header__right--popup__language .language__name {
  width: 120px;
  border-radius: 8px;
  color: #8a8a8a;
  display: inline-block;
  cursor: pointer;
  padding: 4px 12px;
  transition: all 0.2s linear;
  font-size: 16px;
  line-height: 21px;
}

.header__right--popup__language .language__name:hover {
  background-color: var(--primary-color);
  color: var(--white-color)
}

.header__item--sub-menu {
  position: fixed;
  top: 60px;
  left: 0;
  background-color: var(--white-color);
  width: 100%;
  transition: all linear 0.2s;
  z-index: 99;
  padding: 0;
  height: 0;
  overflow: hidden;
}

.header__item--sub-menu.active {
  transition: all linear 0.2s;
  height: 712px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-height: 900px) {
  .header__item--sub-menu.active {
    height: 610px;
  }
}

.header__item--sub-menu.resources.active {
  height: 212px;
}

.header__item--sub-menu .sub__menu--title-item span {
  word-break: break-word;
}

.header__item--sub-menu .sub__menu--title-item span,
.header__item--sub-menu .sub__menu--title-item p,
.sub__menu--content-wrapper .sub__menu--content-title h5,
.sub__menu--content-wrapper .sub__menu--content-item,
.header__item--sub-menu.resources .sub__menu--title p,
.header__item--sub-menu.resources .sub__menu--content .item {
  opacity: 0;
  visibility: hidden;
  transform: translate(-30px, 0px);
  display: block;
  transition: all linear 0.3s, color ease 0.3s;
}

.header__item--sub-menu.active .sub__menu--title-item span,
.header__item--sub-menu.active .sub__menu--title-item p,
.sub__menu--content-wrapper.active .sub__menu--content-title h5,
.sub__menu--content-wrapper.active .sub__menu--content-item,
.header__item--sub-menu.active.resources.active .sub__menu--title>p {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition-delay: 0s;
}

.sub__menu--content-wrapper.active .sub__menu--content-item .sub__menu--content-img {
  display: inline-flex;
}

.header__moblie--menu.product .header__moblie--title-item span {
  font-size: 14px;
  line-height: 20px;
  color: #738087;
}

.header__moblie--menu.product .header__moblie--title-item span,
.header__moblie--menu.product .header__moblie--title-item p,
.header__moblie--menu-container .header__moblie--menu-content h5,
.header__moblie--menu-container .header__moblie--menu-content a {
  display: block;
  transition: none;
}

.header__moblie--menu.product.active .header__moblie--title-item span,
.header__moblie--menu.product.active .header__moblie--title-item p,
.header__moblie--menu-container .header__moblie--menu-content.active h5,
.header__moblie--menu-container .header__moblie--menu-content.active a,
.header__item--sub-menu.active.resources .sub__menu--content .item {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition: all linear 0.3s;
}

.header__moblie--menu.product.active .header__moblie--title-item .header__moblie--menu-content p {
  color: var(--dark-black-color);
}

.header__moblie--menu.product.active .header__moblie--title-item p {
  transition-delay: 0.05s;
}

.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(1),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(1) {
  transition-delay: 0.05s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(1) p,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(2),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(2),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(2) {
  transition-delay: 0.05s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(2) span,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(3),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(3),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(3) {
  transition-delay: 0.1s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(2) p,
.header__item--sub-menu.active .sub__menu--title-item:nth-child(3) span,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(4),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(4),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(4) {
  transition-delay: 0.15s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(3) p,
.header__item--sub-menu.active .sub__menu--title-item:nth-child(4) span,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(5),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(5),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(5) {
  transition-delay: 0.2s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(4) p,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(6),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(6),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(6) {
  transition-delay: 0.25s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(4) p,
.header__item--sub-menu.active .sub__menu--title-item:nth-child(4) span,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(7),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(7),
.header__item--sub-menu.active.resources .sub__menu--content .item:nth-child(7) {
  transition-delay: 0.3s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(5) p,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(8),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(8) {
  transition-delay: 0.35s, 0s;
}

.header__item--sub-menu.active .sub__menu--title-item:nth-child(6) p,
.sub__menu--content-wrapper.active .sub__menu--content-item:nth-child(9),
.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(9) {
  transition-delay: 0.4s, 0s;
}

.header__moblie--menu-container .header__moblie--menu-content.active a:nth-child(7) {
  transition-delay: 0.3s;
}

.header__item--sub-menu .container__layout {
  display: flex;
  flex-direction: row;
  padding: 40px;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.header__item--sub-menu .container__layout .close {
  padding: 7px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 40px;
  transition: background-color 0.3s linear;
}

@media screen and (max-width: 997px) {
  .header__item--sub-menu .container__layout .close {
    right: 20px;
  }
}

.header__item--sub-menu .container__layout .close:hover {
  background-color: #d9d9d9;
}

.header__item--sub-menu.resources .container__layout {
  align-items: stretch;
}

@media screen and (max-width: 997px) {
  .header__item--sub-menu .container__layout {
    padding: 40px 20px;
  }
}

.header__sub--menu--background {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all linear 0.3s;
  opacity: 0;
  visibility: hidden;
}

.header__sub--menu--background.active {
  backdrop-filter: blur(4px);
  transition: all linear 0.3s;
  opacity: 1;
  visibility: visible;
}

.header__item--sub-menu .sub__menu--title {
  height: 100%;
  width: 100%;
  max-width: 140px;
  border-right: 1px solid var(--light-grey-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.header__item--sub-menu.resources .sub__menu--title {
  height: unset;
  border-right: 2px solid var(--primary-color);
  align-items: start;
}

.header__item--sub-menu.resources .sub__menu--title>p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item {
  position: relative;
  cursor: pointer;
  transition: all linear 0.3s;
  width: 100%;
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  line-height: normal;
  color: #738087;
  word-break: keep-all;
}

.header__item--sub-menu.active .sub__menu--title .sub__menu--title-item p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--dark-black-color);
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item:hover p {
  color: var(--primary-color);
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  transition: all linear 0.3s;
  opacity: 0;
  visibility: hidden;
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item.active::before {
  transition: all linear 0.3s;
  opacity: 1;
  visibility: visible;
}

.header__item--sub-menu .sub__menu--title .sub__menu--title-item.active p {
  color: var(--primary-color);
}

.header__item--sub-menu.partners .sub__menu--title .sub__menu--title-item.active p {
  line-height: 30px;
}

.header__item--sub-menu .sub__menu--content {
  display: flex;
  gap: 48px;
  height: 100%;
  max-height: 100%;
  width: 100%;
  position: relative;
}

.header__item--sub-menu.resources .sub__menu--content {
  height: unset;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.header__item--sub-menu .sub__menu--content .item {
  border-radius: 5px;
  padding: 15px;
  display: flex !important;
  align-items: center;
  gap: 20px;
  background-color: #f7f9fb;
  width: calc(25% - 12px * 3 / 4);
}

/* @media screen and (max-width: 1024px) {
  .header__item--sub-menu .sub__menu--content .item {
    width: calc(33.33% - 12px * 2 / 3);
  }
} */

.header__item--sub-menu .sub__menu--content .item:hover {
  background-color: #eaeff3;
}

.header__item--sub-menu .sub__menu--content .item>img {
  height: 30px;
  width: unset;
  align-items: center;
}

.header__item--sub-menu .sub__menu--content .item>span {
  font-size: 14px;
  font-weight: 700;
}

.sub__menu--content-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub__menu--content-wrapper.exabyter {
  height: 100%;
}

.sub__menu--content-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.sub__menu--content-wrapper .sub__menu--content-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}

.sub__menu--content-wrapper .sub__menu--content-title h5 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.sub__menu--content-wrapper .sub__menu--content-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 10px;
  height: fit-content;
  max-height: 100%;
  overflow-y: auto;
}

.sub__menu--content-wrapper .sub__menu--content-list::-webkit-scrollbar-thumb {
  background-color: #b4b4b4;
  height: 122px;
  border-radius: 5px;
}

.sub__menu--content-wrapper .sub__menu--content-list::-webkit-scrollbar {
  width: 10px;
}

.ja .sub__menu--content-wrapper .sub__menu--content-list {
  align-items: stretch;
}

.sub__menu--content-wrapper .sub__menu--content-item {
  padding: 16px;
  width: 100%;
  /* min-height: 200px; */
  width: calc(33.33% - 8px);
  max-width: 318px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  background-color: #f7f9fb;
}

.sub__menu--content-wrapper.exabyter .sub__menu--content-item {
  gap: 12px;
}

.ja .sub__menu--content-wrapper.exacoola .sub__menu--content-item,
.ja .sub__menu--content-wrapper.exabyter .sub__menu--content-item {
  min-height: none;
  max-height: 231px;
  flex: 1;
  box-sizing: border-box;
  width: calc(33.33% - 8px);
  min-width: calc(33.33% - 8px);
  box-sizing: border-box;
}

.ja .sub__menu--content-wrapper.partners .sub__menu--content-item,
.sub__menu--content-wrapper.partners .sub__menu--content-item {
  width: calc(24%);
  max-width: calc(24%);
  min-width: calc(24%);
  border-radius: 8px;
  min-height: fit-content;
  flex: 1;
}

.sub__menu--content-wrapper .sub__menu--content-item.active,
.sub__menu--content-wrapper .sub__menu--content-item:hover {
  transition: all linear 0.3s;
  background-color: #eaeff3;
}

.sub__menu--content-wrapper .sub__menu--content-item img {
  width: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: cover;
}

/* .sub__menu--content-wrapper.exacoola .sub__menu--content-item:nth-child(6) img,
.sub__menu--content-wrapper.exacoola .sub__menu--content-item:nth-child(7) img,
.sub__menu--content-wrapper.exacoola .sub__menu--content-item:nth-child(8) img {
  height: 82px;
  width: 100%;
  max-width: 244px;
  margin-top: 0px;
  overflow: visible;
} */

.sub__menu--content-wrapper .sub__menu--content-item .sub__menu--content-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.sub__menu--content-wrapper .sub__menu--content-item .sub__menu--content-item-type {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary-color);
}

@media screen and (max-width: 1280px) {
  .sub__menu--content-wrapper .sub__menu--content-item .sub__menu--content-item-title {
    max-width: unset;
  }
}

.sub__menu--content-wrapper .sub__menu--content-item .sub__menu--content-item-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
  word-wrap: break-word;
}

.top__header--moblie-icon {
  display: none;
}

.header__moblie--menu {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: 100%;
  transition: all linear 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.header__moblie--menu.main {
  top: 60px;
}

.header__moblie--menu.active {
  right: 0;
  transition: all linear 0.3s;
}

.header__moblie--menu-container {
  background-color: var(--main-white-color);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px);
  align-items: self-start;
  justify-content: space-between;
}

.header__moblie--menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.header__mobile--menu-item {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
}

.header__moblie--menu-item__text {
  font-weight: 400;
  color: var(--dark-black-color);
  line-height: 24px;
  font-size: 18px;
  background: none;
}

.header__moblie--menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0px;
}

.header__moblie--menu-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  height: 60px;
  /* border-bottom: 1px solid #8a8a8a; */
  margin: 0 auto;
  background-color: var(--white-color);
}

.header__moblie--menu-logo .main__logo {
  height: 20px;
  width: auto;
  object-fit: cover;
}

.header__moblie--menu-title {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

.header__moblie--title-item {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}

.header__moblie--title-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--primary-color);
  transition: all linear 0.3s;
  opacity: 0;
  visibility: hidden;
}

/* .header__moblie--title-item.active::after {
  opacity: 1;
  visibility: visible;
  transition: all linear 0.3s;
} */

.header__moblie--title-item img {
  height: 10px;
  width: auto;
  object-fit: cover;
  /* filter: invert(81%) sepia(0%) saturate(0%) hue-rotate(149deg) brightness(94%)
    contrast(94%); */
  transition: all linear 0.3s;
}

.header__moblie--title-item.active img {
  filter: none;
  transition: all linear 0.3s;
}

.header__moblie--title-item span {
  font-size: 10px;
  line-height: 11px;
  color: #738087;
  transition: all linear 0.3s;
}

.header__moblie--title-item p {
  font-size: 18px;
  line-height: 22px;
  color: var(--dark-black-color);
  transition: all linear 0.3s;
}

.header__moblie--title-item.active p {
  color: var(--primary-color);
  transition: all linear 0.3s;
}

.header__moblie--menu.partner .sub__menu--content-item p {
  color: var(--dark-black-color);
}

.header__moblie--menu.product .header__moblie--menu-container {
  justify-content: flex-start;
  position: relative;
  overflow-y: auto;
}

.header__moblie--menu.product .header__moblie--menu-container::-webkit-scrollbar {
  display: none;
}

.header__moblie--menu-content {
  padding-top: 10px;
  flex-direction: column;
  gap: 10px;
  height: auto;
  width: 100%;
}

.header__moblie--menu-container .header__moblie--menu-content {
  display: flex;
}

.header__moblie--menu-container .header__moblie--menu-content.active {
  /* opacity: 1; */
  /* visibility: visible; */
  overflow: auto;
  /* max-height: ; */
  /* padding-bottom: 100px; */
}

/* .header__moblie--menu-content.active {
  display: flex;
} */

.header__moblie--menu-content h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.header__moblie--menu-container .header__moblie--menu-content a {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f7f9fb;
  border-radius: 8px;
  /* min-width: 290px; */
  width: 100%;
}

/* .header__moblie--menu-container .header__moblie--menu-content.active a {
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  background-color: #f7f9fb;
  transition: all linear 0.3s;
  border-radius: 8px;
} */

.header__moblie--menu-container .header__moblie--menu-content a .mobile__item--image {
  height: 70px;
  width: 100%;
}

.header__moblie--menu-container .header__moblie--menu-content a img {
  height: 100%;
  width: auto;
  /* object-fit: cover; */
}

.header__moblie--menu-container .header__moblie--menu-content.exacoola a img {
  height: 70px;
  /* object-fit: cover; */
}

.header__moblie--menu-container .header__moblie--menu-content a:hover {
  background-color: #eaeff3;
  transition: all linear 0.3s;
}

.header__moblie--menu-container .header__moblie--menu-content a p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  word-break: break-word;
}

.header__moblie--menu-container .header__moblie--menu-content a span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.header__moblie--menu-logo h5 {
  font-size: 20px;
  line-height: 30px;
  width: 100%;
  text-align: center;
  color: var(--dark-black-color);
}

.top__header .top__header--left .header__left--logo.hide,
.top__header .top__header--left .header__left--menu.hide,
.top__header .top__header--right.hide {
  display: none;
}

@media screen and (max-width: 997px) {
  .sub__menu--content-wrapper .sub__menu--content-item .sub__menu--content-item-text {
    display: none;
  }

  .header__moblie--menu {
    display: none;
  }
}

.header__moblie--menu {
  display: none;
}


@media screen and (max-width: 576px) {
  .top__header {
    border-bottom: none;
  }

  .header__item--sub-menu {
    display: none;
  }

  .top__header .container__layout {
    padding: 0 20px;
  }

  .top__header .top__header--left .header__left--menu {
    display: none;
  }

  .top__header .top__header--right {
    display: none;
  }

  .top__header--moblie-icon {
    cursor: pointer;
    display: block;
    position: relative;
    min-height: 15px;
    min-width: 15px;
  }

  .top__header--moblie-icon img {
    height: 15px;
    width: auto;
    object-fit: cover;
    width: 18px;
  }

  .header__moblie--menu-content a>span {
    display: none;
  }

  .header__moblie--menu.product.active .header__moblie--title-item .header__moblie--menu-content span {
    display: none;
  }

  .header__moblie--menu-container .header__moblie--menu-content.active a {
    flex-direction: column;
  }

  .header__moblie--menu-container .header__moblie--menu-content a {
    flex-direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --px: 2px;
}

.header__mobile--menu__button {
  display: none;
  width: 24px;
  height: 24px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--header-level);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

/* .header__moblie--back-btn {
  width: 13.52px;
} */

.header__moblie--back-btn img {
  width: 8px;
  height: 14px;
}

.header__mobile--menu__button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #8a8a8a;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header__mobile--menu__button span:nth-child(1) {
  top: calc(var(--px) + 0px);
}

.header__mobile--menu__button span:nth-child(2) {
  top: calc(var(--px) + 6px);
}

.header__mobile--menu__button span:nth-child(3) {
  top: calc(var(--px) + 12px);
}

.header__mobile--menu__button.open span:nth-child(1) {
  top: calc(var(--px) + 6px);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header__mobile--menu__button.open span:nth-child(2) {
  opacity: 0;
  left: 30px;
}

.header__mobile--menu__button.open span:nth-child(3) {
  top: calc(var(--px) + 6px);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header__moblie--menu.product .header__mobile--menu__button,
.header__moblie--menu.language .header__mobile--menu__button {
  visibility: hidden;
}

.header__moblie--menu.product.active .header__mobile--menu__button,
.header__moblie--menu.language.active .header__mobile--menu__button {
  visibility: visible;
}

.header__moblie--menu.language .header__moblie--menu-container .language-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.header__moblie--menu.language .header__moblie--menu-container .language-list .language__name {
  height: 37px;
  border-radius: 5px;
  padding: 6px 12px;
  line-height: 22px;
  font-size: 16px;
}

.header__moblie--menu.language .header__moblie--menu-container .language-list .language__name:active {
  background-color: var(--primary-color);
  color: var(--white-color);
  vertical-align: baseline;
  display: flex;
  align-items: center;
}

.header__moblie--menu-account {
  display: flex;
  flex-direction: column;
}

.header__moblie--account-link {
  padding: 10px 0px;
  height: 50px;
  box-sizing: border-box;
}

.header__moblie--account-link a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--dark-black-color);
}

.animation_scaleup {
  animation: scaleUpshow 0.5s linear;
}

@keyframes scaleUpshow {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.sub__menu--content-wrapper.exabyter .sub__menu--content-list>a>div {
  position: relative;
  width: calc(100% + 4px);
}

.sub__menu--content-wrapper.exabyter .sub__menu--content-item img {
  /* position: absolute; */
  /* top: -15px; */
  left: 0;
  height: unset;
  /* object-fit: cover; */
  /* object-position: 50% 50%; */
  max-width: 100%;
}

.sub__menu--content-wrapper.exacoola .sub__menu--content-item {
  /* min-width: 200px; */
}

.header__moblie--menu.resource .header__moblie--menu-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: unset;
}

.header__mobile--resource--item {
  display: flex;
  gap: 20px;
  padding: 16px;
  border-radius: 8px;
  background-color: #f7f9fb;
  align-items: center;
  width: 100%;
}

.header__mobile--resource--item .image_item--resource {
  width: 34.2px;
  height: auto;
}

.header__mobile--resource--item p {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: var(--dark-black-color);
}

@media (max-width: 799px) {
  .header__moblie--menu-content h5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__moblie--menu {
    display: block;
  }

  .header__item--sub-menu {
    display: none;
  }

  .header__sub--menu--background {
    display: none;
  }

  .top__header {
    border-bottom: none;
  }

  .top__header .container__layout {
    padding: 0 20px;
  }

  /* 
      .header__moblie--menu.main::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: 0;
        top: -1px;
        width: calc(100% - 40px);
        height: 1px;
        background-color: #8a8a8a;
      } */

  .top__header .top__header--left .header__left--menu {
    display: none;
  }

  .top__header .top__header--right {
    display: none;
  }

  .top__header--moblie-icon {
    cursor: pointer;
    display: block;
    position: relative;
    min-height: 15px;
    min-width: 15px;
  }

  .top__header--moblie-icon img {
    height: 15px;
    width: auto;
    object-fit: cover;
  }

  .header__mobile--menu__button {
    display: block;
    max-width: 18px;
    height: 15px;
  }
}