/*** v MainFrameOfficial ***/
body {
    background-color: rgb(243, 232, 217);
    width: 100%;
}

.nav_section {
    height: 52px;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}

    .nav_section img {
        width: auto;
        height: auto;
        max-height: 50px;
        cursor: pointer;
        vertical-align: middle;
    }

.nav_hamberger_btn {
    height: 30px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-right: 15px;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ffffff;
    background-color: #030303;
    cursor: pointer;
}

.hamberger {
    margin: 0px;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 6px;
}

.side_nav_section {
    height: 100vh;
    background: #ebcda5;
    padding: 70px 15px 15px;
    overflow-y: auto;
    z-index: 98;
}

    .side_nav_section::-webkit-scrollbar {
        width: 7px;
    }

    .side_nav_section::-webkit-scrollbar-track {
        background-color: #f3dbbb;
    }

    .side_nav_section::-webkit-scrollbar-thumb {
        border-radius: 25px;
        background-color: #e0ae6b;
    }

        .side_nav_section::-webkit-scrollbar-thumb:hover {
            background-color: #cf9d5a;
        }

    .side_nav_section::-webkit-scrollbar-button {
        display: none;
    }

.side_nav_layer_second {
    display: none;
    padding-left: 15px;
}

.side_nav_outer_item_chk {
    display: none;
}

    .side_nav_outer_item_chk:checked + .side_nav_layer_second {
        display: block;
    }

.side_nav_outer_item {
    position: relative;
    display: block;
    cursor: pointer;
}

    .side_nav_outer_item span {
        float: right;
    }

.side_nav_func_item {
    list-style-type: none;
    width: 100%;
    margin-bottom: 0px;
}

    .side_nav_func_item > label, .side_nav_func_item > a {
        display: block;
        text-decoration: none;
        color: black;
    }

        .side_nav_func_item > label:hover, .side_nav_func_item > a:hover {
            background-color: #dbb17b;
        }

        .side_nav_func_item.active > label, .side_nav_func_item.active > a {
            color: #ffffff;
            font-weight: bold;
            background-color: #a98049;
        }

.container {
    padding: 70px 15px;
}

.main_container{
    margin: 0 auto;
}

.header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

    .header_text {
        color: #b6843d;
        text-align: center;
        font-weight: bold;
        letter-spacing: 6px;
        padding-left: 6px;
    }
/*** ^ MainFrameOfficial ***/

@media (max-width: 767px) {
    /*** v MainFrameOfficial ***/
    .nav_section img {
        max-height: 40px;
    }

    .side_nav_section {
        visibility: hidden;
        height: 0%;
        width: 100%;
        position: fixed;
        top: 52px;
        left: 0px;
        height: 100vh;
        width: 100%;
        background: #ebcda5;
        padding: 15px;
        overflow-y: auto;
        transition: height 0.3s ease-in-out;
    }

        .side_nav_section.clk_active {
            visibility: visible;
            height: calc(100% - 52px);
        }

    .side_nav_func_item {
        font-size: 16px;
    }

        .side_nav_func_item > label, .side_nav_func_item > a {
            padding: 8px 10px;
            border-bottom: 1px solid #bf9c6c;
        }

    .container {
        padding: 70px 15px;
    }

    .main_container {
        width: 100%;
    }

    .header > svg {
        transform: scale(0.5);
    }

    .header_text {
        font-size: 18px;
        flex-basis: 180px;
    }
    /*** ^ MainFrameOfficial ***/
}

@media (min-width: 768px) {
    /*** v MainFrameOfficial ***/
    .nav_hamberger_btn {
        display: none;
    }

    .side_nav_section {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 250px;
        padding: 70px 15px 70px;
    }

    .side_nav_func_item {
        font-size: 20px;
    }

        .side_nav_func_item > label, .side_nav_func_item > a {
            padding: 15px 10px;
            border-bottom: 1px solid #bf9c6c;
        }

    .container {
        padding-left: 275px;
        padding-right: 25px;
    }

    .main_container {
        width: 100%;
    }

    .header > svg {
        transform: scale(0.6);
    }
    .header_text {
        font-size: 24px;
        flex-basis: 200px;
    }
    /*** ^ MainFrameOfficial ***/

}

@media (min-width: 900px) {
    .header > svg {
        transform: scale(0.7);
    }
    .header_text {
        font-size: 26px;
        flex-basis: 250px;
    }
}

@media (min-width: 1200px) {
    .header_text {
        font-size: 26px;
        flex-basis: 300px;
    }

    .main_container {
        width: 900px;
    }

}

@media (min-width: 1500px) {
    .header_text {
        font-size: 26px;
        flex-basis: 350px;
    }
}
