header {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 30;
    box-shadow: rgba(13, 53, 84, 0.1) 0px 1px 15px 0px;
}

.Header_Top {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: rgba(7, 22, 34, 1);
    transition: 0.3s;
    z-index: 2;
    color: white;
}

.Header_Top_In {
    width: 90%;
    height: 95px;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.Logo_Link {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
    font-size: 25px;
}

.Logo_Image {
    width: 70px;
    z-index: 33;
}

.Menus {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
}

.Menus * {
    position: relative;
}

.Navigation {}

.Navigation a {
    font-size: 14px;
    margin: 0px 5px;
    transition: 0.3s;
}

.Navigation a:hover {
    color: hsl(28, 14%, 74%) !important;
}

.Navigation_Item a:hover {
    color: hsl(28, 14%, 74%) !important;
}

.Navigation_Button {
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.active {
    color: hsl(28, 14%, 74%) !important;
}

.Language_Switchers{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    top: 75px;
}

.Language_Switcher,
.Language_Switcher_Mobile {
    opacity: 0;
    pointer-events: none;
    margin: 0 !important;
    transition: 0.3s;
    padding: 5px 0px;
    background-color: white;
    color: black;
}

.Language_Item,
.Language_Item_Mobile {
    margin: 5px;
    font-size: 16px;
    padding: 0px 0px 0px 30px;
    display: flex;
    margin-right: 15px;
    align-items: center;
    justify-content: space-between;
    height: 19px;
    background-repeat: no-repeat !important;
    cursor: pointer;
}

.Language_Item_Mobile {
    padding: 0px 10px 0px 10px;
}

.Language_Switcher_Mobile {
    top: 53px !important;
    right: 0 !important;
    background-color: rgba(7, 22, 34, 1);
    color: white !important;
}

.Language_Item span,
.Language_Item_Mobile span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.Lang_Mobile {
    position: relative;
    display: flex;
    align-items: center;
}

.Lang_Mobile a {
    justify-content: end !important;
    text-decoration: underline;
}

.Header_Bottom {
    width: 100%;
    display: none;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0px;
    height: auto;
    justify-content: center;
    background-color: rgba(7, 22, 34, 1);
    transition: 0.3s;
    color: white;
    border-top: 1px solid white;
}

.Header_Bottom_In {
    width: 100%;
    display: flex;
    text-align: right;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 10px 10px;
}

.Header_Bottom_In a {
    margin: 0px;
}