.color-svg {
    filter: brightness(0) saturate(100%);
    /* »òÕß¼òÐ´Îª */
    filter: brightness(0);
}

.navbar {
    width: 100%;
    height: 64px;
    /*    background: #0420B2;*/
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 99999;
    border-bottom: 1px solid #AAAAAA;
}

.navbar .navbar-container {
    /* width: 1200px; */
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container .navbar-logo {
    width: 200px;
    height: 64px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.navbar-logo a{
    font-size: 0;
}
.navbar-logo img {
    width: 153px;
    height: 46px;
}

.navbar-container .navbar-items {
    width: 600px;
    height: 64px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    /* gap: 2px; */
}

.navbar-items .navbar-item {
    height: 64px;
    border-bottom: 1px solid #AAAAAA;
    cursor: pointer;
    margin-top: 1px;
}

.navbar-item .navbar-link {
    height: 64px;
    line-height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /*    color: #0420B2;*/
    color: #000000;
}

.navbar-item .navbar-link-active {
    /*background-color: rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid #0420B2;
    color: #0420B2;
}


.navbar-link img{
    width: 10px;
    height: 10px;
    margin-top: 2px;
}

.navbar-item .navbar-dropdown {
    display: none;
    position: fixed;
    top: 64px;
    background: #ffffff;
    min-width: 200px;
    padding: 10px 0px;
}


.navbar-items .navbar-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #0420B2;
}

.navbar-items .navbar-item:hover .navbar-dropdown {
    display: block;
    animation: slideDown 0.3s ease forwards;
}


.navbar-dropdown .dropdown-item {
    padding: 12px 20px;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    font-size: 13px;
    display: block;
}

.navbar-dropdown .dropdown-item:hover{
    background: rgba(39,48,78, 0.1);
    transition: background-color 300ms, color 300ms;
}


.navbar-container .navbar-expand {
    width: 400px;
    height: 64px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.navbar-expand .expand-item{
    height: 64px;
    line-height: 64px;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.navbar-expand .search-icon{
    z-index: 99999;
}

.navbar-expand .expand-item:hover {
    color: #AAAAAA;
}

.expand-item .search-input{
    display: none;
    width: 340px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    margin-left: -305px;
    background: #ffffff;
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 40px;
    z-index: 1;
}
/* 
.expand-item .search-input input{
    width: 320px;
    height: 40px;
    line-height: 40px;
    border: none;
    background: #ffffff;
    border-radius: 40px;
} */

.navbar-expand .expand-item:hover .search-input{
    display: block;
}
.navbar-expand .expand-item:hover .search-icon path{
    display: block;
    fill: #AAAAAA;
}

.navbar-container .navbar-menu{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
/*    border: 1px solid #AAAAAA;*/
}

.navbar-menu img{
    width: 30px;
    height: 30px;
}

.navbar-menu .navbar-menu-items{
    display: none;
    background-color: #ffffff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 64px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.navbar-menu .navbar-menu-mask{
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100vw;
    height: calc(100vh - 64px);
    position: absolute;
    left: 0;
    top: 64px
}

.navbar-menu-items .navbar-menu-item{
    /* padding: 10px 0px; */
    padding: 14px 20px;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    font-size: 13px;
    display: block;
}

.navbar-menu-items .navbar-menu-item:hover{
    background: rgba(39,48,78, 0.1);
    transition: background-color 300ms, color 300ms;
}

.footer {
    margin-top: 40px;
    background: #0420B2;

    background-image: url(/images/footer-bg.png);
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.footer .footer-container {
    /* width: 1200px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer-container .footer-item{
    /* padding-top: 10px; */
    padding-bottom: 20px;
    color: #ffffff;
    padding-right: 20px;
}

.footer-item .footer-name{
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.footer-item .footer-link{
    font-size: 12px;
    padding-bottom: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-item .footer-link:hover{
    color: #AAAAAA;
}

.footer-item .footer-tag{
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-item .footer-contact{
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    /* padding-top: 2px; */
    padding-bottom: 6px;
    letter-spacing: 1px;
}

.footer .footer-copyright{
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.25px;
}

.footer .footer-pays{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.footer-pays img{
    width: 34px;
}

@keyframes slideDown {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.inquiry-item{
    padding: 10px;
    /* width: 100%; */
}

.inquiry-item input, textarea{
    width: 100%;
}



.toast {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
}

.toast .toast-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast-container .toast-content {
/*    min-width: 300px;
    max-width: 800px;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);*/
}

.toast-content .toast-message {
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    background-color: rgba(0, 0, 0, .8);
    padding: 8px 18px;
    border-radius: 4px;
}

.toast-content .toast-success {
    background-color: rgba(22, 122, 22, .8);
}