.site-header {
    display: flex;
    background-color: var(--color-2);
    min-height: 71px;
    align-items: center;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;

}

.head-btn {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
    color: var(--color-2);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 10px;
    border: 1px solid #fff;
}

.head-btn:hover {
    border-radius: 10px;
    border: 1px solid #fff;
    background: var(--Orange, #EB6423);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
    color: #fff;

}

.head-btn:hover svg path {
    fill: #fff;
}

.site-header.sticky {
    top: 0;
    position: sticky;
    z-index: 999;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
}

/*  */

@media screen and (min-width:990px) {

    #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item a[class^="dashicons"]:before{
        display: none;
    }
}

@keyframes stuckMoveDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media only screen and (max-width: 620px) {
    .head-btn {
        font-size: 12px;
        padding: 12px 8px;
    }
}

@media screen and (max-width:425px) {
    .head-btn {
        font-size: 12px;
        padding: 12px 8px;
    }

}

@media screen and (max-width:375px) {
    .head-btn {
        font-size: 2px;
        padding: 12px 8px;
    }

    .head-btn svg {
        width: 12px;
    }
}

@media screen and (max-width:360px) {
    .head-btn {
        font-size: 9px;
    }

    .head-btn svg {
        width: 10px;

    }
}