* {
    font-family: 'Lato', sans-serif;
    font-family: 'Work Sans', sans-serif;
    line-height: normal;
}
.sidebar {
    position: fixed;
    top: calc(100% - 59px);
    left: 0;
    height: 100%;
    width: 100%;
    background: #F6FDFF;
    transition: all 0.5s ease;
    z-index: 50;
}
.sidebar.open{
    top: 95px;
}
.sidebar header{
    display: none;
}
.sidebar.closed{
    width: 100px;
}
.sidebar .text{
    opacity: 1;
    transition: all .4s ease;
}
.sidebar.closed .text{
    opacity: 0;
}
.mob-menu-btn:hover {
    color: white;
}
.mob-menu-btn {
    display: flex;
    padding: 19px 0px;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    background: #009DBF;
}
.sidebar .menu{
    padding: 49px 26px;
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.sidebar .image-text img {
    width: 64px;
    height: 64px;
}
.sidebar header .image-text .name {
    color: #292D32;
    font-family: Work Sans;
    font-size: 28px;
    font-weight: 600;
    display: flex;
}
.sidebar header .image-text {
    display: flex;
    align-items: center;
    gap: 18px;
    align-items: center;
    padding: 31px 20px 0 16px;
}
.sidebar .image{
    display: flex;
    align-items: center;
}
header .image-text .header-text {
    display: flex;
    flex-direction: column;
}
.header-text .name{ 
    font-weight: 600; 
}
.sidebar header {
    position: relative;
}
.sidebar .toggle {
    position: absolute;
    top: 50%;
    right: -11px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background: #009DBF;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    transition: all .3s ease
}
.sidebar.closed .toggle{
    transform: translateY(-50%);
}
.sidebar .child-links {
    width: 100%;
    padding: 0 60px;
    display: none;
}
.sidebar li {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
}
.sidebar .child-links a {
    font-size: 16px;
    color: #424242;
    padding: 15.5px 0 !important;
}
.sidebar .nav-link.active .child-links{
    display: block;
}
.sidebar .menu-links .nav-link.active > a .text{
    font-weight: 600;
}
.sidebar .menu-links .nav-link.active {
    background: white;
    border-radius: 6px;
    margin-right: -26px;
}
.sidebar .menu-links {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.sidebar .menu-links a img {
    padding: 6px;
    padding-left: 11px;
}
.sidebar a .text {
    font-size: 18px;
    color: #424242;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.sidebar .menu-links a {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 6px 0;
}
.sidebar .nav-link.active .child-links a.active{
    text-decoration: underline;
}
.sidebar a:hover {
    text-decoration: none;
}
.hotline {
    display: flex;
    padding: 17px 27px;
    flex-direction: column;
    gap: 11px;
    border-radius: 32px;
    background: #F2F4F7;
    transition: all 0.2s ease;
    opacity: 1;
}
.hotline .hotline-label{
    color: #424242;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
}
.hotline .hotline-value{
    color: #006F87;
    font-family: Work Sans;
    font-size: 24px;
    font-weight: 500; 
    white-space: nowrap;
}
.sidebar.closed .hotline{
    opacity: 0;
}
.sidebar li:not(li.active):hover .text{
    color: white;
}
.sidebar.closed .child-links{
    display: none !important;
}
.sidebar li:not(.nav-link.active):hover {
    background: #009DBF;
    border-radius: 6px;
}
.sidebar .menu-bar{
    height: 100%;
    position: relative;
    transition: all 0.5s ease;
}
@media(min-width: 768px) {
    .sidebar {
        width: 310px;
    }

    .mob-menu-btn {
        display: none;
    }

    .sidebar header {
        display: block;
    }

    .sidebar .menu-bar,
    .sidebar.open {
        top: 0;
    }

    main {
        position: relative;
        width: calc(100% - 310px);
        left: 310px;
        transition: all .5s ease;
    }

    .sidebar.closed ~ main {
        width: calc(100% - 100px);
        left: 100px;
    }

    .sidebar {
        top: 0;
    }
}
@media(min-width: 992px) {
    .sidebar .menu {
        padding: 105px 26px 26px 26px;
    }
}
