/* =========================================
   HEADER - LOGO + MENU + ENGLISH BUTTON
   ========================================= */

.main-header .navbar {
    position: relative;
}

.main-header .container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* =========================================
   LOGO
   ========================================= */

/*.main-header .navbar-brand {*/
/*    display: flex !important;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*    width: 75px;*/
/*    min-width: 75px;*/

/*    margin-right: 20px;*/
/*    padding: 0;*/

/*    position: relative;*/
/*    z-index: 20;*/

/*    flex-shrink: 0;*/
/*}*/

/*.main-header .navbar-brand img {*/
/*    display: block !important;*/

/*    width: 70px !important;*/
/*    height: 70px !important;*/

/*    object-fit: contain;*/

/*    visibility: visible !important;*/
/*    opacity: 1 !important;*/
/*}*/


/* =========================================
   MAIN MENU
   ========================================= */

.main-header .main-menu {
    flex: 1 1 auto;
    min-width: 0;
}

.main-header .nav-menu-wrapper {
    width: 100%;
    min-width: 0;
}

.main-header .navbar-nav {
    display: flex !important;
    align-items: center;

    justify-content: space-between;

    width: 100%;
    margin: 0;
    padding: 0;

    flex-wrap: nowrap;
}

.main-header .navbar-nav .nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
}

.main-header .navbar-nav .nav-link {
    display: block;

    font-size: 16px;
    line-height: 1.2;

    white-space: nowrap !important;

    padding-left: 8px;
    padding-right: 8px;
}


/* =========================================
   RIGHT SIDE BUTTON
   ========================================= */

.main-header .header-btn {
    display: flex !important;
    align-items: center;

    margin-left: 15px;
    gap: 8px;

    flex: 0 0 auto;
    flex-shrink: 0 !important;

    white-space: nowrap;
}

.main-header .header-btn .btn-default {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    flex: 0 0 auto;
    flex-shrink: 0 !important;

    white-space: nowrap !important;
    overflow: visible !important;

    height: 50px;

    padding: 0 8px 0 18px !important;

    font-size: 14px !important;
    line-height: 1 !important;

    border-radius: 30px;
}


/* =========================================
   ENGLISH BUTTON
   ========================================= */

.main-header .header-btn .btn-default:last-child {
    width: 125px !important;
    min-width: 125px !important;

    height: 50px;

    padding: 0 8px 0 18px !important;

    font-size: 14px !important;

    white-space: nowrap !important;
    overflow: visible !important;

    flex-shrink: 0 !important;
}


/* =========================================
   LAPTOP / 90% ZOOM FIX
   ========================================= */

@media (max-width: 1900px) {

    .main-header .navbar-brand {
        width: 60px;
        min-width: 60px;
        margin-right: 8px;
    }

    .main-header .navbar-brand img {
        width: 65px !important;
        height: 65px !important;
    }

    .main-header .navbar-nav {
        justify-content: space-between;
    }

    .main-header .navbar-nav .nav-link {
        font-size: 14px;
        padding-left: 5px;
        padding-right: 5px;
        white-space: nowrap !important;
    }

    .main-header .header-btn {
        margin-left: 8px;
        gap: 5px;
    }

    .main-header .header-btn .btn-default:last-child {
        width: 115px !important;
        min-width: 115px !important;

        height: 46px;

        padding: 0 7px 0 15px !important;

        font-size: 13px !important;
    }
}


/* =========================================
   SMALL LAPTOP
   ========================================= */

@media (max-width: 1400px) {

    .main-header .navbar-brand {
        width: 55px;
        min-width: 55px;
        margin-right: 5px;
    }

    .main-header .navbar-brand img {
        width: 60px !important;
        height: 60px !important;
    }

    .main-header .navbar-nav .nav-link {
        font-size: 13px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .main-header .header-btn {
        margin-left: 6px;
    }

    .main-header .header-btn .btn-default:last-child {
        width: 110px !important;
        min-width: 110px !important;

        height: 44px;

        padding: 0 6px 0 12px !important;

        font-size: 12px !important;
    }
}


/* =========================================
   VERY SMALL LAPTOP
   ========================================= */

@media (max-width: 1200px) {

    .main-header .navbar-brand {
        width: 50px;
        min-width: 50px;
    }

    .main-header .navbar-brand img {
        width: 55px !important;
        height: 55px !important;
    }

    .main-header .navbar-nav .nav-link {
        font-size: 12px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .main-header .header-btn .btn-default:last-child {
        width: 100px !important;
        min-width: 100px !important;

        height: 42px;

        font-size: 11px !important;
    }
}








 /* Desktop / System view - Hide */
@media (min-width: 992px) {
    .desktop-hide-logo {
        display: none !important;
    }
}

/* Mobile - Show */
@media (max-width: 991px) {
    .desktop-hide-logo {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .mobile-hide-logo {
        display: none !important;
    }
}