/* footer */ .footer{ /*height: 100px; */ background: #333333; } .footer__inner { display: flex; justify-content: space-between; padding-top: 20px; } /* Nav */ .footer__nav { margin-top: 10px; font-size: 14px; margin: 0 auto; width: 80%; display: grid; grid-template-columns: repeat(auto-fit, 120px); grid-gap: 30px; justify-content: space-between; } .footer__nav__link { display: inline-block; vertical-align: top; margin: 0 15px; position: relative; color: #fff; text-decoration: none; /* margin-left: auto;*/ transition: color .1s linear; } .footer__nav__link:after { content: ""; display: block; width: 100%; height: 3px; background-color: #fce38a; opacity: 0; position: absolute; top: 100%; left: 0; z-index: 1; transition: opacity .1s linear; } .footer__by { display: flex; flex: 1; margin-top: 22px; justify-content: center; align-items: center; color: #fff; } .footer__by a { display: flex; justify-content: center; align-items: center; flex-grow: 1; margin-bottom: 20px; } .footer__by__nav__link { display: inline-block; vertical-align: top; margin: 0 15px; position: relative; font-size: 12px; color: #fff; text-decoration: none; /* margin-left: auto;*/ transition: color .1s linear; }