#tudor-header {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px solid #c7bfbf;
    margin-top: 40px;
}

.tudor-header-container {
    width: 100%;
    /*max-width: 1720px;*/
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.tudor-header-inner-wrapper {
    /*min-height: 168px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
}

.tudor-header-brand-area {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-shrink: 0;
}

.tudor-header-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.tudor-header-brand-logo-image {
    display: block;
    width: 114px;
    height: auto;
    max-width: 100%;
}

.tudor-header-brand-website-link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.tudor-header-brand-website-link:hover {
    opacity: 0.75;
}

.tudor-header-navigation-area {
    display: flex;
    align-items: center;
}

.tudor-header-navigation-menu {
    display: flex;
    align-items: center;
}

.tudor-header-navigation-list {
    display: flex;
    align-items: center;
    gap: 56px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tudor-header-navigation-list-item {
    display: flex;
    align-items: center;
}


/*
.tudor-header-navigation-link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.tudor-header-navigation-link.active {
    color: #000000;
    font-weight: 600;
    position: relative;
}

.tudor-header-navigation-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: #be0100;
}

.tudor-header-navigation-link:hover {
    color: #000000;
    opacity: 0.8;
    font-weight:600;
}

*/

.tudor-header-navigation-link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease, opacity 0.25s ease, font-weight 0.25s ease;
}

.tudor-header-navigation-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: #be0100;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.30s ease;
}

.tudor-header-navigation-link.active {
    color: #000000;
    font-weight: 600!important;
}

.tudor-header-navigation-link.active::after {
    transform: scaleX(1);
}

.tudor-header-navigation-link:hover {
    color: #000000;
    opacity: 0.8;
    font-weight: 300;
}

.tudor-header-navigation-link:hover::after {
    transform: scaleX(1);
}


.tudor-header-contact-button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 20px;
    background-color:#be0100;
    border:solid 1px #be0100;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.tudor-header-contact-button-link:hover {
    background-color: #ffffff;
    border:solid 1px #be0100;
    color:#be0100;
    transform: translateY(-1px);
}

@media screen and (max-width: 991px) {
    .tudor-header-inner-wrapper {
        min-height: auto;
        padding: 26px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tudor-header-brand-area {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
    }

    .tudor-header-navigation-area {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .tudor-header-navigation-list {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px 28px;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .tudor-header-container {
        padding: 0 20px;
        display: flex;
        justify-content: center;
    }

    .tudor-header-brand-area {
        flex-direction: column;
        align-items: center;
    }

    .tudor-header-navigation-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .tudor-header-navigation-list-item {
        text-align: center;
    }

    .tudor-header-brand-website-link,
    .tudor-header-navigation-link {
        text-align: center;
        display: inline-block;
    }

    .tudor-header-contact-button-link {
        min-width: 160px;
    }
}