﻿@media (max-width: 1300px) {
    #left-panel,
    #right-panel {
        display: none;
    }
}

@media (max-width: 920px) {
    #header-logo {
        height: 88px;
    }

    nav {
        position: unset;
        top: unset;
        right: unset;
        margin-left: auto;
        margin-right: auto;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thumb-container {
        grid-template-columns: 233px 233px;
    }
}

@media (max-width: 570px) {
    #header-title {
        width: calc(100% - 125px);
    }

    nav ul {
        flex-direction: column;
        padding-left: 0px;
    }

    .menu-item {
        width: 100%;
    }

    .thumb-container {
        grid-template-columns: 100%;
        width: 100%;
    }

    .thumb-link {
        width: 90%;
    }

    .thumb-img {
        width: 100%;
        max-width: unset;
        max-height: unset;
    }
}

@media (max-width: 480px) {
    #header-logo{ 
        display: block;
        height: unset;
        width: 17%;
        margin-left: auto;
        margin-right: auto;
    }

    #header-title {
        width: calc(100% - 30px);
    }
}