.b-header__link {
    font-size: 1.3rem;
}

.submenuDesktop{
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    background: #fff;
    display: none;
    margin-top: 3px;
}

.b-header__item:hover .submenuDesktop{
    display: block;
}

.submenuDesktopWrapper{
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 20px;
}

.submenuDesktopList{
    display: flex;
    flex-direction: column;
}

.submenuDesktopList li{
    margin-bottom: 50px;
}

.b-header__item .submenuDesktopList:nth-child(odd)  li {
    padding-right: 15px;
}
.b-header__item .submenuDesktopList:nth-child(even) li {
    padding-left: 15px;
}

.submenuDesktopList li a{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #000000;
}

.submenuDesktopList .menuIcon{
    width: 60px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: flex-start;
}
.submenuDesktopList .menuItem{
    display: flex;
    flex-direction: column;
}

.submenuDesktopList .menuItemTitle{
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    white-space: normal;
}

.submenuDesktopList .menuItemDescription{
    font-size: 1.3rem;
    white-space: initial;
}

.submenuDesktopList li a:hover .menuItemTitle{
    color: #36c5f1;
}

.submenuDesktopList li a:hover .menuItemTitle:before{
    color: #36c5f1;
    width: 30px;
}
.submenuDesktopList .menuItemTitle:before{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 0;
        height: 2px;
        background-color: #36c5f1;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
}

.b-header-mobile__list ul{
    margin-top: -9px;
}

.b-header-mobile__item:after {
    top: 24px;
}

.b-header-mobile__list ul li{
}

.b-header-mobile__list ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 3px 35px 11px;
    color: #000;
}

@media screen and (max-width:1700px) {
    .submenuDesktopWrapper{
        max-width: 1300px;
    }
}

@media screen and (max-width:1400px) {
    .submenuDesktopWrapper{
        max-width: 1000px;
    }
    .submenuDesktopList .menuItemTitle{
        font-size: 1rem;
    }

    .submenuDesktopList .menuItemDescription{
        font-size: 1rem;
    }
    .b-header__link{
        font-size: 1.1rem;
    }
}

@media screen and (max-width:1100px) {
    .submenuDesktopWrapper{
        max-width: 900px;
    }
    .b-header__link{
        font-size: 1rem;
    }
}