.menu__container {
    height: 50px;
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #E6E6E6;
 }
 
 .menu__item {
     height: 100%;
     display: flex;
     align-items: center;
     transition: .2s ease-in-out;
     text-decoration: none;
     color: #1A1A1A;
     border-bottom: 1px solid #FFFFFF;
     margin: 0 10px;
 }
 
 .menu__item:hover {
     border-bottom: 1px solid #F65145;
 }