body {
    margin: 0;
}

html {
    margin: 0;
    margin-top: 0 !important;
}

a {
    text-decoration: none;
}

h1 {
    margin: 0;
    text-align: center;
}

.small {
    height: 24px;
    margin: 0;
    border: none;
}

.normal {
    height: 64px;
    margin: 0;
    border: none;
}

.medium {
    height: 48px;
    margin: 0;
    border: none;
}

.large {
    height: 96px;
    margin: 0;
    border: none;
}

.background {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 232px - 512px);
}

.header {
    background-color: #141B5C;
    height: auto;
}

.site-header {
    position: static;
    width: 100%;
    transition: top 0.5s ease-in-out;
    z-index: 999999999;
}

.site-header.fixed {
    position: fixed;
    top: -100%;
}

.site-header.fixed.show {
    top: 0;
}

.header-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.left-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.user-info {
    flex: 1;
    text-align: right;
    color: #ffffff;
    display: flex;
    justify-content: flex-end;
    font-weight: 300;
    font-size: 16px;
    align-items: center;

}

.user-info a {
    color: #ffffff;
    display: flex;
}

.user-info .user-name {
    margin-right: 10px;
}

.site-navigation {
    color: #ffffff;
    text-align: left;
}

.primary-menu ul {
    padding: 0;
    display: flex;
    gap: 16px;
}

.primary-menu li {
    list-style: none;
}

.site-navigation li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.primary-button {
    background: #FF4E4E;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 48px;
    display: inline-block;
    width: max-content;
    cursor: pointer;
}

.site-logo img {
    max-width: 48px;
    height: auto;
}

.right-header a {
    display: flex;
    gap: 8px;
    padding: 12px 22px;
}

.footer-mobile-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
}

@media screen and (min-width: 425px) {
}

@media screen and (min-width: 769px) {
    .background {
        min-height: calc(100vh - 100px - 280px);
    }


    .header-container {
        flex-direction: row;
    }

    .header {
        background-color: #141B5C;
        height: 126px;
    }
}

@media screen and (min-width: 1024px) {
    .primary-menu ul {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .primary-menu ul {
        gap: 16px;
    }
}