﻿

header {
    position: relative;
}

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

/*header top*/

.header-top {
    background-color: #fff;
    position: relative;
    z-index: 9;
    height: 91px;
}

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


    .header-top-container .logo {
        user-select: none;
        z-index: 99999999999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-top-container .logo img {
        }

        .header-top-container .logo img,
        .header-top-container .logo canvas {
            width: 224px;
        }

.header-top-infor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: fit-content;
}

    .header-top-infor .item:last-child {
        padding-right: 0
    }

    .header-top-infor .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 24px;
    }

        .header-top-infor .item:last-child::before {
            display: none;
        }

        .header-top-infor .item::before {
            content: '';
            width: 1px;
            position: absolute;
            height: 100%;
            background-color: #d1d5d7;
            right: 0;
        }

        .header-top-infor .item img {
            margin-right: 14px;
        }

        .header-top-infor .item span {
            font-size: 15px;
            color: #686868;
            white-space: nowrap;
            line-height: 100%;
        }

        .header-top-infor .item p {
            margin: 0;
            font-family: robotoB;
            font-size: 16px;
            color: var(--default-color-1);
            white-space: nowrap;
            margin-top: 6px;
            line-height: 100%;
        }

/*header bottom*/
.header-bottom {
    height: 49px;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: var(--default-color-1);
}

    .header-bottom.fixed {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999999;
        background-color: var(--default-color-1);
    }

    .header-bottom.fixed {
        box-shadow: 0 0 10px 0 #33333345;
    }

.header-bottom-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    list-style: none;
    width: 100%;
    justify-content: space-between;
}

    .header-bottom-list li {
        position: relative;
    }

        .header-bottom-list li a {
            padding: 10px 12px;
            color: #fff;
            border-radius: 7px;
            font-size: 15px;
            transition: all ease .5s;
            font-family: interB;
            line-height: 100%;
            cursor: pointer;
            text-transform: capitalize;
            font-weight: 100;
        }

        .header-bottom-list li:hover a {
            color: var(--default-color-2);
            background-color: #fff;
        }

header .btn-menu-rs {
    display: none;
    font-size: 27px;
    color: #fff;
}

.header-bottom.fixed ul li:hover {
    color: #1a1d88c2;
    font-weight: bold;
}


.search-header {
    z-index: 1;
    margin-right: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding-left: 35px;
}

    .search-header::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 26px;
        background-color: #F7F7F7;
        left: 0;
        opacity: 0.46;
    }

    .search-header i {
        pointer-events: none;
    }

.drop-search-header {
    height: 26px;
    width: 212px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    background-color: #fff;
}


.header-bottom-list .drop {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    max-height: 0;
    z-index: 10;
    overflow: hidden;
    list-style: none;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s;
    pointer-events: none;
}

.header-bottom-list li.hav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-bottom-list li.hav:hover::before {
        display: block;
    }

.header-bottom-list li a {
    height: 100%;
    width: 100%;
}

.header-bottom-list li.hav::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    top: calc(100%);
    display: none;
    overflow-y: overlay;
}

.header-bottom-list li:hover .drop {
    padding: 2px 0;
    height: unset;
    max-height: 300px;
    pointer-events: all;
    -webkit-box-shadow: 0 0 8px 1px #00000054;
    box-shadow: 0 0 8px 1px #00000054;
}

    /* width */
    .header-bottom-list li:hover .drop::-webkit-scrollbar {
        width: 7px;
    }

    /* Track */
    .header-bottom-list li:hover .drop::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .header-bottom-list li:hover .drop::-webkit-scrollbar-thumb {
        background: #888;
    }


.header-bottom-list .drop li {
    padding: 0;
    overflow: hidden;
}

    .header-bottom-list .drop li:first-child {
        /* border-top-left-radius: 3px; */
        /* border-top-right-radius: 3px; */
    }

    .header-bottom-list .drop li:last-child {
        /* border-bottom-left-radius: 3px; */
        /* border-bottom-right-radius: 3px; */
    }

        .header-bottom-list .drop li:last-child a {
            border-bottom: 0;
        }

    .header-bottom-list .drop li a {
        white-space: nowrap;
        font-size: 15px;
        padding: 10px 12px;
        text-transform: unset;
        font-family: RobotoM;
        color: var(--default-color-2);
        font-weight: normal;
        -webkit-transition: all ease .2s;
        -o-transition: all ease .2s;
        transition: all ease .2s;
        border-radius: 0;
        border-bottom: 1px solid #3333332b;
    }

        .header-bottom-list .drop li a:hover {
            background-color: var(--default-color-2);
            color: #fff;
        }

.drop-.search-header-header {
    width: 212px !important;
    overflow: hidden;
    transition: all linear .2s;
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    overflow: hidden;
    height: 38px !important;
}



.drop-search-header input {
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
    padding-left: 10px;
    font-family: 'RobotoR';
    font-size: 13px;
    color: #3c3c3c;
}



.drop-search-header a {
    height: 100%;
    width: 28px;
    background-color: var(--default-color-2);
    color: #fff;
    font-size: 15px;
    border-radius: 3px;
}

header .swiper-button-next:after {
    transform: translateX(-80px);
}

header .swiper-button-prev:after {
    transform: translateX(80px);
}

header .swiper-button-next:after,
header .swiper-button-prev:after {
    color: var(--default-color-2);
    border: 1px solid var(--default-color-2);
    padding: 10px;
    font-size: 17px;
    border-radius: 3px;
    transition: all linear .3s;
    border: 2px solid var(--default-color-2);
}

header .swiper-button-next:hover:after {
    color: #fff;
    background-color: var(--default-color-2);
}

header .swiper-button-prev:hover:after {
    color: #fff;
    background-color: var(--default-color-2);
}



@media(max-width:1023px) {
    .no-display-mobile-tablet {
        display: none
    }

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

    .header-bottom-list li.hav {
        display: none !important;
    }

    header .btn-menu-rs {
        display: block;
    }



    .header-bottom ul li {
        display: none;
    }

        .header-bottom ul li.search,
        header .btn-menu-rs {
            display: block;
        }

    .header-top-infor .item {
        /* display: none; */
    }

        .header-top-infor .item:nth-child(1),
        .header-top-infor .item:nth-child(2) {
            display: none;
        }

        .header-top-infor .item.tel {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border: none;
        }

            .header-top-infor .item.tel::before {
                display: none;
            }

    .header-top-container .infor {
        position: absolute;
        right: 0;
    }

    header .btn-menu-rs {
        display: block;
    }

    .search-header::before {
        display: none;
    }
}

@media(min-width:740px) and (max-width:1023px) {
    .no-display-tablet {
        display: none
    }
}

@media(max-width:739px) {
    .no-display-mobile {
        display: none
    }

    .header-top-infor .item.tel {
        padding-left: 0;
        padding-right: 0;
    }

        .header-top-infor .item.tel a {
            font-size: 13px;
        }

    .header-top-container .logo canvas {
        width: 140px;
        top: 0;
        left: 0;
    }



    .header-top-infor .item.tel section {
        font-size: 13px;
    }

    .header-top-infor .item.tel span {
        font-size: 13px;
    }

    .header-bottom {
        height: 55px;
    }

    .header-top-container .logo {
        /* transform: translateY(10px); */
    }

        .header-top-container .logo img {
            width: 170px;
        }

    .header-top-infor .item {
        display: none;
    }
}
