.parts {
	scroll-snap-align: none;
}	

@media (max-width: 1024px) {
    .parts h2 {
		position: sticky;
		top: var(--hh);
		background: linear-gradient(180deg, #ffffffff 90%, #ffffff00 100%);
        padding: 15px 0 10px;
		z-index: 1;
    }
}

.parts > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vh 0 3.4vh;
}
.flx_parts {
	margin: 2vh 2px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	gap: 20px;
}
@media (min-height: 750px) {
 .flx_parts {
    margin-top: 30px;
 }
}

.c_part {
	display: flex;
	gap: 20px;
	width: 100%;
	background: #fff;
	outline-color: transparent;
    border: 1px solid #afb6d5;
    border-radius: 12px;
    padding: 20px;
	overflow: hidden;
}
@media (min-width: 550px) {
 .c_part {
	max-width: 360px;
	width: auto;
 }
}
.c_part:hover {
    outline: 1px solid #afb6d5;
}
.c_part:active {
    border-color: #185abc;
    outline: 2px solid #185abc;
}	
.c_part img, .c_part .icon {
    display: inline-block;
    height: 60px;
    width: auto;
	background-size: 100%;
}
.c_part img {
	transition: opacity .5s .2s ease-in;
}
.c_part:hover img {
	opacity: 0;
}
.c_part h5 {
    display: inline-block;
    margin: 0;
    font: 400 1.2rem "Roboto", Helvetica, Arial, sans-serif;
    padding-bottom: 5px;
}
.c_part h5:first-line {
	font-size: 1.375rem;
}
.c_part > div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}	

@media (prefers-reduced-motion: no-preference) {
 @supports (animation-timeline: scroll()) {

  .flx_parts > div {
		animation: run_flag_animation steps(1) both;
		animation-timeline: view();
		animation-range-end: entry 100%; 
  }
  @keyframes run_flag_animation {
	to {
			--animate-flag: true;
	}
  }
  .c_part {
	opacity: 0;
	filter: blur(5px);
	translate: 0 100%;
	transition: all .5s 5s ease-out;
  }
  @container style(--animate-flag: true) {
	.c_part {
		opacity: 1;
		filter: blur(0);
		translate: 0;
		transition-delay: .2s;
	}	
	.c_part img {
		opacity: 0;
		transition-delay: 1s;
	}	
  }
  
 }
}
