/* thumedia flex */
.thumediaflex > .field-items-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2);
}
.centxtalign .thumediaflex > .field-items-wrap{
  justify-content: center;
}
.thumediaflex > .field-items-wrap > .field-item{
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1750px){
  .thumediaflex > .field-items-wrap{
    gap: var(--space);
  }
}
@media screen and (max-width: 1150px){
  .thumediaflex > .field-items-wrap{
    gap: var(--space-0-5);
  }
}
@media screen and (max-width: 850px){
  .thumediaflex > .field-items-wrap{
    grid-template-columns: 1fr;
  }
}