﻿header {
}

.header-nav-right {
    display: flex;
    align-items: center;
}

.header.fix {
    position: fixed !important;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header .grid.wide {
    max-width: 1245px;
}

.header-container {
    position: relative;
    z-index: 99999999999999999999999999999999999999999999;
}

.header-logo {
    transform: translateY(-21px) scale(0.9);
    position: relative;
}
.header-logo:before{
    position:absolute;
    content:"";
    width: 120%;
    height: 130%;
    background:#FFF;
    z-index:-1;
    border-radius: 100%;
    left: -16px;
    top: -43px;
}
.header-logo img {
    /* width: 240px; */
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    height: 45.22px;
    background-color: var(--default-color-2);
}

.header-info {
    display: flex;
    align-items: center;
}

.header-info-item {
    display: flex;
    align-items: center;
}



.header-info-icon i {
}

.header-info-item.tel span {
    color: #fff;
    font-size: 15px;
    /* font-family: 'vnf'; */
}

.header-info-item.tel span a {
    position: relative;
    margin: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .2s;
}

.header-info-item.tel span a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #333;
    border-radius: 3px;
    transition: all linear .2s;
    left: 0;
    top: calc(100% + 4px);
}

.header-info-item.tel span a:hover {
    color: #333;
}

.header-info-item.tel span a:hover::after {
    width: 100%;
    transition: 0.8s cubic-bezier(.3,1.6,.3,1);
}

.header-info-item.tel span a:last-child::before {
    width: 4px;
    height: 2px;
    content: '';
    position: absolute;
    background-color: var(--default-color-2);
    left: -8px;
    transform: translateY(2px);
}

.header-info-item span {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 100%;
    transition: all linear .2s;
}

.header-info-item.tel {
    margin-left: 19px;
}

.header-info-item.tel:hover span {
    color: var(--default-color-2);
}

.header-info-item.tel:nth-child(2) span {
    font-family: interR;
}

.header-info-icon {
    margin-right: 6px;
}

.header-info-icon i {
}

.header-language {
    display: flex;
    align-items: center;
}

.header-language-item {
    margin-right: 14px;
}

.header-language-item:first-child {
    margin-right: 10px;
}

.header-language-item img {
    width: 26px;
    height: 26px;
}

.header.fix .header-nav {
    backdrop-filter: blur(20px);
    box-shadow: 0 0 24px 0 #33333330;
}

.header-nav {
    display: flex;
    align-items: center;
    height: 80px;
    background-color: rgb(255 255 255 / 70%);
    background-color: #fff;
    transition: all ease .2s;
}

.header-nav .nav-list {
    display: flex;
    align-items: center;
}

.header-nav .nav-item {
    position: relative;
}

.header-nav .nav-link {
    font-family: 'interM';
    font-size: 18px;
    color: #585858;
    text-transform: uppercase;
    padding: 15px 20px;
    transition: all linear .2s;
    position: relative;
    display: flex;
    align-items: center;
}

.header-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 22px;
    background: rgba(25, 67, 125, 0.30);
    right: 0;
}

.header-nav .nav-link:hover {
    color: var(--default-color-2);
}

.header-nav .nav-drop {
    position: absolute;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 8px 0 #00000029;
    padding: 4px 0;
    transform: translateY(10px);
    transition: 0.6s cubic-bezier(.3,2,.3,1);
    opacity: 0;
    pointer-events: none;
}

.header-nav .nav-item:hover .nav-drop {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header-nav .nav-drop-item {
}

.header-nav .nav-drop-link {
    color: #333;
    transition: all linear .2s;
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 14px;
}

.header-nav .nav-drop-link:hover {
    color: var(--default-color-2);
}

.header-search {
    position: relative;
    color: #454243;
    font-size: 18px;
    cursor: pointer;
    height: 100%;
    /* margin-right: 29px; */
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search:hover::before {
    display: block;
}

.header-search::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 40px;
    top: calc(100%);
    right: 0;
    display: none;
}

.header-search .search-drop {
    height: 35px;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 6px 0 #00000042;
    border-radius: 3px;
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none;
    transition: 0.6s cubic-bezier(.3,2,.3,1);
}

.header-search:hover .search-drop {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header-search .search-drop input {
    border: none;
    outline: none;
    background: transparent;
    height: 100%;
    padding: 0 10px;
}

.header-search .search-drop input::placeholder {
    font-size: 13px;
}

.header-search .search-drop a {
    height: 100%;
    width: 30px;
}

.header-top-btn {
    /* font-family: 'vnf'; */
    font-size: 13px;
    color: #fff;
    background-color: var(--default-color-2);
    border: 1px solid var(--default-color-2);
    padding: 8px 13px;
    border-radius: 5px;
    transition: all linear .2s;
    display: none;
}

.header-top-btn:hover {
    color: var(--default-color-2);
    background-color: #ffffff69;
}

.btn-menu-rs {
    color: var(--default-color-2);
    font-size: 24px;
    margin: 0 25px;
    display: none !important;
}

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-left: 211px;
}

.header-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#google_translate_element {
}

#google_translate_element .goog-te-gadget-simple {
    display: flex;
    align-items: center;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    display: flex;
    align-items: center;
}
