.header {
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}

.header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    opacity: 0.5;
    top: 0;
    z-index: -1;
}

.video-header {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    padding: 20px 50px;
}

.logo img {
    width: 220px;
}

.element {
    width: 100%;
    background-color: #ffffff79;
    min-height: 550px;
    text-align: center;
    padding: 20px 0;
    backdrop-filter: blur(5px);
}

.element ul li a {
    height: 40px;
    font-family: "font_medium";
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s linear;
    z-index: 1;
    color: var(--color-main);
}

.text-sub-header {
    color: #fff;
    width: 90%;
}

.element ul li a::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all 0.3s linear;
}

.element ul li:hover a::after {
    transform: translateX(0%);
}

.element ul li.active a {
    color: #fff;
}

.element ul li.active a::after {
    transform: translateX(0%);



}

.element ul li:hover a {
    color: var(--color-white);
}

.text-sub-header h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 30px;
    font-family: "font_bold";
}

.text-sub-header p {
    color: #fff;
    line-height: 40px;
    font-size: 22px;
    /*margin-top: 40px;*/
    font-family: "font_medium";
}
.header-index .sub-header {
    position: relative;
    overflow: hidden;
        padding-bottom: 10px;

}

.header {
    width: 100%;
    /*overflow: hidden;*/
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}
