.contect-header {
    background-color: var(--color-Primary1);
    padding: 25px;
}

.contect-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contect-header ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    transition: all .3s linear;
}

.contect-header ul li a:hover {
    color: #00AEEF;
}

.contect-header ul li a:hover img {
    animation: infinite;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.top-bar {
    background-color: var(--color-white);
    padding: 10px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

}

.top-bar .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .logo a {
    width: 229px;
    height: 80px;
    display: flex;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.element ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.element ul li {
    list-style: none;
}

.element ul li a {
    font-size: 15px;
    color: var(--color-Primary1);
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 15px;
    transition: all 0.3s linear;
}

.element ul li a:hover {
    background-color: var(--color-Primary1);
    color: var(--color-white);
    transition: all 0.3s linear;
}

.lang {
    background-color: var(--color-Primary3);
    border-radius: 55px;
    transition: all 0.3s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.lang a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;

    align-items: center;
    transition: all 0.3s linear;
}

.lang a:hover,
.lang a.active {
    background-color: var(--color-Primary1);
    color: var(--color-white);
    transition: all 0.3s linear;
}

.btns-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ctm-btn {
    background-color: var(--color-white);
    color: var(--color-Primary1);
    border: 1px solid var(--color-Primary1);
    padding: 12px 15px;
    border-radius: 20px;
    height: 50px;
    text-align: center;
    font-family: "font_medium";
    min-width: 150px;
    transition: all 0.3s linear;
}

.ctm-btn:hover {
    color: var(--color-white);

    background-color: var(--color-Primary2);
}