<style>
/*Добавляем появление иконки при наведении на пункт меню*/
@media screen and (min-width:1200px){ /*Задаем параметры только для десктопа*/
.t450__list_item a{
display: flex;
align-items: center;
position:relative;
left: -20px;
}
.t450__list_item a:before{
content: "";
position: relative;
height: 44px; /*Высота иконки*/
width: 44px; /*Ширина иконки*/
margin-right: 15px; /*Отступ справа у иконки от текста*/
left:-30px;
display:flex;
opacity:0;
background: url(https://static.tildacdn.com/tild3230-6462-4538-a630-343761363963/MapPinLine2.svg) no-repeat; /*Ссылка на иконку*/
transition: 0.6s ease-in-out; /*Скорость появления иконки и плавность перехода*/
}
.t450__list_item a:hover:before{
opacity:1;
left: 0px;
}
.t450__list_item:last-child a {
display: flex;
}
}
</style>