body{
    overflow:hidden;
}
.wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
}
aside#sidebar {
    position: relative;
    background-color: #202020;
    width: 290px;
    padding: 20px;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

    aside#sidebar.collapsed {
        width: 0;
        padding: 20px 0;
    }
    aside#sidebar .logo-blk {
        margin-bottom: 20px;
    }
aside#sidebar ul {
    padding: 0;
    margin: 0;
}
    aside#sidebar ul li {
        display: block;
        margin-bottom: 8px;
    }
        aside#sidebar ul li a {
            font-size: 15px;
            text-decoration: none;
            color: #c5c5c5;
            font-weight: 500;
            padding: 5px 8px;
            display: block;
            border-radius: 4px;
            white-space: nowrap;
        }
            aside#sidebar ul li a:hover {
                background-color: #1B1B1B;
                color:#fff;
            }
    aside#sidebar ul li a span {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-right: 5px;
    }
        aside#sidebar ul li a span svg {
            width: 20px;
            height: 20px;
        }
    aside#sidebar ul li a span svg path {
        fill: #c5c5c5;
    }
            aside#sidebar ul li a:hover span svg path {
                fill: #fff;
            }
main {
    position: relative;
    flex: 1;
    overflow:auto
}
header {
    padding: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: #f1f7fb;
}
    header button.hamburger {
        margin: 0;
        line-height: 0;
        background-color: transparent;
        outline: none;
        border: none;
        width: 20px;
        height: 18px;
        position: relative;
        padding: 0;
    }

        header button.hamburger span.stk {
            position: absolute;
            display: block;
            width: 100%;
            height: 3px;
            background-color: #202020;
            left: 0;
            top: 0;
            z-index: 99;
        }
        header button.hamburger:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 3px;
            left: 0;
            bottom: 0px;
            background-color: #202020;
            z-index: 99;
        }
        header button.hamburger:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 3px;
            left: 0;
            top: 50%;
            background-color: #202020;
            transform: translateY(-50%);
            will-change: revert;
            z-index: 99;

        }
section.dashboard {
    padding: 0 45px 45px 45px;
    height: calc(100% - 65px);
    display: flex;
    flex-direction: column;
    margin-top: 65px;
}

.title-blk {
    width: 100%;
    height: 120px;
}
.dashboard .title-blk h1 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 0;
}
    .dashboard .title-blk h1 span.h-orange {
        color: #F58220;
        font-weight: bold;
    }
    .dashboard .title-blk h1 span.h-black {
        font-weight: bold;
    }
.img-blk {
    width: 100%;
    height: calc(100% - 140px);
    margin-top: 20px;
    flex: 1 1 auto;
}
    .img-blk img {
        width: 100%;
        height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }
    @media (max-width:1400px){
        .dashboard .title-blk h1{
            font-size: 45px;
        }
    }

@media (max-width:1199px) {
    .img-blk img {
        object-position: left;
    }
    .dashboard .title-blk h1 {
        font-size: 38px;
    }
    .title-blk {
        width: 100%;
        height: 100px;
    }
    .img-blk {
        height: calc(100% - 120px);
    }
}
@media (max-width:991px){
    aside#sidebar {
        position: absolute;
        height: 100%;
        z-index: 999;
        width: 0;
        padding:20px 0;
        transition: width 0.3s ease, padding 0.3s ease;
    }
        aside#sidebar.collapsed {
            width: 290px;
            padding: 20px;
        }
            aside#sidebar.collapsed ~ main > #backdrop-1 {
                position: absolute;
                content: '';
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: #0000004f;
                display: block;
                z-index: 91;
            }
 }
@media (max-width:575px) {
    .dashboard .title-blk h1 {
        font-size: 32px;
    }
    .title-blk {
        width: 100%;
        height: 70px;
    }
    .img-blk {
        height: calc(100% - 70px);
    }
}


/* From Uiverse.io by vinodjangid07 */
.Btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: none;
    position: absolute;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(255, 65, 65);
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    border-radius: 40px;
}

/* plus sign */
.sign {
    margin-right: 4px;
    margin-bottom: 4px;
}

    .sign svg {
        width: 17px;
    }

        .sign svg path {
            fill: white;
        }
/* text */
.text {
    color: white;
    font-size: 17px;
    font-weight: 600;
    opacity: 1;
}