@charset "utf-8";

/* DIN Next font faces */
@font-face {
    font-family: 'DIN Next';
    font-weight: 900;
    src: url('../fonts/din-next/din-next-black.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/din-next/din-next-black-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 700;
    src: url('../fonts/din-next/din-next-bold.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/din-next/din-next-bold-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 800;
    src: url('../fonts/din-next/din-next-heavy.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 800;
    font-style: italic;
    src: url('../fonts/din-next/din-next-heavy-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 600;
    src: url('../fonts/din-next/din-next-medium.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 600;
    font-style: italic;
    src: url('../fonts/din-next/din-next-medium-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 400;
    src: url('../fonts/din-next/din-next-regular.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/din-next/din-next-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 300;
    src: url('../fonts/din-next/din-next-light.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/din-next/din-next-light-italic.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 200;
    src: url('../fonts/din-next/din-next-ultra-light.otf') format('opentype');
}

@font-face {
    font-family: 'DIN Next';
    font-weight: 200;
    font-style: italic;
    src: url('../fonts/din-next/din-next-ultra-light-italic.otf')
        format('opentype');
}

/* CSS Document */

body {
    font-family: 'DIN Next', Tahoma, Geneva, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
}

.entity {
    font-size: 1.3em;
    font-weight: bold;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.card {
    background: #fff;
    border: 1.5px solid #e3e3e3;
    border-radius: 10px;
    width: 180px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.card img {
    height: 48px !important;
    margin-bottom: auto;
}

.card h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #222;
}

.card a {
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    text-decoration: none;
}

.card a > * {
    width: fit-content;
    text-align: start;
}

.card p {
    font-size: 0.98em;
    color: #888;
    margin: 0;
}

.header,
.footer {
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5a2318;
    color: #fff;
}

.header-content,
.footer-content {
    width: 100%;
    max-width: 1200px;
    text-align: left;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
}

.footer span {
    font-size: 16px;
    font-weight: 300;
    color: #eeeeee;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-text {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
}

.btn {
    border: none;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'DIN Next', Tahoma, Geneva, sans-serif;
}

.white-btn {
    background-color: #ffffff;
    color: #000000;
    text-decoration: underline;
}

.yellow-btn {
    background-color: #ffc72c;
    color: #333333;
}

.page-title {
    font-weight: 400;
    font-size: 28px;
    margin: 0;
}

.page-subtitle {
    font-size: 16px;
    color: #8c8c8c;
    width: 100%;
    text-align: start;
    margin: 0;
}

.title-block {
    margin: 24px 0;
}

.partner-header {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.banner-section {
    margin-bottom: 32px;
}

.banner-desktop,
.banner-mobile {
    width: 100%;
    display: block;
}

.banner-desktop {
    display: block;
}
.banner-mobile {
    display: none;
}

@media (max-width: 768px) {
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: block;
    }
}

@media (max-width: 900px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90vw;
    }
}
