/* make block items tramsparent */
.boxed .blog-item {
  background-color: rgba(46, 54, 105,0);
}

/* add a background image */
.com_content {
  background-image: url(https://prochildedu.de/images/logos_nichtloeschen/Simplified_blank_world_map_10.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-color: rgba(46, 54, 105,0.05);
  background-position: 50% 55%;
}


/* Mavbar image changes*/
.container-nav {
  background-image: url(https://prochildedu.de/images/logos_nichtloeschen/myProChildLogoNew150.png);
  background-repeat: no-repeat;
  align-items: end;
  height: 160px;
  padding-bottom: 0.5em;
}

.metismenu.mod-menu .metismenu-item {
  flex-wrap: wrap;
  align-items: center;
/*  padding: .5em 1em; */
    padding-top: 0.5em;
    padding-right: 1em;
    padding-bottom: 0;
    padding-left: 1em;
  font-size: 1.1rem;
  line-height: 1.5;
  display: flex;
}
.container-header .container-nav {
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.5em;
}

/* Beitragsbilder volle Breite */

.item-image img {
  width: 100%;
}

/* flex classes for Bilder in einer reihe layout */
.imggrid-items {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
}

.imggrid-items .imggrid-item {
  max-width: 100%;
  box-sizing: border-box;
  flex: 1
}

.imggrid-item img {
  width: 100%;
  height: auto;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .imggrid-items {
    flex-direction: column;
  }
}



/* flex classes for fixed column layout */

.textgrid-items {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: stretch;
}

.textgrid-items-column {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
/*  align-items: center;*/
  height: 100%;
}
 
.textgrid-items, .textgrid-item, .textgrid-items-column, .textgrid-item-column {
  max-width: 100%;
  box-sizing: border-box;
/*  flex: 1 */
}

.textgrid-item img {
  width: 100%;
  height: auto;
}

.textgrid-items div.s33 {
  flex-basis: 33.33333333%;
}

.textgrid-items div.s66 {
  flex-basis: 66.66666666%;
}

.textgrid-items div.s25 {
  flex-basis: 25%;
}

.textgrid-items div.s75 {
  flex-basis: 75%;
}

.textgrid-items div.s50 {
  flex-basis: 50%;
}


/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .textgrid-items {
    flex-direction: column;
  }
}


