.container1 {
  position : relative;
  width : 1100px;
  display : flex;
  align-items : center;
  justify-content : center;
  flex-warp : warp;
  padding : 30px;  
}

.card1 {
    position: relative;
    max-width: 285px;
    height: 300px;
    background: #0051ff linear-gradient(360deg,#2a3749 0,rgb(15 20 27) 50%,rgb(51 60 85) 80%);
    margin: 30px 10px;
    padding: 20px 15px;
    /* display: flex; */
    flex-direction: column;
    box-shadow: 0 5px 20px rgb(0 0 0 / 50%);
    transition: 0.3s ease-in-out;
    border-radius: 15px;
    /* -webkit-line-clamp: 5; */
    /* display: -webkit-box; */
    /* -webkit-box-orient: vertical; */
}


.card1 .image {
  position : relative;
  width : 260px;
  height : 260px;
  
  top: -35%;
  left: 8px;

  z-index : 1;
}

.fff
{
	color: #fff;
}

.ddd
{
	color: #fff;
}

.card1 .image img {
  max-width : 100%;
  border-radius : 15px;
}

.card1 .content {
    position: relative;
    top: -180px;
    padding: 10px 15px;
    color: #111;
    text-align: center;
    /* visibility: hidden; */
    /* opacity: 0; */
    /* transition: 0.3s ease-in-out; */
}

 .card1:hover {
   margin-top : 30px;
   visibility : visible;
   opacity : 1;
   transition-delay: 0.2s;
  
}


//РєРЅРѕРїРєР°
.right {
    display: flex;
    border: 1px solid #f4a633;
    padding: 5px 9px;
    border-radius: 4px;
    font-weight: 700;
}

.right span {
    color: #f4a633;
    transition: 0.25s ease;
}
 
a, div, h9, p, span {
    /* text-shadow: none; */
}
[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
a {
    color: var(--custom-text-color);
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a, div, h9, p, span {
    text-shadow: none;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0; 
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}