﻿header {
    height: 153px;
}

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

.header .grid.wide {
    position: relative;
}

    .header .grid.wide:before {
        content: "";
        position: absolute;
        background-color: rgb(255 255 255 / 80%);
        box-shadow: 0 0 10px 0 #3333332e;
        backdrop-filter: blur(2px);
        width: 100%;
        height: 100%;
        border-radius: 0 0 20px 20px;
    }

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

.header-container {
    display: flex;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 10px 25px;
    position: relative;
    z-index: 99999999999999999999999999999999999999999999;
    justify-content: space-between;
    gap: 26px;
    padding-bottom: 15px;
}

.header-logo {
}

    .header-logo img {
        width: 104px;
    }

.header-right {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0;
    align-items: end;
    align-items: flex-end;
    align-items: self-end;
    flex: 1 1 0;
}

.header-top {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 8px 0px;
    border-bottom: 1px solid #c7c5c3;
    padding-top: 0;
}

.header-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

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

.header-info-icon i {
}

.header-info-item.tel span {
    color: #0151d3;
    font-size: 16.73px;
}

    .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 span {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: normal;
    color: #606564;
    font-family: 'VNF-Optima';
    font-weight: 600;
}

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

.header-info-icon {
    width: 22px;
    height: 22px;
    background-color: var(--default-color-2);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

    .header-info-icon i {
    }

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

.header-language-item {
}

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

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

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

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

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

    .header-nav .nav-link {
        font-size: 17px;
        color: var(--default-color-1);
        text-transform: uppercase;
        padding: 7px calc(26px / 2);
        transition: all linear .2s;
        border-radius: 3px;
        font-family: VNF-Optima;
        font-weight: 600;
        line-height: 150%;
    }

        .header-nav .nav-link:hover {
            background-color: var(--default-color-1);
            color: #fff;
        }

    .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;
        min-width: 100%;
    }

    .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: 10px 16px;
        white-space: nowrap;
        font-size: 16px;
    }

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

.header-search {
    position: relative;
    color: #454243;
    font-size: 18px;
    cursor: pointer;
    height: 100%;
    margin-right: 15px;
    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: 43px;
        position: absolute;
        right: 0;
        top: 77%;
        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 12px;
        font-size: 15px;
        font-family: 'RobotoM';
    }

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

    .header-search .search-drop a:hover {
        background-color: var(--default-color-1);
        color: #fff;
    }

    .header-search .search-drop a {
        height: 100%;
        width: 45px;
        transition: all .3s;
    }

.header-top-btn {
    font-size: 14.5px;
    color: #fff;
    background-color: var(--default-color-2);
    border: 1px solid #017ae7;
    padding: 9px 17px;
    border-radius: 10px;
    transition: all linear .2s;
    background: var(--default-gra);
    font-family: robotoM;
}

    .header-top-btn:hover {
        color: var(--default-color-3);
        background-color: transparent;
    }

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

@media(max-width:1023px) {
    .header-info-item:first-child {
        display: none;
    }

    header {
        height: auto;
        position: relative;
        background-color: rgb(255 255 255 / 80%);
        box-shadow: 0 0 10px 0 #3333332e;
        backdrop-filter: blur(2px);
        z-index: 2;
    }

    .header .grid.wide:before {
        content: "";
        position: absolute;
        background-color: transparent;
        box-shadow: unset;
        backdrop-filter: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .header-nav .nav-list {
        display: none;
    }

    .btn-menu-rs {
        display: block !important;
    }

    .header-nav {
        padding-top: 8px;
    }

    .header-right {
        flex: 1;
        padding-left: 8px;
    }
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {
    .header-container {
        padding: 10px;
    }
.header-info-item.tel span{
    font-size:15px;
}
    .header-search:hover .search-drop {
        transform: translateY(14px);
        opacity: 1;
        pointer-events: all;
        left: -55px;
        right: auto;
        z-index: 5;
    }

    .header-info-item.tel {
        margin: 0;
    }

    .header.df {
        background-color: var(--header-color);
        position: relative;
    }

        .header.df .header-container {
            background-color: transparent;
        }

    .header-top-btn {
    }

    .header-search {
        margin-left: 0;
    }

    .header-logo img {
        width: 100px;
    }

    .header-top {
        padding: 0;
        padding-bottom: 10px;
    }

    .header-info {
        justify-content: end;
        -webkit-justify-content: flex-end;
        align-items: flex-end;
        -webkit-align-items: flex-end;
    }

    .btn-menu-rs {
        margin: 0 22px;
        margin-right: 0;
    }
}