.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 180px;
  box-shadow: 0 0 1px 1px rgb(224, 224, 224);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.site-header .header__mobile-menu-button {
  display: none;
  flex-direction: column;
}

.site-header .header__mobile-menu-button span {
  display: block;
  height: 3px;
  width: 28px;
  background: #000;
  margin-top: 5px;
}

.site-header .header__nav {
  width: inherit;
  max-width: 1366px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .header__nav > ul {
  display: flex;
}

.site-header .header__nav > ul li {
  padding: 8px 12px;
  position: relative;
}

.site-header .header__nav > ul > li + li {
  margin-right: 60px;
}

.site-header .header__nav > ul > li::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  height: 77px;
  width: 0;
  border-bottom: 3px solid var(--primary-color);
  transition: all 200ms ease-in-out;
}

.site-header .header__nav > ul > li:hover::before {
  width: 100%;
}

.site-header .header__nav > ul > li a div {
  display: flex;
}

.site-header .header__nav > ul > li a i {
  font-size: 0.9rem;
  transition: all 150ms linear;
}

.site-header .header__nav > ul > li a div div {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.site-header .header__nav > ul > li:hover i {
  transform: rotate(180deg);
  margin-bottom: 8px;
}

.site-header .header__nav > ul > li .site-header__sub-menu {
  position: absolute;
  width: 250px;
  height: 300px;
  background: #fff;
  border-radius: 8px;
  top: 50px;
  border: 1px solid #ccc;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px 1px #f1f1f1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-in-out;
}

.site-header .header__nav .site-header__sub-menu ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header .header__nav .site-header__sub-menu ul li {
  flex: 1;
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 200ms ease-out, scale 180ms ease-out;
  background: #fff;
}

.site-header .header__nav .site-header__sub-menu ul li:hover + li {
  background: unset !important;
}

.site-header .header__nav .site-header__sub-menu ul li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.site-header .header__nav .site-header__sub-menu ul li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.site-header .header__nav .site-header__sub-menu ul li:hover {
  box-shadow: 0 0 30px 1px var(--primary-light-color);
  scale: 1.05;
}

.site-header .header__nav > ul > li:hover .site-header__sub-menu {
  opacity: 1;
  visibility: visible;
}

.site-header .header__nav .header__signin-link {
  padding: 7px 17px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 6px;
  transition: all 0.4s;
  border: 1px solid var(--primary-color);
}

.site-header .header__nav .header__signin-link:hover {
  color: var(--primary-color);
  background: #fff;
}

.header__nav .header__signin-link + a {
  margin: 0 25px;
  transition: color 300ms ease-in-out;
}

.header__nav .header__signin-link + a:hover {
  color: var(--primary-color);
}

.mobile-menu {
  position: fixed;
  background: #fff;
  width: 380px;
  max-width: 100vw;
  height: 100dvh;
  top: 0;
  right: -380px;
  box-shadow: 0 0 4px 1px #ebebeb;
  z-index: 999999999;
  transition: right 0.5s ease-in-out;
  padding-top: 95px;
}

.mobile-menu > ul > li {
  display: block;
  text-align: center;
  color: #000;
  font-size: 1.1rem;
  margin-top: 25px;
  cursor: pointer;
}

.mobile-menu > ul > li > div > i {
  font-size: 0.9rem;
  margin: 12px;
}

.mobile-menu > ul > li > div.dropmenu ul {
  height: 190px;
  background: #f7f7f7;
  padding: 15px;
  overflow: hidden;
  transition: all 0.4s linear;
}

.mobile-menu > ul > li > div.dropmenu[data-dropmenu="close"] ul {
  padding: 0;
  height: 0;
}

.mobile-menu > ul > li > div.dropmenu ul li {
  margin-top: 20px;
}

.mobile-menu[data-is-open="true"] {
  right: 0;
}

.mobile-menu::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.mobile-menu[data-is-open="true"]::after {
  opacity: 1;
  visibility: visible;
  width: calc(100vw - 380px);
  right: 380px;
}

.mobile-menu .mobile-menu__close-button {
  position: absolute;
  top: 25px;
  left: 40px;
  cursor: pointer;
  color: black;
  font-size: 2rem;
}

.page-content {
  width: 100%;
  min-height: 100dvh;
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 80px;
  background: #fff;
  position: relative;
}

.profile-header {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 38px;
    display: flex;
    font-size: 1.1rem;
    font-weight: bold;
    font-style: normal;
}

.profile-header i {
    font-size: 1.2rem;
    padding-top: 3px;
}

.profile-header span {
    padding: 3px 8px;
}

.site-alert {
    width: 100%;
    padding: 20px 35px;
    z-index: 99999999999;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block;
}

.site-alert.danger {
    background: #ffc7c7;
    color: red;
}

.site-alert.primary {
    background: #c5ffc5;
    color: green;
}

@media (max-width: 1450px) {
  .site-header {
    padding: 18px 25px;
  }
}

@media (max-width: 1140px) {
  .site-header .header__mobile-menu-button {
    display: flex;
  }

  .site-header ul {
    display: none !important;
  }
}
