.t404__link {
    display:block;
}

.t404__link:hover {
    transform: scale(1.1);
}

a, a:visited {
-webkit-transition: 0.5s ease;
transition: 0.5s ease; 
}

a:hover, a:visited:hover {
color: #db0d0d !important;
}

/* Стиль, для выравания текста */

.alignment-kim {
    text-align: justify!important;
}


.swipe{
    border: none;
    position: relative;
    transition: 500ms ease all;
    outline: none;
    overflow: hidden;
    z-index:1;

   }
   
   .danjus {
		text-align: justify;
		text-indent: 20px;
	}
   
    .swipe:hover{
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .swipe:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #b8bbc2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: -1;
}
    .swipe:hover:before{
    -webkit-transform: translateX(0);
    transform: translateX(0);
}