@font-face {
    font-family: 'Test';
    src: url('../fonts/InterVariable.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    background: #E1E5F0;
}

a {
    text-decoration: none;
}

.navigation_bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #020817;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 94px;
    transition: box-shadow 0.3s ease;
}

.navigation_bar.shadow {
    box-shadow: 0 4px 80px rgb(0, 0, 0);
}

.brand {
    padding: 28px;
    width: 178px;
    height: 36px;
}

.brand a {
    color: white;
    font-size: 26px;
    font-weight: 400;
}

.header_logo {
    width: auto;
    height: 100%;
}

.contact {
    padding-top: 8px;
}

.navigation_menu a {
    color: white;
    font-size: 18px;
}

.nav_contact {
    margin-top: 24px;
    padding: 5px 16px;
    width: fit-content;
    height: fit-content;
    background-color: rgba(2, 8, 23, 0);
    border-radius: 6px;
    border: 1px solid white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav_contact a {
    color: #020817;
    font-weight: 500;
    font-size: 16px;
}

.navigation_menu a {
    color: white;
}

.nav_contact:hover {
    background-color: white;
    color: #020817;
}

.nav_contact:hover a {
    color: #020817;
}

.zerulean_header_logo {
    margin-top: 5px;
}

.navigation_menu {
    width: fit-content;
}

@media only screen and (max-width: 767px) {
    .navigation_menu {
        padding: 20px;
    }
    .contact {
    padding-top: 16px;
}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .navigation_menu {
        padding: 28px 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .navigation_menu {
        padding: 28px 20px;
    }
}

