.container-page {
    max-width: 1740px;
}
.font-Narrow {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.vincent_corners:after {
    background-image: linear-gradient(rgba(18, 22, 24, 1), rgba(18, 22, 24, 1)), linear-gradient(-45deg, transparent 75%, rgba(18, 22, 24, 1) 75%), linear-gradient(45deg, transparent 75%, rgba(18, 22, 24, 1) 75%);
    width: 100%;
    height: 10px;
    position: absolute;
    display: block;
    content: "";
    left: 0;
    top: 0;
    border: solid transparent;
    border-width: 10px 0;
    background-color: #121618;
    background-color: hsla(0, 0%, 0%, 0);
    background-repeat: repeat, repeat-x, repeat-x, repeat-x, repeat-x;
    background-position: 0 0, 0 0, 0 0, 0 100%, 0 100%;
    background-size: auto auto, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    background-clip: padding-box, border-box, border-box, border-box, border-box;
    background-origin: padding-box, border-box, border-box, border-box, border-box;
    z-index: 1;
}

.menu-item a{
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.2s ease;
    font-family: "PT Sans Narrow", sans-serif;
}

.primary-menu a:hover {
    color: #facc15;
}

#siteHeader.is-sticky {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 50;
    animation: slideDown 0.4s ease forwards;
}

#siteHeader.is-static {
    position: relative;
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        top: -100%;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}


.contact_form{
    margin-top: 40px;
}
.contact_form form{
    display: flex;
    gap:20px;
    flex-direction: column;
}
.contact_form input::placeholder, .contact_form textarea::placeholder{
    color: #dce4e891;

}
.contact_form input, .contact_form textarea{
    padding: 5px 15px 7px;
    border: 2px solid #1d2326;
    border-radius: 5px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 3px;
    font-family: 'PT Sans Narrow', sans-serif;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    outline: none;
    color: #dce4e8;
}
.contact_form textarea{
    min-height: 120px;
}
#ff-sendmessage{
    background: #1d2326;
    border: solid 2px #1d2326;
    padding: 6px 16px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-appearance: button;
    width: 150px;
    font-family: 'PT Sans Narrow', sans-serif;
}
#ff-sendmessage:hover{
    border-color: #ffc851;
    color: #ffc851;
    cursor: pointer;
}


.btn_mobile_menu {
    width: 30px;
    height: 22px;
    position: relative;
    display: inline-block;
}

.btn_mobile_menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.vincent_menu_line1 { top: 0; }
.vincent_menu_line2 { top: 9px; }
.vincent_menu_line3 { top: 18px; }

/* ACTIVE STATE (X icon) */
.btn_mobile_menu.active .vincent_menu_line1 {
    transform: rotate(45deg);
    top: 9px;
}

.btn_mobile_menu.active .vincent_menu_line2 {
    opacity: 0;
}

.btn_mobile_menu.active .vincent_menu_line3 {
    transform: rotate(-45deg);
    top: 9px;
}