OwlCyberSecurity - MANAGER
Edit File: _contact-info.scss
.ova-contact-info{ display: flex; align-items: center; gap: 10px; .icon{ margin-top: 10px; svg{ width: 20px; height: auto; fill: var(--text); path { fill: var(--text); } } i{ display: inline-flex; font-size: 20px; } } .contact{ .label{ margin: 0 0 10px 0; padding: 0; font-size: 24px; font-weight: 600; line-height: 1.2; } .info{ list-style-type: none; padding: 0; margin: 0; .item{ color: var(--text); a{ color: var(--text); -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; position: relative; &:before{ position: absolute; content: ''; width: 0%; height: 1px; left: 0px; bottom: 0px; transition: all 500ms ease; background-color: var(--primary); } &:hover{ color: var(--primary); &:before{ width: 100%; } } } } } } }