.armor_header {
    width: 100%;
    height: 90px;
    background-color: #efefef;
    display: flex;
    position: fixed;
    z-index: 10000;
}

.armor_header_content {
    width: 100%;
    height: 90px;
    background-color: #efefef;
    display: flex;
}

.armor_header_logo {
    width: 160px;
    height: 90px;
    object-fit: contain;
    margin-left: 32px;
    cursor: pointer;
    user-select: none;
}

.armor_menu {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 32px;
}

.armor_menu_item, .armor_menu_call {
    margin: auto 8px auto 8px;
    opacity: 0.7;
    cursor: pointer;
    user-select: none;
}

.armor_menu_item:hover, .armor_menu_call:hover {
    opacity: 1.0;
}

.armor_mobile_menu_item {
    margin: 8px 16px 8px 16px;
    opacity: 0.7;
    cursor: pointer;
    user-select: none;
    color: #dedede;
}

.armor_menu_call {
    background-color: #4287f5;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    display: flex;
}

.armor_mobile_menu_btn, .armor_mobile_call_btn {
    display: none;
}

.armor_call_text {
    margin: 0!important; 
    padding: 12px 12px 12px 8px; 
    text-align: center; 
    color: #efefef;
}

.armor_mobile_menu_icon {
    width: 24px;
    height: 24px;
    margin: auto;
}

.armor_mobile_call_icon {
    width: 16px;
    height: 16px;
    margin: auto;
    padding: 12px 0 12px 12px;
}

@media screen and (max-width: 950px) {
    /* mobile version */
    .armor_menu {
        display: none;
    }

    .armor_mobile_menu_btn {
        display: flex;
        margin: auto 32px auto auto;
        height: fit-content;
        padding: 12px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        cursor: pointer;
    }

    .armor_mobile_call_btn {
        display: flex;
        position: fixed;
        bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
        width: fit-content;
        background-color: #4287f5;
        right: 0;
        user-select: none;
        cursor: pointer;
        border-radius: 8px;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.85);
    }
}



@media screen and (min-width: 1700px) {
    .armor_header_content {
        margin-left: auto;
        margin-right: auto;
        width: 1500px;
    }
}