@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

.header {
  height: 82px;
  transition: height 0.3s;
  position: fixed;
  background: #2c2c2c;
  z-index: 4;
  /**
  ** Full height mobile
  **/
}

@media (max-width: 767px) {
  .header {}
}

.header__content,
.header__main-link,
.header__menu-container,
.header__ul {
  height: 100%;
}

.header__content {
  display: flex;
  align-items: center;
}

@media (max-width: 905px) {
  .header__content {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.header .menu-mobile {
  display: none;
  margin-left: auto;
}

@media (max-width: 905px) {
  .header .menu-mobile {
    display: block;
  }

  .header .menu-mobile .menu-mobile-toggle {
    width: 40px;
    height: 35px;
    cursor: pointer;
    display: block;
  }

  .header .menu-mobile .menu-mobile-toggle.on .one {
    background: white;
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
  }

  .header .menu-mobile .menu-mobile-toggle.on .two {
    background: white;
    opacity: 0;
  }

  .header .menu-mobile .menu-mobile-toggle.on .three {
    background: white;
    -moz-transform: rotate(-45deg) translate(8px, -10px);
    -ms-transform: rotate(-45deg) translate(8px, -10px);
    -webkit-transform: rotate(-45deg) translate(8px, -10px);
    transform: rotate(-45deg) translate(8px, -10px);
  }

  .header .menu-mobile .one,
  .header .menu-mobile .two,
  .header .menu-mobile .three {
    width: 100%;
    height: 5px;
    background: white;
    margin: 6px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .header .menu-mobile .menu-section.on {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
  }
}

.header.full-height {
  height: 100vh;
}

.header.full-height .header__content {
  max-height: 100%;
}

.header.full-height .header__menu-container {
  display: inline-block;
  width: 100%;
  max-height: 85%;
}

.header.full-height .header__ul {
  animation: fadeInFromNone 0.8s ease-out;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
}

.header.full-height .header__li {
  width: 100%;
  margin: 0.3em 0;
  padding: 0 0.8em;
}

.header.full-height .header__link {
  justify-content: flex-start;
  margin-left: 2.5em;
}

.header.full-height .header__li--highlighted {
  padding: 0 0.8em;
}

@media (max-width: 905px) {
  .header.full-height .header__li--highlighted {
    display: flex;
    align-items: center;
  }
}

.dc-landings .datacrush_header .header__logo-container {
  margin-left: 0px;
}

@media (max-width: 767px) {
  .dc-landings .datacrush_header .header__logo-container {
    justify-content: flex-end;
    padding-right: 30px;
    height: 50%;
  }

  .dc-landings .datacrush_header .header__logo-container img {
    width: 190px;
  }
}

.header__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 82px;
}

@media (max-width: 905px) {
  .header__logo-container {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 993px) {
  .header__logo-container {
    margin-left: 2em;
  }
}

.header__main-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  max-width: 200px;
  /* Position Fix */
  position: relative;
}

.header__navbar {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  width: 100%;
  column-gap: 80px;
}

@media (max-width: 1005px) {
  .header__navbar {
    column-gap: unset;
  }
}

.header__navbar-mobile {
  display: none;
  width: 100%;
  height: 100%;
}

.header__navbar-mobile.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInFromNone 0.3s forwards;
}

.header__navbar__btns {
  display: flex;
  align-items: center;
  column-gap: 24px;
  border-radius: 4px;
  text-decoration: none;
}

.header__navbar__btns-mobile {
  display: flex;
  align-items: center;
  row-gap: 15px;
  width: 100%;
  flex-direction: column;
  margin-top: 20px;
}

.header__navbar__right {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  padding: 15px;
}

.header__navbar__right-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
  width: 100%;
  flex-direction: column;
  margin-top: 40px;
}

.header__navbar__right__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  color: white;
  max-height: fit-content;
  cursor: pointer;
}

.header__navbar__right__btn p {
  margin: 0;
}

.header__navbar__right__btn img {
  width: 20px;
  height: 20px;
}

.languages__dropdown {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  background-color: white;
  top: 60px;
  right: 8px;
  z-index: 1000;
  padding: 5px;
  border-radius: 8px;
}

.languages__dropdown.visible {
  display: block;
}

.languages__dropdown.show {
  opacity: 1;
  transform: translateY(0);
}

.languages__dropdown__list {
  padding: 5px 10px;
  cursor: pointer;
  color: #333;
  font-size: 1rem;
  margin: 0;
  list-style: none;
  width: 100%;
}

.header__navbar__demobtn {
  padding: 3px 10px;
  cursor: pointer;
  color: white;
  background-color: #D02C2F;
  text-align: center;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  scale: 1;
  transition: scale 0.2s;
  transition-timing-function: ease-in-out;
  text-decoration: none;
}

.header__navbar__demobtn:hover {
  scale: 1.05;
  transition: scale 0.2s;
  transition-timing-function: ease-in-out;
  color: white;
}

@media (max-width: 905px) {
  .header__navbar {
    display: none;
  }
}

.header__link {
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: font-weight 0.3s;
  min-height: 40px;
  max-height: 40px;
  transition: scale 0.2s;
  transition-timing-function: ease-in-out;
}

.header__link:hover {
  color: lightgray;
  scale: 1.05;
  transition: scale 0.2s;
  transition-timing-function: ease-in-out;
}

.header__sub-ul {
  margin: 0;
  padding: 0;
}

@media (min-width: 820px) {
  .header__sub-ul {
    min-width: 300px;
    left: 8px;
    top: 82px;
    position: absolute;
    display: none;
  }
}

@media (max-width: 905px) {
  .header__sub-ul {
    margin-left: 2.5em;
  }
}

.header__sub-li {
  background: rgba(29, 29, 29, 0.8);
  list-style-type: none;
  transition: background 0.3s;
}

@media (max-width: 905px) {
  .header__sub-li {
    background: transparent;
  }
}

@media (min-width: 821px) {
  .header__sub-li:hover {
    background: #101010;
  }
}

.header__sub-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 1.5em 0;
}

@media (min-width: 820px) {
  .header__sub-link {
    padding: 1.5em;
  }
}

.header__popover {
  position: absolute;
  background: #0170ac;
  width: 124px;
  padding: 10px 17px;
  left: -13px;
  font-size: 0.8rem;
  text-align: center;
  bottom: -75px;
}

@media (max-width: 905px) {
  .header__popover {
    display: none;
  }
}

@media (min-width: 820px) {
  .header__popover:after {
    content: " ";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #0170ac;
    position: absolute;
    top: -12px;
    left: 46px;
  }
}

.header__popover-text {
  color: white;
  padding: 0;
  margin: 0;
  line-height: 1.5em;
}