.blposters a {
    color: rgb(0, 0, 0);
    text-transform: none;
    font-weight: 400;
    text-decoration: none;
}

.image-container {
  padding: 5px;
  border-radius: 10px;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 195px!important;
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  background-size: 1100% 400%;
  animation: gradient-animation 10s ease infinite;
  border-radius: 18px;
  z-index: -1;
}

.image-container img {
  display: block;
  border-radius: 15px;
}

.image-container2 {
  padding: 5px;
  border-radius: 10px;
}
.image-container2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 195px!important;
  background: linear-gradient(45deg, #0035ff, #6200ff, #00ffe7, #ffa700, #ff0000, #00ff2b, #7a00ff, #ff00c8, #ff0000);
  background-size: 1100% 400%;
  animation: gradient-animation 10s ease infinite;
  border-radius: 18px;
  z-index: -1;
}
.image-container2 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.image-container-zero {
  padding: 5px;
  border-radius: 10px;
}

.image-container-zero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 195px!important;
  background: linear-gradient(45deg, #000, #000, #000, #fff, #000, #000, #000, #000, #000);
  background-size: 1100% 400%;
  animation: gradient-animation 10s linear infinite;
  border-radius: 18px;
  z-index: -1;
}

.image-container-zero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Анимация для градиента */

/* Анимация для градиента */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.blposters {display: flex;flex-wrap: wrap;margin: 10px auto;width: 100%;margin-top: 30px;}

.blkpos {
	position: relative;
	margin: 10px 5px;
	z-index: 1;
	-webkit-box-shadow: 0px 27px 10px -20px #595959;
	box-shadow: 0px 27px 10px -20px #595959;
}

.blkpos img {
    width: 184px;
    height: 328px;
    filter: saturate(25%);
}

.blkpos img:hover {
    filter: saturate(120%);
}

.blposters-inf1 {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    padding: 2px 10px;
    color: wheat;
    font-weight: bold;
    border-radius: 10px 23px 10px 30px;
    box-shadow: -3px 3px 4px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: -3px 3px 4px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -3px 3px 4px 0px rgba(0,0,0,0.75);
}

.blposters-inf2 {
    position: absolute;
    width: 85%;
    bottom: 53px;
    padding: 2px 10px;
    background: #ffffff94;
}

.blposters-inf3 {
    position: absolute;
    width: 85%;
    bottom: 29px;
    padding: 2px 10px;
    background: #ffffff94;
}

.blposters-inf4 {
    position: absolute;
    width: 85%;
    bottom: 5px;
    padding: 2px 10px;
    background: #ffffff94;
    border-radius: 0px 0px 15px 15px;
}




/* адаптивность */
@media (max-width: 768px) {
	
}

@media (max-width: 480px) {
	.blkpos img {
    width: 370px;
    height: 620px;
    filter: saturate(100%);
 }
	.blposters-inf2 {
    width: 92%;
	}
	.blposters-inf3 {
    width: 92%;
	}
	.blposters-inf4 {
    width: 92%;
	}
	.image-container::before {
  width: 380px!important;
 }
.image-container2::before {
  width: 380px!important;
	}
.image-container-zero::before {
  width: 380px!important;
	}
}


