
header .logo img {
    height: 70px;
}

header nav ul li a {
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
    color: #333333;
}

.btn-head a {
    font-size: 18px;
    height: 45px;
    line-height: 1.2;
    background-color: #fff;
    border: 2px solid #00ade7;
    display: flex;
    padding: 0px 26px;
    border-radius: 25px;
    align-items: center;
    color: #00ade7;
    font-weight: 600;
    box-shadow: 0 0 0 0 #00ade7;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.menu_fix_mobile {
    position: fixed;
    z-index: 999999;
    height: 100%;
    width: 320px;
    top: 0;
    right: 0;
    background: #fff;
    transition: all 200ms linear 0s;
    transform: translateX(100%);
    padding: 20px;
}

.menu_fix_mobile.main-menu-show {
    transform: translateX(0%);
}

.menu_fix_mobile .close-menu {
    overflow: hidden;
    border-bottom: 1px solid #fff;
    /*! position: relative; */
}

.close-menu {
    padding-bottom: 5px;
}

.menu_fix_mobile .close-menu>a {
    float: right;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close-menu a svg {
    color: #222;
    height: 16px;
}

.close-menu span {
    font-size: 14px;
    color: #222;
    font-weight: 600;
}

.menu_fix_mobile ul {
    margin: 0;
    list-style: none;
}

.menu_fix_mobile ul li {
    float: left;
    position: relative;
    margin: 0;
    transition: 0.4s;
    width: 100%;
    /* border-bottom: 1px solid #cdcdcd9c; */
}

.menu-mobile-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-c2-mobile ul li {
    border-bottom: 1px solid #cdcdcd9c;
    padding-left: 10px;
}

.menu_fix_mobile ul li a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0px;
    color: #222;
    display: inline-block;
    width: 100%;
    /* border-bottom: 1px solid #cdcdcd9c; */
    line-height: normal;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    text-transform: uppercase;
}

.menu-c2-mobile {
    display: none;
}

.menu-c2-mobile.active-2 {
    display: block;
}

.list-bar--mobile {
    display: none;
}
.btn-mobile{
    display: none;
}
@media (max-width: 1200px) {
    header nav{
        display: none;
    }
    .btn-mobile{
        display: block;
    }
    .btn-head{
        display: none;
    }
    .btn-mobile {
        font-size: 18px;
        height: 40px;
        line-height: 1.2;
        background-color: #00ade7;
        border: 2px solid #00ade7;
        display: flex;
        padding: 0px;
        border-radius: 5px;
        align-items: center;
        color: #00ade7;
        font-weight: 600;
        box-shadow: 0 0 0 0 #00ade7;
        -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
        animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
        transition: all .5s;
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-animation: zoom 1.3s infinite;
        animation: zoom 1.3s infinite;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-mobile svg{
        height: 24px;
        fill: white;
    }
    .btn-mobile {
        height: 35px;
        width: 35px;
    }
}
@media (max-width: 568px) {
}