.site-header {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #dee2e6;
  width: 100%;
  height: 150px;
  z-index: 999999999;
}

.site-header input[type="checkbox"] {
  display: none;
}

.site-header label {
  margin: 0;
}

.site-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 40%;

  background: linear-gradient(-45deg, var(--danger) 25%, #b41b25 75%, white 0%);
  border-bottom: 2px solid #e46773;
  /* border-radius: 0 0 18px 18px; */
}

.site-header-top .other-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 20%;
}

.site-header-top .other-logos a:first-child img {
  width: 70px;
}

.site-header .site-header-top .other-logos a:last-child img {
  width: 45px;
}

.site-header-tooltip {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header-tooltip__menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.site-header-tooltip__menu span {
  color: white;
  font-weight: bold;

  transition: 0.1s;
}

.site-header-tooltip__menu:hover span {
  transform: scale(1.05);
}

.site-header-tooltip__menu:hover .tooltip-list {
  display: block;
}

.site-header-tooltip__menu .tooltip-list {
  list-style: none;
  position: absolute;
  top: calc(100% - 0.5rem);
  right: 0;
  display: none;
  margin: 0;
  padding: 0.25rem 0;
  background: white;
  border-radius: 4px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1;

  transition: 0.3s;
}

.site-header-tooltip__menu .tooltip-item {
  padding: 0;
  white-space: nowrap;
}

.site-header-tooltip__menu .tooltip-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;

  padding: 0.25rem 1.5rem;
  color: #000;
  text-decoration: none;

  transition: 0.1s;
}

.site-header-tooltip__menu .tooltip-item a:hover {
  color: var(--danger);
  text-decoration: none;
  transform: scale(1.05);
}

.site-header-bottom {
  display: flex;
  padding: 0 2rem;
  height: 60%;

  background: white;
}

.site-header-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 15%;
}

.site-header-logo img {
  width: 150px;
}

.site-header-nav {
  display: flex;
  justify-content: center;
  width: 77.5%;
  align-items: center;

  background: white;
}

.site-header-nav .nav-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-left: 0;
}

.site-header-nav .nav-list .nav-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  height: 100%;
  padding: 0;
}

.site-header-nav .nav-list .nav-item.nav-dropdown:hover .dropdown-list,
.site-header-nav .nav-list .nav-item.nav-dropdown.open .dropdown-list {
  display: flex;
}

.site-header-nav .nav-list .nav-item.nav-dropdown.closed .dropdown-list {
  display: none;
}

.site-header-nav .nav-list .nav-item>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: bold;
  text-decoration: none;

  transition: 0.1s;
}

.site-header-nav .nav-list .nav-item:hover>a {
  color: var(--danger);
  transform: scale(1.05);
}

.site-header-nav .nav-list .nav-item.nav-dropdown>a::after {
  content: "";
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: 0.25rem;
  border-top: 0.3rem solid;
  border-right: 0.3rem solid transparent;
  border-bottom: 0;
  border-left: 0.3rem solid transparent;

  transition: border-top-color 0.1s, transform 0.3s;
}

.site-header-nav .nav-list .nav-item.nav-dropdown:not(.closed):hover>a::after,
.site-header-nav .nav-list .nav-item.nav-dropdown.open>a::after {
  border-top-color: var(--danger);

  transform: rotateX(180deg);
}

.site-header-nav .dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% - 0.5rem);
  right: 0;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0.25rem 0;
  background: white;
  border-top: 4px solid var(--danger);
  border-radius: 4px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1;

}

.site-header-nav .dropdown-item {
  padding: 0;
}

.site-header-nav .dropdown-item:hover {
  background: none;
}

.site-header-nav .dropdown-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;

  padding: 0.25rem 1.5rem;
  color: #000;
  text-decoration: none;

  transition: 0.1s;
}

.site-header-nav .dropdown-item a:hover {
  color: var(--danger);
  text-decoration: none;
  transform: scale(1.05);
}

.site-header-menu {
  display: none;
}

.site-header-login {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 7.5%;
}

.site-header-login #loginButton:checked~.login-modal {
  display: flex;
}

.site-header-login #loginButton:checked~.modal-overlay {
  display: flex;
}

.site-header-login>button {
  width: 100%;
  height: 2.5rem;
  border: none;
  border-radius: 24px;
  color: white;
  font-weight: bold;
  background: linear-gradient(-45deg, var(--danger), #e46773);
  cursor: pointer;
  outline: none;
  padding: 0;

  transition: 0.3s;
}

.site-header-login>button label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.site-header-login>button:hover {
  filter: brightness(0.95);
}

.site-header-login .login-modal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 25%);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 25%;

  background: linear-gradient(-135deg, var(--danger) 25%, white 0%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1rem;
  padding: 2rem;
  z-index: 2;
}

.site-header-login .login-modal h3 {
  align-self: flex-start;
  color: var(--danger);
  font-weight: bold;
}

.site-header-login .login-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  line-height: 1;
  font-size: 2rem;
  border: none;
  background: transparent;
  color: white;
  margin: 0;
  outline: none;
}

.site-header-login .login-modal .modal-close label {
  cursor: pointer;
}

.site-header-login .login-modal .login-box {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

.site-header-login .login-modal .login-link {
  padding: 0.5rem;
  border-left: 4px solid var(--danger);
  border-radius: 0.25rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  text-decoration: none;

  transition: 0.1s;
}

.site-header-login .login-modal .login-link:hover {
  transform: scale(1.05);
}

.site-header-login .login-modal .login-link img {
  width: 4rem;
}

.site-header-login .login-modal .login-link span {
  color: var(--danger);
  font-weight: bold;
}

.site-header-login .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(51, 51, 51, 0.75);
  z-index: 1;
}

.site-header-login .modal-overlay label {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

@media (max-width: 1120px) {
  .site-header-nav .nav-list .nav-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 20vh;
  }

  .site-header-top {
    padding: 0 0.5rem;
    background: linear-gradient(-45deg, var(--danger) 25%, #e46773 50%, white 0%);
  }

  .site-header-top .other-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 40%;
  }

  .site-header-top .other-logos a:first-child img {
    width: 55px;
  }

  .site-header-top .other-logos a:last-child img {
    width: 40px;
  }

  .site-header-tooltip__menu {
    justify-content: flex-end;
    width: 100%;
  }

  .site-header-tooltip__menu span {
    font-size: 0.75rem;
  }

  .site-header-bottom {
    padding: 0 0.5rem;
  }

  .site-header-logo {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-header-logo img {
    width: 110px;
  }

  .site-header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-header-menu button {
    width: 2.75rem;
    height: 2.75rem;
    border: 2px solid #dee2e6;
    border-radius: 100%;
    color: #617080;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    outline: none;
  }

  #menuButton:checked~.site-header-nav {
    display: flex;
  }

  .site-header-nav {
    position: absolute;
    display: none;
    top: 20vh;
    left: 0;
    width: 100%;
    height: 85vh;
  }

  .site-header-nav .nav-list {
    justify-content: flex-start;
    flex-direction: column;
    overflow: auto;
  }

  .site-header-nav .nav-list .nav-item {
    width: 100%;
    font-size: 1rem;
  }

  .site-header-nav .nav-list .nav-item>a {
    height: 10vh;
  }

  .site-header-nav .nav-dropdown {
    flex-direction: column;
  }

  .site-header-nav .dropdown-list {

    top: 100%;
    left: 0;
    width: 100%;

    padding: 0.25rem 0;
    margin-top: 0.25rem;
    background: white;
    border-top: 4px solid var(--danger);
    border-radius: 0;

  }

  .site-header-nav .dropdown-item {
    padding: 0;
  }

  .site-header-nav .dropdown-item:hover {
    background: none;
  }

  .site-header-nav .dropdown-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;

    padding: 0.25rem 1.5rem;
    color: #000;
    text-decoration: none;

    transition: 0.1s;
  }

  .site-header-nav .nav-list .nav-item:hover>a {
    transform: none;
  }

  .site-header-login {
    width: 100%;
  }

  .site-header-login .login-modal {
    left: 0;
    transform: translate(0, 0);
    justify-content: center;
    width: 100%;
    height: 105vh;

    background: linear-gradient(-135deg, var(--danger) 30%, white 0%);
    border-radius: 0;
    padding: 1rem;
  }

}