@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

#wrapper {
    padding-bottom: 50px;
}

body {
    font: 300 2em / 1.5em 'Roboto Condensed', serif;
}

* {
    font-family: "Roboto Condensed", sans-serif !important;
}

.header {
    height: 100px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

img {
    margin: 0;
}

.header__container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.site-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    letter-spacing: -1px;
    display: inline-block;
    line-height: 1em;
    font-size: 3.5em;
    text-decoration: none;
    color: #212226;
    padding: 115px 0;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.ui.row.grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__logo {
    display: block;
    width: 240px;
    height: 24px;
    background-size: contain;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.header__menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 45px;
    font-weight: 300;
}

.header__menu li a {
    font-family: "Roboto Condensed", sans-serif;
    text-size-adjust: 100%;
    font-size: 15.2px;
    font-weight: 300;
    letter-spacing: 2.28px;
    line-height: 30.4px;
    text-align: right;
    text-transform: uppercase;
}

.header__menu li.active a {
    font-weight: 300;
    color: #309dd8;
}

.header__menu li a:hover {
    color: #309dd8;
}

#main-header {
    display: none !important;
}

.post-meta {
    padding-bottom: 30px;
}

.post-title {
    font-weight: 300 !important;
    margin-bottom: 0.5em !important;
}

#post-index .post.featured {
    background: #f7f9fa;
}

#post-index .post:after {
    content: '';
    position: absolute;
    background: #d8dfe5;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
}

.site-footer {
    padding: 40px;
    background: #f8f8f8;
    color: #333;
    text-align: center;
}

.footer-left > p {
    margin: 0;
    font-size: 15.2px;
}

.footer-inner {
    max-width: 1420px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #309dd8;
    outline: none;
    text-decoration: none;
    font-weight: 300;
    font-size: 17.2px;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-social a {
    margin-left: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 243px;
    width: 100vw;
}

.footer-col a {
    width: 100%;
}

.footer-menu {
    display: flex;
    text-align: left;
}

.burger-icon {
    display: none;
}

.bar1, .bar2, .bar3 {
    width: 23px;
    height: 3px;
    background-color: #a3a3a3;
    margin: 4px 0;
    transition: 0.4s;
}

.bar2 {
    height: 4px;
}

.change .bar1 {
    transform: translate(0, 7.5px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -7.5px) rotate(45deg);
}

@media (max-width: 1500px) {
    .header__menu li a,
    .footer-left p {
        font-size: 12.16px;
    }

    .header__menu {
        gap: 35px;
    }

    .header__logo {
        max-width: 190px;
        height: 21px;
    }

    .header__logo > img {
        height: 100%;
    }

    .footer-col {
        max-width: 182px;
        width: 100vw;
    }

    .footer-inner {
        justify-content: flex-start;
    }

    .footer-left {
        max-width: 272px;
        width: 100%;
        text-align: left;
    }

    .footer-col a {
        font-size: 14px;
    }
}

@media (max-width: 1150px){
    .footer-left {
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .footer-menu {
        display: none;
    }
}

@media (max-width: 1000px) {
    .header__logo {
        max-width: 168px;
    }

    .mobile-active {
        font-weight: 700 !important;
        text-decoration: underline;
    }

    .header__menu {
        display: none;
    }

    .burger-icon {
        display: block;
        cursor: pointer;
    }

    .burger-menu {
        display: block;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s ease, opacity 0.5s ease;
        position: absolute;
        top: 100%;
        width: 100%;
    }

    .burger-menu.active {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
        position: absolute;
        top: 100%;
        display: block;
        width: 100%;
        box-shadow: 0 10px 13px -13px rgba(0,0,0,0.45);
        transform-origin: top;
        transition: transform .5s ease, opacity .5s ease;
    }

    .header {
        position: relative;
        height: 70px;
    }

    .burger-menu-list {
        background: #fff;
        padding: 18px 20px;
        list-style-type: none;
        margin: 0;
    }

    .burger-menu-list-item {
        padding: 6px 0;
        color: #309dd8;
        font-weight: 300 !important;
        letter-spacing: 0;
        line-height: 39.2px;
        margin-left: 0;
        text-transform: none;
    }

    .burger-menu-list-item-small {
        padding: 6px 0;
    }

    .burger-menu-list-item > a,
    .burger-menu-list-item-small > a {
        font-weight: 300 !important;
        font-size: 19.6px;
        display: block;

        &:hover {
            color: #309dd8;
            text-decoration: underline;
        }
    }

    .burger-menu-list-item-small > a {
        font-weight: 300 !important;
        font-size: 15.2px;
        color: #309dd8;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: rgb(255, 255, 255) !important;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;

}

.cookie-banner .cookie-inner {
    max-width: 1460px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-banner .cookie-text {
    flex: 0 1 80%;
    max-width: 80%;
    font-size: 11pt;
    line-height: 1.4;
}

.cookie-link {
    text-decoration: underline;
    color: #b9b6b6 !important;
}

.cookie-btn {
    background: transparent !important;
    border: 2px solid #fff !important;
    border-radius: 1.571428rem;
    color: white !important;
    cursor: pointer;
    display: inline-block;
    font-family: Roboto Condensed, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.166666;
    margin: 0;
    min-width: 125px;
    outline: none;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .4s ease;
    padding: 6px 12px;

    &:hover {
        background: #3b8bcb !important;
    }
}

.cookie-link:hover {
    color: white !important;
}

@media (max-width: 768px) {
    .header__menu {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}