.header {
    z-index: 999;
    width: 100%;
    height: 580px;

    padding: 10px 0;
    position: relative;
}
.header_pages {
    min-height: auto;
    height: auto;
    padding: 0;
    height: 110px;
    align-content: center;
}

.header-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


.top_bar_pages {
    height: 110px;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.144);
}


.top_bar {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.element {
    text-align: center;
}

.element ul {
    display: flex;
    align-items: center;
    font-family: "font_medium";
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.element ul li {
    display: block;
    position: relative;
}

.element ul li a {
    width: 100%;
    color: #1E4F6F;
    font-size: 16px;
    transition: all .4s linear;
    height: 100%;
    position: relative;
    font-family: "font_medium";
}

.element ul li a:hover {
    color: #B9915B;
}

.element ul li a:before {
    left: 0;
    content: "";
    position: absolute;
    transition: transform .5s ease;
    bottom: -10px;
    right: 0;
    margin: auto;
    width: 70%;
    height: 2px;
    background: #B9915B;
    transform: scaleX(0);
}

.element ul li a:hover:before {
    transform: scaleX(1);
}

.element ul li::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    content: "";
    background-color: #B9915B;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.element ul li:last-of-type::after {
}

.logo {
    width: 18%;
    user-select: none;
}

.language {
    text-align: end;
    width: 12%;
}

.title h2 {
    font-size: 25px;
    padding-right: 15px;
    position: relative;
    color: #1E4F6F;
    margin: 20px 0px;
    display: flex;
    border-radius: 20px;
    align-items: center;
}

.title h2::after {
    height: 40px;
    width: 3px;
    position: absolute;
    right: 0;
    background-color: #B9915B;
    content: "";
    border-radius: 20px;

}

.sub_header p {
    font-size: 25px;
    line-height: 45px;
    font-family: "font_bold";
    color: #B9915B;
}


.sub_header {
    position: absolute;
    top: 50%;
    align-items: center;
    transform: translateY(-50%);
}


.title_pages {
    height: 400px;
    background-size: cover;
    display: flex;
    position: relative;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.title_pages h1 {
    font-weight: normal;
}

.bread_crump_pages {
    position: absolute;
    bottom: -25px;
    right: 0px;
    left: 0;
    margin: auto;
    text-align: center;
}

.bread_crump_pages p {
    display: inline-block;
    color: #fff;
    min-width: 180px;
    padding: 11px 40px;
    position: relative;
    height: 55px;
    background-color: #B9915B;
}

.bread_crump_pages p a {
    color: #fff;
}
.bread_crump_pages p::after {
    width: 0;
    content: "";
    height: 0;
    top: 0px;
    right: -30px;
    display: block;
    position: absolute;
    border-bottom: 30px solid #917248;
    border-right: 30px solid transparent;
}

.bread_crump_pages p::before {
    width: 0;
    content: "";
    height: 0;
    top: 0px;
    left: -30px;
    display: block;
    position: absolute;
    border-bottom: 30px solid #154C70;
    border-left: 30px solid transparent;
}

