header {
    text-align: center;
    position: sticky;
    z-index: 20;
    width: 100%;
    transition: transform .4s;
    overflow-x: hidden;
    background: #efefef;
    box-shadow: 0 3px 5px #b3afaf;
    color: #f1f1f1;
    z-index: 99;
}

header .my-toggler {
    background-color: #ed1c24;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    margin-left: 10px;
    top: 10px;
    position: fixed;
    z-index: 100;
    display: none;
}

header .my-toggler:focus {
    outline: none;
}

header img {
    height: 50px;
}

header nav.my-nav {
    width: 100%;
    margin: auto;
    transition: transform .4s;
    border-radius: 4px;
    padding: 4px 16px;
    box-sizing: border-box;
}

header nav.my-nav .profile img {
    object-fit: cover;
}

header nav.my-nav .profile a {
    padding: 0;
    color: white;
}

header nav.my-nav .my-collapse {
    height: 100%;
    border-radius: 4px;
}

header nav.my-nav .my-collapse.collapsing {
    overflow: initial;
}

header nav.my-nav ul.my-ul {
    width: auto;
    margin-right: initial !important;
    display: inline;
    float: right;
    margin: 5px 0 0 !important;
}

header nav.my-nav .my-li {
    padding: 0 20px;
    display: inline-block;
}

header nav.my-nav .my-li a.nav-link {
    color: #3F3C3B;
}

header nav.my-nav .my-li a.nav-link:hover {
    color: #ed1c24 !important;
}

header nav.my-nav .my-li .nav-link.active {
    color: #ed1c24;
}

.btnicon {
    width: 30px;
    height: 28px;
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
}

.hamburgerimg {
    background-image: url(../images/menu.svg)
}

.close {
    background-image: url(../images/close.svg)
}