.nav-bar {
    background-color: var(--color-black);
    padding: 15px 0 ;
    height: 110px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.1);
}

.logo {
    max-height: 132px;
    width: 241px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-bar .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.element ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.element ul li {
    display: block;
}

.element ul li a {
    color: var(--color-white);
    font-family: "font_medium";
    font-size: 19px;
    height: 50px;
    align-items: center;
    overflow: hidden;
    display: flex;
    position: relative;
}

.element ul li a::after {
    content: "";
    width: 90%;
    position: absolute;

    bottom: 5px;
    right: 0;
    transform: translateX(100%);
    height: 2px;
    transition: all 0.3s linear;

    opacity: 0;
    background-color: var(--color-white);
}

.element ul li a::before {
    content: "";
    width: 90%;
    position: absolute;
    bottom: 0px;
    left: 0;
    transform: translateX(-100%);
    height: 2px;
    transition: all 0.3s linear;
    opacity: 0;
    background-color: var(--color-white);
}

.element ul li a:hover::after,
.element ul li a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.icons-top-ber>ul {
    display: flex;
    gap: 40px;
    justify-content: end;
}

.icons-top-ber>ul>li {
    list-style-type: none;
    display: block;
    position: relative;
}

.icons-top-ber>ul>li::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #e2e2e2;
    border-radius: 1px;
    position: absolute;
    right: -20px;
    top: 0;
}

.icons-top-ber>ul>li:last-of-type::after {
    display: none;
}

.icons-top-ber>ul>li>a {
    color: var(--color-white);
    align-items: center;
    transition: all 0.3s linear;
    font-family: "font_medium";
    display: flex;
    gap: 15px;
}

.img-icons {
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    position: relative;

    text-align: center;
    z-index: 1;
}

.img-icons img {
    filter: brightness(0) invert(1);
    transition: all 0.3s linear;
}

.img-icons::after {
    content: "";
    top: 0;
    border: 1px solid var(--color-white);
    border-radius: 5px;
    width: 100%;
    position: absolute;
    right: 0;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.3s linear;
    height: 100%;
}

.icons-top-ber ul>li:hover .img-icons::after {
    transition: all 0.3s linear;
    transform: rotate(0deg);
    background-color: var(--color-white);
}

.icons-top-ber ul>li:hover .img-icons img {
    filter: brightness(0) invert(0);
}

.dropdowm-language {
    width: 140px;
    background-color: var(--color-white);
    height: auto;
    position: absolute;
    border-radius: 5px;
    left: 0;
    top: calc(100% + 10px);
    z-index: 2;
    display: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.274);
}

.dropdowm-language ul {
    display: flex;
    flex-wrap: wrap;
}

.dropdowm-language ul li {
    height: 50px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #e2e2e2;
}

.dropdowm-language ul li:last-of-type {
    border: none;
}

.dropdowm-language ul li a {
    padding: 0px 10px;
    font-size: 19px;

    display: flex;
    color: var(--color-white);
    height: 100%;
    align-items: center;
}

.dropdowm-language ul li:hover a {
    background-color: #000;
    color: #fff;
}