.line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.overlay {
    position: fixed;
    display: none;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.sidebar-image {
    width: 24px;
    margin-right: 10px;
}

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 50px;
    left: -250px;
    background-color: #F6F9FE;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 999;
}

#mySidenav .container {
    height: calc(100% - 50px);
}

.sidenav .textmedium:hover {
    color: #F16625 !important;
    text-decoration: none;
}

#header-mobile {
    background-color: #232B6C;
}

.fixed-top {
    width: 100vw;
}