@font-face {
    src: url('../font/FuturaPTBold.otf');
    font-family: 'Futura';
    font-display: swap;
    font-weight: 700;
}
@font-face {
    src: url('../font/FuturaPTBook.otf');
    font-family: 'Futura';
    font-display: swap;
    font-weight: 400;
}
@font-face {
    src: url('../font/FuturaPTCondBold.otf');
    font-family: 'FuturaCond';
    font-display: swap;
    font-weight: 700;
}
@font-face {
    src: url('../font/FuturaPTCondBook.otf');
    font-family: 'FuturaCond';
    font-display: swap;
    font-weight: 400;
}
@font-face {
    src: url('../font/FuturaPTLight.otf');
    font-family: 'Futura';
    font-display: swap;
    font-weight: 300;
}
@font-face {
    src: url('../font/FuturaPTMedium.otf');
    font-family: 'Futura';
    font-display: swap;
    font-weight: 500;
}

a, .btn, .form-control, button {
    transition: 0.2s all;
    box-shadow: none;
    text-shadow: none;
    outline: none !important;
    border-radius: 0px;
}

a {
    color: #215EAE;
    text-decoration: none;
}
a:hover {
    color: #666666;
}

.btn.btn-default {
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
}
.btn.btn-default:hover {
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}

.btn.btn-primary {
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}
.btn.btn-primary:hover {
    background: #6F7075;
    border: 1px solid #6F7075;
    color: #ffffff;
}

.btn.btn-success {
    background: #215EAE;215EAE
    border: 1px solid #215EAE;
    color: #ffffff;
}
.btn.btn-success:hover {
    background: #bf5f5b;
    border: 1px solid #bf5f5b;
    color: #ffffff;
}



body {
    font-family: 'Futura', 'Arial', 'Tahoma', sans-serif;
    background: #ffffff;
}

.breadcrumb {
    border: none;
    margin-bottom: 0px;
}

.pagination .page-item.active .page-link {
    background-color: #215EAE;
    border-color: #215EAE;
}
.pagination .page-link {
    color: #215EAE;
}

header {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.header-logo {
    position: relative;
    display: inline-block;
}
.header-logo img {
    max-height: 150px;
}

/* =========================================================
   FULL HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 50;
    width: 100%;
    font-family: "Open Sans", Arial, sans-serif;
    background: #ffffff;
}

/* TOP CONTACT BAR
--------------------------------------------------------- */

.site-header .header-top {
    padding: 9px 0;
    border-bottom: 1px solid #e5eaf0;
    background: #f7f9fc;
}

.header-top-inner {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header-icon-pair {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-icon-pair .icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(40, 114, 250, 0.1);
}

.header-icon-pair .icon svg {
    display: block;
    fill: #2872fa;
}

.header-icon-pair .text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    font-size: 13px;
    line-height: 18px;
}

.header-icon-pair .text b {
    color: #68727d;
    font-size: 12px;
    font-weight: 500;
}

.header-icon-pair .text a {
    color: #2872fa;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-icon-pair .text a:hover {
    color: #1559ed;
}

/* LOGO AND LANGUAGES
--------------------------------------------------------- */

.site-header .header-main {
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(30, 45, 58, 0.08);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 88px;
    padding: 12px 0;
}

.header-main-inner .header-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.header-main-inner .header-logo img {
    display: block;
    width: 100px;
    max-width: 100%;
    height: auto;
}

.header-language {
    flex: 0 0 auto;
    margin-left: auto;
}

.header-language .language {
    margin: 0;
}

.header-language #form-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
}

/* All languages remain visible as individual buttons */

.header-language #form-language .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid #d8dee5;
    border-radius: 5px;
    background: #ffffff;
    color: #323b43;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    box-shadow: none;
    cursor: pointer;
    transition:
            border-color 0.2s ease,
            background-color 0.2s ease,
            color 0.2s ease;
}

.header-language #form-language .btn img {
    display: block;
    flex: 0 0 auto;
    width: 21px;
    height: auto;
    margin: 0;
    vertical-align: middle !important;
}

.header-language #form-language button.btn:hover {
    border-color: #2872fa;
    background: #f3f7ff;
    color: #2872fa;
}

/* Selected language */

.header-language #form-language .btn-success {
    border-color: #2872fa;
    background: #2872fa;
    color: #ffffff;
    cursor: default;
}

.header-language #form-language .btn-success:hover {
    border-color: #2872fa;
    background: #2872fa;
    color: #ffffff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
    .header-top-inner {
        gap: 24px;
    }

    .header-main-inner {
        min-height: 76px;
    }

    .header-main-inner .header-logo img {
        width: 115px;
    }

    .header-language #form-language {
        gap: 5px;
    }

    .header-language #form-language .btn {
        padding: 6px 9px;
        font-size: 13px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
    .site-header .header-top {
        padding: 7px 0;
    }

    .header-top-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .header-icon-pair .icon {
        width: 28px;
        height: 28px;
        margin-right: 7px;
    }

    .header-icon-pair .icon svg {
        width: 13px;
        height: 13px;
    }

    .header-icon-pair .text b {
        display: none;
    }

    .header-icon-pair .text a {
        display: block;
        overflow: hidden;
        color: #2872fa;
        font-size: 12px;
        line-height: 18px;
        font-weight: 600;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .header-main-inner {
        min-height: 64px;
        gap: 8px;
        padding: 8px 0;
    }

    .header-main-inner .header-logo img {
        width: 80px;
    }

    .header-language #form-language {
        gap: 4px;
    }

    /*
     * Four visible flag buttons.
     * The text is hidden only on mobile to keep them on one line.
     */
    .header-language #form-language .btn {
        width: 33px;
        min-width: 33px;
        height: 33px;
        min-height: 33px;
        padding: 5px;
        gap: 0;
        border-radius: 4px;
        font-size: 0;
        line-height: 1;
    }

    .header-language #form-language .btn img {
        width: 20px;
        max-width: 20px;
    }
}

/* VERY SMALL PHONES
--------------------------------------------------------- */

@media (max-width: 380px) {
    .header-top-inner {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .header-icon-pair .icon {
        width: 25px;
        height: 25px;
    }

    .header-main-inner .header-logo img {
        width: 82px;
    }

    .header-language #form-language .btn {
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        padding: 4px;
    }

    .header-language #form-language .btn img {
        width: 18px;
    }
}
