.top-bar{
    width: 70%;
    height: 80px;
    line-height:80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}
.website-icon{
    width: 200px;
    height: 60px;
}
.website-icon img{
    width: 100%;
}
.menu-wrapper{
    display: flex;
    align-items: center;
}
.main-menu{
    display: flex;
}
.main-menu li{
    width: 90px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}
.main-menu>li>a{
    font-size: 16px;
    cursor: pointer;
    color: #000;
}
.main-menu>li> a{
    border-bottom: 2px solid #fff;
}
.main-menu>li .active{
    font-weight: 600;
    border-color: #FA5C5C;
}
.contact-phone-identification{
    margin-left: 50px;
    width: 175px;
    height: 45px;
    display: flex;
    align-items: center;
    background-color: #FA5C5C;
    border-radius: 30px;
}
.contact-phone-identification:hover{
    cursor: pointer;
}
.identification{
    width: 40px;
    height: 40px;
    background-size: contain;
    padding: 3px;
    margin-left: 5px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    box-sizing: border-box;
}
.identification>img{
    width: 100%;
    vertical-align: top;
}
.phone-number{
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 16px;
    background-color: #FA5C5C;
    position: relative;
}
/*.phone-number::after{*/
/*    content: '';*/
/*    width: 175px;*/
/*    height: 45px;*/
/*    background-color:  rgba(255,255,255,0.5);*/
/*    border-radius: 30px;*/
/*    position: absolute;*/
/*    left:-100px;*/
/*    top: 25px;*/
/*    z-index: 50;*/
/*    opacity: 0;*/
/*    transition: 100ms;*/
/*}*/
.contact-phone-identification:hover .phone-number::after{
    opacity: 1;
    top: -2px;
    left:-45px;
}
.solutions-menu{
    position: relative;
}
.level-two-menu{
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 20;
    border: 1px solid #eeeeee;
    box-shadow: 0px 0px 10px #eeeeee;
    padding: 15px 0;
    background: #ffffff;
    display: none;
}
.level-two-menu li{
    padding: 0 30px;
    height: 35px;
    line-height: 35px;
    width: 160px;
    text-align: left;
}
.level-two-menu li>a{
    color: #333333;
    font-size: 14px;
}
.level-two-menu li .active{
    color: #FA5C5C;
}
.level-two-menu li>a:hover{
    color: #FA5C5C;
    cursor: pointer;
    text-decoration: none;
}
.one-thing-one-yard-menu{
    position: relative;
}