header {
  position: fixed;
  top: 0;
  left: 0;
  height: 96px;
  width: 100%;
  padding: 22px 0;
  background-color: #fff;
  box-shadow: 0px 6px 20px 0px rgba(19, 16, 50, 0.08);
  z-index: 9999;
}
header #burger {
  display: none;
}
header .menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .menu-container .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
}
header .menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}
header .menu-container ul li {
  position: relative;
  padding: 10px 0;
}
header .menu-container ul li:hover a {
  color: #614efa;
}
header .menu-container ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
header .menu-container ul li a {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
header .menu-container ul li ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 45px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 8px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 50, 0.08);
}
header .menu-container ul li ul::before {
  content: url("../svg/sub_menu_arrow.svg");
  width: 20px;
  height: 20px;
  border-radius: 2px;
  position: absolute;
  top: -15px;
  right: 50%;
  display: inline-block;
  z-index: 99;
  filter: drop-shadow(0px 0px 20px 0px rgba(19, 16, 50, 0.08));
}
header .menu-container ul li ul li {
  padding: 0;
}
header .menu-container ul li ul li a {
  white-space: nowrap;
  color: #131032 !important;
  padding: 8px;
  border-radius: 6px;
  display: block;
}
header .menu-container ul li ul li a:hover {
  background-color: #f4f4f5;
}
header .header-actions-wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header .header-actions-wrapper .search_opener a {
  display: flex;
  align-items: center;
}
header .input-outer {
  position: fixed;
  top: 22px;
  right: 0;
  top: -120px;
  width: 0;
  opacity: 0;
  visibility: hidden;
}
header .input-outer.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
  right: 0;
  top: 22px;
}
header .input-outer.active .search-input-container {
  width: 100%;
  transition: all 0.4s ease-out;
  opacity: 1;
}
header .input-outer .search-input-container {
  height: 52px;
  border: 1px solid #c8c7d0;
  border-radius: 6px;
  padding: 12px 24px 12px 56px;
  background: url("../svg/search.svg") no-repeat left 24px center;
  background-size: 24px;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  transition: all 0.4s ease;
  position: relative;
}
header .input-outer .search-input-container .search-close {
  display: flex;
}
header .input-outer .search-input-container .loader {
  width: 22px;
  height: 22px;
  border: 2px solid #f9f9f9;
  border-bottom-color: #614efa;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  right: 24px;
  background-color: #fff;
  display: none;
}
header .input-outer .search-input-container .loader.show {
  display: inline-block;
}
header .input-outer .search-input-container input {
  border: none;
  outline: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  flex: 1;
}
header .input-outer .search-input-container input::-moz-placeholder {
  color: #c8c7d0;
}
header .input-outer .search-input-container input::placeholder {
  color: #c8c7d0;
}
header #datafetch {
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-top: -10px;
  padding: 24px;
  border: 1px solid #c8c7d0;
  border-top: 0;
  display: none;
  position: relative;
}
header #datafetch .btn {
  max-width: 220px;
}
header #datafetch.show {
  display: block !important;
}
header #datafetch:empty {
  display: none;
}
header #datafetch .post a {
  display: block;
}
header #datafetch .post a:hover {
  text-decoration: underline;
}

#mob_menu_wrapper {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 120%;
  transition: all 0.3s ease;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1200px) {
  #blog_header_cta {
    display: none;
  }
  .input-outer {
    padding: 0 20px;
  }
  #datafetch {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 1024px) {
  #mob_menu_wrapper {
    display: flex;
  }
  #mob_menu_wrapper .mob_menu_container {
    width: 100%;
    flex: 1;
    position: relative;
    z-index: 998;
    overflow-y: scroll;
    padding-bottom: 40px;
  }
  #mob_menu_wrapper.open {
    left: 0;
    top: 76px;
    height: calc(100vh - 76px);
    width: 100%;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }
  #mob_menu_wrapper ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px 0 20px;
    width: 100%;
  }
  #mob_menu_wrapper ul > li {
    border-bottom: 1px solid #e7e7ea;
    padding: 24px 0;
  }
  #mob_menu_wrapper ul > li.menu-item-has-children {
    position: relative;
  }
  #mob_menu_wrapper ul > li.menu-item-has-children .sub_menu_opener {
    transform: rotate(90deg);
    width: 24px;
    height: 24px;
    margin-left: auto;
    background-image: url("../svg/arrow_right.svg");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 24px;
    top: 28px;
  }
  #mob_menu_wrapper ul > li.menu-item-has-children .sub_menu_opener.open {
    transform: rotate(270deg);
  }
  #mob_menu_wrapper ul > li ul {
    height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    max-height: unset;
    margin-top: 8px;
    transition: max-height 0.3s ease;
  }
  #mob_menu_wrapper ul > li ul li {
    border-bottom: unset;
    padding: 8px 0;
  }
  #mob_menu_wrapper ul > li ul li a {
    color: #626076;
    font-size: 15px;
    width: 95%;
  }
  #mob_menu_wrapper ul > li ul.show {
    width: 100%;
    height: -moz-min-content;
    height: min-content;
    max-height: 1000px;
    background-color: #fff;
    padding: 0 16px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  #mob_menu_wrapper ul > li a {
    display: inline-block;
    text-decoration: underline;
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
  }
  #mob_menu_wrapper ul > li:last-child {
    border-bottom: 0;
  }
  header {
    height: 76px;
    padding: 18px 0;
  }
  header .input-outer.active {
    top: 15px;
  }
  header .input-outer.active .search-input-container {
    height: 46px;
    padding-left: 32px;
    background-position: left 7px center;
    background-size: 20px;
  }
  header .input-outer.active .search-input-container input {
    font-size: 16px;
  }
  header .input-outer.active .search-input-container input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
  }
  header .input-outer.active .search-input-container input::placeholder {
    font-size: 16px;
    font-weight: 400;
  }
  header .search_opener a img {
    width: 32px;
    height: 32px;
  }
  header .nav_menu_container {
    display: none;
  }
  header .header-actions-wrapper {
    gap: 16px;
  }
  header .header-actions-wrapper #burger {
    display: flex;
    width: 32px;
    height: 31px;
    padding: 6px 3px;
    justify-content: space-between;
    flex-direction: column;
    gap: 6px;
  }
  header .header-actions-wrapper #burger.open span:nth-child(1) {
    transform: rotateZ(-45deg) translateX(-13px) translateY(0);
  }
  header .header-actions-wrapper #burger.open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transform: rotate(90deg);
  }
  header .header-actions-wrapper #burger.open span:nth-child(3) {
    transform: rotateZ(45deg) translateX(-11px) translateY(1px);
  }
  header .header-actions-wrapper #burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    border-radius: 2px;
    background-color: #626076;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  #datafetch .btn {
    width: 100%;
    max-width: unset !important;
  }
}