.parts {
	/* scroll-snap-align: none; */
/* 	background-color: #dff2ff;	/* eef7ff  #eff4fb*/ */
}	

@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 var(--color-light-blue);
    border-radius: var(--border-radius-pane);
    padding: 20px;
	overflow: hidden;
}	
.c_part:hover {
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}
@media (min-width: 550px) {
 .c_part {
	max-width: 360px;
	width: auto;
 }
}
.c_part:hover {
    outline: 1px solid var(--color-light-blue);
}
.c_part:active, .c_part:focus {
    border-color: var(--color-blue);
    outline: 2px solid var(--color-blue);
}	
.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", 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: opacity .5s 5s ease-out, translate .5s 5s ease-out, filter .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;
	}	
  }
  
 }
}
