body {
    margin: 0;
}
:root {
    --desktop-height: 10vh;
    --desktop-padding: 5vw;
    --background-color: var(--dark-translucent);
    --foreground-color: var(--light);
}
.w-header-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    background-color: var(--background-color);
    backdrop-filter: blur(10px);
    z-index: 100 !important;
    position: fixed;
    top: 0;
}
.w-header-container a,
.w-header-container button {
    color: var(--foreground-color);
    background-color: transparent !important;
    font-weight: 500;
    font-size: 14pt;
    padding: 0 !important;
}
.w-header-container img {
    max-height: calc(var(--desktop-height) - calc(var(--desktop-height) / 2.5));
}
.w-header-container .nav-resizeable {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--desktop-height);
    width: 100%;
}
.w-header-container .nav-resizeable .nav-group {
    height: 100%;
    width: fit-content;
    box-sizing: border-box;
}
.w-header-container .nav-resizeable .nav-group:first-child {
    padding-left: var(--desktop-padding);
}
.w-header-container .nav-resizeable .nav-group:last-child {
    padding-right: var(--desktop-padding);
}
.w-header-container .nav-resizeable ul {
    display: flex;
    gap: 2rem;
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style-type: none;
}
.w-header-container .nav-resizeable ul li {
    position: relative;
    align-content: center;
    height: 100%;
}
.w-header-container .nav-resizeable ul li ul {
    visibility: collapse;
    flex-direction: column;
    position: absolute;
    height: fit-content;
    right: 50%;
    transform: translateX(50%);
    top: 120%;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    background-color: var(--background-color);
    padding: 0 2rem 1rem 2rem;
    transition: .3s;
    z-index: inherit;
}
.w-header-container .nav-resizeable ul li:hover ul {
    visibility: visible;
    top: 100%;
    opacity: 1;
    transition: .15s;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable {
    display: block;
    overflow: hidden;
    gap: 5vh;
    transition: .3s;
    height: var(--desktop-height);
    overflow: hidden;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable.w-header-resizeable-open {
    height: 100vh;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group {
    width: 100%;
    height: var(--desktop-height);
    padding: 0 var(--desktop-padding);
}
.w-header-container .nav-resizeable .nav-group .w-header-nav-menu-open {
    display: none;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group .w-header-nav-menu-open {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(var(--desktop-height) - calc(var(--desktop-height) / 1.8));
    width: calc((var(--desktop-height) - calc(var(--desktop-height) / 1.8)) * (4/3));
    padding: 0 !important;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group .w-header-nav-menu-open div {
    background-color: var(--foreground-color);
    width: 100%;
    height: 18%;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:first-of-type ul {
    justify-content: space-between;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) {
    height: calc(100vh - var(--desktop-height));
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) ul {
    flex-direction: column;
    align-items: flex-start;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) li {
    height: fit-content;
    width: 100%;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) li ul{
    width: 100%;
    background-color: var(--background-color);
    visibility: visible;
    opacity: 1;
    z-index: +1000;
    top: 0;
    transform: translateX(-110%);
    padding-left: 1.2em;
    box-sizing: border-box;
    left: 0;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) li ul.w-header-dropdown-opened{
    transform: translateX(0);
}
.w-header-container .w-header-on-phone-layout-inserted-link,
.w-header-container .nav-resizeable .nav-group:not(:first-of-type) li ul .w-header-on-phone-inserted-dropdown-close-button {
    display: none;
}
.w-header-container.w-header-on-phone-layout .w-header-on-phone-layout-inserted-link,
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) li ul .w-header-on-phone-inserted-dropdown-close-button {
    display: block;
}
.w-header-container.w-header-on-phone-layout .nav-resizeable .nav-group:not(:first-of-type) li ul .w-header-on-phone-inserted-dropdown-close-button {
    position: absolute;
    top: 1rem;
    right: 2rem;
    transform: rotate(45deg);
    font-size: 2em;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.nav-logo i {
    font-size: 2.5rem !important;
}