/**
 * @file
 * Is the responsive layout composition.
 *
 * Is intented to set basic layout rules to regions and global blocks.
 * Also add grid common rules.
 */



/**
 * Layout content
 */


.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main__content {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.layout__region--content {
  display: flex;
  flex-direction: column;
}

.layout--twocol-33-67 {
  justify-content: space-between;
}

.layout--twocol-33-67 .layout__region--second {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/**
 * Grid row
 */


.grid-row {
	padding: 0;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.grid-row.background-color {
  padding: 64px 24px;
}

.grid-row.background-color--orange {
    background-color: var(--color-tertiary);
}

.grid-row.background-color--blue_dark {
    background-color: var(--color-secondary);
}

.grid-row.background-color--green {
    background-color: var(--color-primary);
}

.grid-row.background-color--green_light {
    background-color: var(--color-primary--xclear);
}

@media all and (min-width: 750px) {
  .grid-row {
    width: 82%;
  }
}
@media all and (min-width: 1300px) {
  .grid-row.background-color {
    padding: 64px 110px;
  }
  .grid-row--12{
    max-width: 1280px;
  }

  .grid-row--10{
    max-width: 1166px;
  }
  .grid-row--8{
    max-width: 933px;
  }
  .grid-row--6{
    max-width: 700px;
  }
}
