* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f8f8;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: .6rem;
    background: #3b5998 !important;
    color: white;

}

.topheader p {
    background: #353B48;
    padding: .5rem;
    text-align: end;
    color: white;
    margin: 0;
}

header {
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: center;
    background: #353B48;
}


header .logo img {
    width: 120px;
    height: 120px;
    margin-top: 15px;
}


header a {
    font-size: 15px;
    color: white;
    margin: 10px;
    text-decoration: none;
}

.links {
    margin-left: 10px;
}

.responsive-header {
    display: none;
}


.breadcrumb {
    margin: 0;
}

@media (max-width:930px) {

    header,
    nav {
        display: none;
    }

    #menu__toggle {
        opacity: 0;
    }

    #menu__toggle:checked~.menu__btn>span {
        transform: rotate(45deg);
    }

    #menu__toggle:checked~.menu__btn>span::before {
        top: 0;
        transform: rotate(0);
    }

    #menu__toggle:checked~.menu__btn>span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu__toggle:checked~.menu__box {
        visibility: visible;
        left: 0;
    }

    .menu__btn {
        display: flex;
        align-items: center;
        position: fixed;
        top: 20px;
        left: 20px;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }

    .menu__btn>span,
    .menu__btn>span::before,
    .menu__btn>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition-duration: .25s;
    }

    .menu__btn>span::before {
        content: '';
        top: -8px;
    }

    .menu__btn>span::after {
        content: '';
        top: 8px;
    }

    .menu__box {
        position: fixed;
        visibility: hidden;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        margin: 0;
        padding: 80px 0;
        list-style: none;
        background-color: #353b48;
        box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
        transition-duration: .25s;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }

    .menu__item {
        display: block;
        padding: 12px 24px;

        color: white;

        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 600;

        text-decoration: none;

        transition-duration: .25s;
    }

    .menu__item:hover {
        background-color: #CFD8DC;
    }

    .topheader {
        display: none;
    }

    .responsive-header {
        display: block;
        height: 70px;
        background: #353b48;
        top: 0;
        left: 0;
        right: 0;
        position: fixed;
    }


}


@media (max-width:500px) {
    li a {
        font-size: 14px !important;
    }
}