﻿:root {
    --color-green: #2E7D32;
}

@view-transition {
    navigation: auto;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url('../fonts/oswald-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    font-weight: normal;
}

html {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #111411;
}

body {
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 img {
    vertical-align: middle;
    margin-right: 10px;
}

hr {
    color: transparent;
    border: none;
    height: 1px;
    background-color: #E4E4E4;
    margin: 60px 0;
}

.head-small {
    font-size: 10px;
    font-weight: 400;
    color: #364035;
    margin-bottom: 10px;
}

header .subhead {
    font-family: Oswald, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 0;
}

button {
    cursor: pointer;
}

.button-primary {
    display: inline-block;
    line-height: 54px;
    height: 54px;
    background-color: var(--color-green);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    padding-left: 35px;
    padding-right: 35px;
    text-decoration: none;

    &:hover {
        background-color: #49A942;
    }

}

.button-small {
    font-size: 16px;
    font-weight: 500;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 40px;
    border: 1px solid #111411;
}

.button-close {
    border-color: var(--color-green);
    background-color: var(--color-green);
    color: #fff;

    &:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url('../images/icon-close.svg');
        background-size: cover;
        background-position: center;
        margin-right: 8px;
    }
}

.icon-arrow {
    content: '';
    width: 12px;
    height: 20px;
    background-image: url('../images/icon-arrow.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}

strong {
    font-weight: 600;
}

strong.semi {
    font-weight: 600;
}

p {
    margin-bottom: 34px;
    line-height: 1.6em;
}

.paragraph-strong {
    font-weight: 600;
}

ul.arrow-list {
    list-style: none;
    padding: 0px 10px 5px;

    li {
        position: relative;
        margin-bottom: 20px;
        padding-left: 40px;
        line-height: 1.6em;

        &:before {
            content: '▶';
            position: absolute;
            left: 0;
            top: -2px;
            color: var(--color-green);
            margin-right: 30px;
        }
    }
}

ul.bordered-list {
    border-top: 1px solid #111411;
    border-bottom: 1px solid #111411;
    padding: 25px 10px 5px;
    margin: 20px 0;
}

.tab-bar-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin-bottom: 40px;

    a {
        font-size: 16px;
        color: #111411;

        &.active {
            color: var(--color-green);
            font-weight: 700;
        }
    }
}

.tab-bar-content .tab-bar-item {
    display: none;

    &.active {
        display: grid;
    }
}

.text-center {
    text-align: center;
}

a.text-link {
    color: var(--color-green);
}

.flex-container {
    display: flex;
    gap: 30px;
}

.flex-gap-big {
    gap: 64px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-direction-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

ul.flex-container {
    list-style: none;
    padding: 0 0 40px;
}

.grid-container {
    display: grid;
    gap: 30px;
    grid-template-columns: 100%;
}

.grid-2-col {
    grid-template-columns: auto auto;
}

.grid-full-row {
    grid-column: 1 / -1;
}

.grid-full-col {
    grid-row: 1 / -1;
}


.no-col-gap {
    column-gap: 0;
}

.no-row-gap {
    row-gap: 0 !important;
}

.content-container-white {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 16px 24px 0 rgba(0, 0, 0, .12)
}

.content-container-grey {
    padding: 20px;
    background-color: #F8F8F8;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
}

.content-container-full-width {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.container {
    width: 100%;
    max-width: 1274px;
    padding: 0 10px 60px;
    margin: 0 auto;
}

.container-short {
    max-width: 1027px;
}

.container-large {
    max-width: 1520px;
}

.container-biggest {
    max-width: 1840px;
}

.no-vertical-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.no-padding-bot {
    padding-bottom: 0 !important;
}

#page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111411;
    padding: 0;
    z-index: 2;
}

#header-logo {
    display: inline-block;
    height: 32px;
    padding-left: 10px;

    img {
        height: 100%;
    }
}

#navbar {
    height: 65px;
}

#menu-toggle {
    width: 90px;
    height: 65px;
    margin: 0;
    padding: 0;
    top: 0px;
    right: -10px;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
    overflow: hidden;
    z-index: 3;

    * {
        transition: .25s ease-in-out;
        box-sizing: border-box;
    }

    &:focus {
        outline: none;
    }
}


#hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 4px;
    left: 15px;

    span {
        display: block;
        background-color: #ffffff;
        border-radius: 2px;
        width: 29px;
        height: 1px;
        position: relative;
        top: 12px;
        left: 12px;
        margin: 7px 0;

        &:nth-child(1) {
            transition-delay: .5s;
        }

        &:nth-child(2) {
            transition-delay: .625s;
        }

        &:nth-child(3) {
            transition-delay: .75s;
        }
    }
}

#cross {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 8px;
    left: 5px;
    transform: rotate(45deg);

    span {
        display: block;
        background: #fff;
        border-radius: 2px;

        &:nth-child(1) {
            height: 0%;
            width: 1px;
            position: absolute;
            top: 19px;
            left: 33px;
            transition-delay: 0s;
        }

        &:nth-child(2) {
            width: 0%;
            height: 1px;
            position: absolute;
            left: 20px;
            top: 33px;
            transition-delay: .25s;
        }
    }
}

#menu-toggle.open {
    #hamburger span {
        width: 0%;

        &:nth-child(1) {
            transition-delay: 0s;
        }

        &:nth-child(2) {
            transition-delay: .125s;
        }

        &:nth-child(3) {
            transition-delay: .25s;
        }
    }

    #cross span {
        &:nth-child(1) {
            height: 29px;
            transition-delay: .625s;
        }

        &:nth-child(2) {
            width: 29px;
            transition-delay: .375s;
        }
    }
}

#header-nav {
    position: fixed;
    left: 100%;
    top: 50px;
    bottom: 0;
    margin-left: 0;
    box-sizing: border-box;
    transition: margin-left 0.4s ease;
    padding-bottom: 10px;
    padding-top: 40px;
    width: 350px;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #111411;

    li {
        list-style: none;
        margin-left: 100%;
        width: 100%;
        text-align: center;

        a {
            font-size: 0.8rem;
            display: inline-block;
            padding: 20px;
            text-decoration: none;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
            color: #FCFCFC;

            &.active {
                color: #2C9B32;
                font-weight: 700;
            }
        }

        &:nth-child(1) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.6s;
        }

        &:nth-child(2) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.55s;
        }

        &:nth-child(3) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.5s;
        }

        &:nth-child(4) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.45s;
        }

        &:nth-child(5) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.4s;
        }

        &:nth-child(6) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.35s;
        }

        &:nth-child(7) {
            transition: margin-left 0.4s ease;
            transition-delay: 0.3s;
        }
    }

    &.active {
        margin-left: -350px;

        li {
            margin-left: 0;

            &:nth-child(1) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.15s;
            }

            &:nth-child(2) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.2s;
            }

            &:nth-child(3) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.25s;
            }

            &:nth-child(4) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.3s;
            }

            &:nth-child(5) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.35s;
            }

            &:nth-child(6) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.4s;
            }

            &:nth-child(7) {
                transition: margin-left 0.4s ease;
                transition-delay: 0.45s;
            }
        }
    }
}

main {
    margin-top: 125px;
}

.section-header.flex-container {
    gap: 4px;
    margin-bottom: 40px;
}

#index-intro .content-container-white {
    max-width: 240px;
    margin: 0 auto;
}

#index-sponsors-partners {
    padding-top: 20px;
    padding-bottom: 20px;
}

#index-sponsors-partners .container {
    padding-bottom: 0;
}

#index-sponsors-partners .flex-container {
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

#index-sponsors-partners .flex-container:last-child {
    padding-bottom: 0;
}

#survey-intro {
    margin-bottom: 40px;
}

#survey-intro .content-container-white {
    padding: 10px !important;
    max-width: 220px;
    margin: -10px auto 0;
}

.vote-items-container {
    gap: 32px 24px !important;
    margin-bottom: 50px;
}

.vote-item {
    text-align: center;

    .vote-item-border {
        padding: 2px;
        background-color: #F8F8F8;
        border-radius: 10px;
        transition: background-color .2s ease;
    }

    label {
        position: relative;
        width: 100%;
        background-color: #FFFFFF;
        border: 1px solid #E4E4E4;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        transition: all .2s ease;
        cursor: pointer;

        img {
            max-width: 70%;
            max-height: 40%;
            transition: transform .2s ease;
            transform: scale(.9);
            will-change: transform;
            backface-visibility: hidden;
        }

        &:hover img {
            transform: scale(1);
            transition: transform .2s ease
        }

        &:before {
            content: '';
            display: inline-block;
            position: absolute;
            right: 8px;
            top: 8px;
            width: 24px;
            height: 24px;
            background-image: url('../images/icon-vote-check.svg');
            opacity: 0;
            transition: all .2s ease;
        }
    }

    input[type="radio"] {
        appearance: none;
        display: block;
        height: 0;

        &:checked + .vote-item-border {
            background-color: #00A1FF;
            transition: background-color .2s ease;

            label {
                transition: all .2s ease;
                border-color: #00A1FF;

                img {
                    transform: scale(1);
                }

                &:before {
                    opacity: 1;
                    transition: all .2s ease;
                }
            }
        }
    }

    button {
        background-color: transparent;
        border: none;
        color: var(--color-green);
        font-size: 12px;
        text-decoration: underline;
        margin-top: 12px;
    }
}

.survey-form .form-container {
    max-width: 700px;
    margin: 0 auto;
}

.survey-form #errors ul {
    padding-left: 20px;
    margin-bottom: 30px;

    li {
        font-size: 12px;
        color: darkred;
        margin-bottom: 5px;
    }
}

#survey-newsletter img {
    display: none;
}

ul.logo-list {
    padding-bottom: 0;
}

.portrait-container {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;

    li {
        width: 100%;
        min-width: 207px;
        max-width: 230px;
        flex: 1 1 100%;
    }


    figure {
        padding: 8px;
        position: relative;

        img {
            display: block;
            width: 100%;
            border-radius: 8px;
        }

        figcaption {
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            bottom: 8px;
            left: 8px;
            right: 8px;
            padding: 6px;
            height: 40%;
            font-size: 14px;
            font-family: 'Oswald', sans-serif;
            text-align: center;
            background: linear-gradient(179deg, rgba(248, 248, 248, 0.00) 0.47%, rgba(248, 248, 248, 0.80) 69.53%, rgba(248, 248, 248, 1) 100%);

            strong {
                font-family: 'Inter', sans-serif;
                font-size: 18px;
                font-weight: 600;
                display: block;
            }
        }
    }
}

.partner-item {
    h2 {
        margin-bottom: 5px;
    }

    img {
        width: 100px;
        display: block;
        margin: 30px auto 0;
    }

    p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        margin-bottom: 0;
    }

    button {
        background-color: transparent;
        border: none;
        padding: 0;
        color: var(--color-green);
        margin-top: 5px;
        cursor: pointer;
        text-decoration: underline;
    }
}

.partner-popovers {
    img {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    p {
        text-align: left;
    }

    .modal-content {
        max-height: calc(100vh - 95px);

        ul {
            padding-left: 20px;

            li {
                margin-bottom: 10px;

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }

    button {
        cursor: pointer;
    }
}

.winners-item {
    margin-bottom: 40px;
}

.winners-item h2 {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    padding-left: 42px;

    &:before {
        display: inline-block;
        content: url('../images/logo-zertifikateaward-austria-bild.svg');
        width: 30px;
        height: auto;
        margin-right: 12px;
        vertical-align: middle;
        position: absolute;
        left: 0;
        top: 1px;
    }
}

.winners-item ol {
    background-color: #F8F8F8;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    list-style: none;
    overflow: hidden;

    li {
        counter-increment: section;
        height: 67px;
        display: flex;
        align-items: center;
        gap: 0 22px;
        border-bottom: 1px solid #E4E4E4;

        &:nth-child(1):before {
            background-color: #DBAF0080;
            color: #CDAB00;
        }

        &:nth-child(2):before {
            background-color: #DFDFDF;
            color: #9D9D9D;
        }

        &:nth-child(3):before {
            background-color: #D08B4F99;
            color: #BB8F53;
        }

        &:before {
            display: flex;
            align-items: center;
            justify-items: center;
            width: 66px;
            height: 100%;
            content: counter(section);
            font-size: 28px;
            font-weight: 600;
            text-align: center;
            padding-left: 26px;
            box-sizing: border-box;
            border-right: 1px solid #E4E4E4;
        }

        &:last-child {
            border-bottom: none;
        }
    }
}

form {
    .field {
        gap: 0;
    }

    input[type="checkbox"] {
        appearance: none;
        display: block;
        height: 0;

        &:checked + label:before {
            border-color: #49A942;
            background-color: #49A94238
        }

        &:checked + label:after {
            content: '';
            display: inline-block;
            position: absolute;
            left: 0;
            top: -4px;
            width: 24px;
            height: 24px;
            background-image: url('../images/icon-checkbox-check.svg');
            background-size: 13px auto;
            background-position: center;
            background-repeat: no-repeat;
        }

    }

    .checkbox-label {
        font-size: 14px;
        line-height: 1.6em;
        display: block;
        position: relative;
        padding-left: 36px;

        &:before {
            content: '';
            display: inline-block;
            position: absolute;
            left: 0;
            top: -4px;
            width: 24px;
            height: 24px;
            background-color: #fff;
            border: 1px solid #E4E4E4;
            border-radius: 4px;
        }
    }

    .error-message {
        font-size: 12px;
        color: darkred;
        margin-bottom: 5px;
    }

    input[type="email"] {
        border: 1px solid #E4E4E4;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        padding: 12px 24px;
        width: 100%;
        height: 54px;
        box-sizing: border-box;
    }

    button[type="submit"] {
        height: 54px;
        width: 100%;
        background-color: var(--color-green);
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        border: none;
        border-radius: 8px;
        margin-top: 10px;

        &:hover{
            background-color:#49A942;
        }
    }
}

.manuka input, .manuka label {
    visibility: hidden;
    font-size: 0.01px;
}

.loading-container {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 999999999;
}

.loading-info {
    border: 16px solid var(--color-green);
    border-radius: 50%;
    border-top: 16px solid #FAF5D7;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.modal-container {
    position: fixed;
    z-index: 10000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #1D1D1BCC;
    align-content: center;
    padding: 20px;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.modal-header {
    border-bottom: 0;
}

.modal-content {
    padding: 30px 20px;
    background-color: #FCFCFC;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .4);
    border-radius: 16px;
    width: auto;
    max-width: 640px;
    overflow-y: auto;
    max-height: 100%;
    display: block;
    z-index: 10000001;
}

#page-footer {
    font-size: 14px;
    margin-top: 80px;
    text-align: center;

    .container {
        padding-bottom: 0;
    }

    ul {
        display: flex;
        list-style: none;
        margin-top: 30px;
        gap: 40px;
        justify-content: center;

        li {
            margin-bottom: 10px;
        }
    }

    a {
        color: inherit;
        text-decoration: none;
    }
}

@media (min-width: 468px) {
    .grid-sm-2-col {
        grid-template-columns:auto auto;
    }

    #survey-newsletter h2 {
        margin-bottom: 36px;
    }

    #survey-newsletter img {
        display: block;
    }

    .partner-item {
        display: grid;
        grid-template-columns: 100px auto;
        gap: 30px;
        min-width: 0;

        & > div {
            order: 2;
        }

        img {
            margin-top: 0;
            align-self: center;
        }
    }
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    .grid-md-4-col {
        grid-template-columns: auto auto auto auto;
    }

    ul.bordered-list {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    ul.logo-list {
        gap: 45px 65px;
    }

    .content-container-grey {
        padding: 40px;
    }

    .container {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 100px;
    }

    .grid-container {
        gap: 40px;
    }

    .grid-md-2-col {
        grid-template-columns: auto auto;
    }

    .grid-md-full-col {
        grid-row: 1 / -1;
    }

    .grid-md-first-col {
        grid-column: 1;
    }

    main {
        margin-top: 140px;
        min-height: calc(100vh - 290px);
    }

    #index-intro {
        position: relative;
        padding-right: 320px;
    }

    #index-intro .content-container-white {
        position: absolute;
        right: 40px;
        bottom: 90px;
        width: 260px;
        max-width: none;
    }

    #index-sponsors-partners .flex-container {
        justify-content: space-between;
    }

    #survey-intro {
        margin-bottom: 60px;

        & > img {
            order: 1;
        }

        & > div {
            order: 2;
        }

        .content-container-white {
            margin: 0px auto 0;
        }
    }

    .portrait-container {
        gap: 24px;
    }

    form {
        .field.input-text {
            position: relative;

            input[type="email"] {
                padding-right: 265px;
            }

            button[type="submit"] {
                position: absolute;
                right: 0;
                bottom: 0;
                width: 245px;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
                margin-top: 0;
            }
        }
    }

    .modal-content {
        padding: 40px 30px;
    }

    #page-footer .container {
        padding-bottom: 0;
        display: flex;
        justify-content: space-between;

        ul {
            margin-top: 0;
        }
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 2.667rem;
    }

    .grid-lg-2-col {
        grid-template-columns:auto auto;
    }


    .grid-lg-6-col {
        grid-template-columns: auto auto auto auto auto auto;
    }

    #page-header {
        padding-left: 240px;
    }

    #header-logo {
        position: absolute;
        left: 0;
        top: 6px;
    }

    #navbar {
        flex: 1 1 auto;
        padding: 0 50px;
        height: 45px;
        max-width: 1300px;
    }

    #menu-toggle {
        display: none;
    }

    #header-nav {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        display: flex;
        justify-content: space-between;
        width: auto;
        height: 100%;
        padding: 0;
        margin-left: 0 !important;
        transition: none !important;


        li {
            width: auto;
            margin-left: 0;
            transition: none !important;

            a {
                display: flex;
                align-items: center;
                height: 100%;
                padding: 0;
            }
        }
    }

    main {
        margin-top: 161px;
    }

    #index-intro {
        padding-right: 410px;
    }

    #index-intro .content-container-white {
        width: 330px;
    }

    #survey-intro .content-container-white {
        max-width: none;
    }

    #survey-newsletter .grid-container {
        grid-template-rows:subgrid;
        grid-row: span 2;
    }

    .portrait-container {
        gap: 40px;

        li {
            max-width: 206px;
            min-width: 190px;
        }
    }


    #page-footer .container ul {
        gap: 80px;
    }
}

@media (min-width: 1300px) {
    .grid-xl-3-col {
        grid-template-columns: auto auto auto;
    }

    .partner-item {
        display: grid;
        grid-template-columns: 170px auto;
    }
}

@media (min-width: 1700px) {
    #page-header {
        padding-left: 0;
    }

    #navbar {
        margin-left: auto;
        margin-right: auto;
    }
}