.container {
  width: 100%;
  max-width: 1340px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}
.d-flex {
  display: flex;
}
.d-flex.gap-10 {
  gap: 10px;
}
.d-flex.gap-20 {
  gap: 20px;
}
.d-flex.gap-30 {
  gap: 30px;
}
.d-flex-column {
  flex-direction: column;
}
.d-flex-row {
  flex-direction: row;
}
.d-flex-wrap {
  flex-wrap: wrap;
}
.d-flex-nowrap {
  flex-wrap: nowrap;
}
.d-flex-grow-0 {
  flex-grow: 0;
}
.d-flex-grow-1 {
  flex-grow: 1;
}
.d-flex-shrink-0 {
  flex-shrink: 0;
}
.d-flex-shrink-1 {
  flex-shrink: 1;
}
.d-flex-justify-start {
  justify-content: flex-start;
}
.d-flex-justify-end {
  justify-content: flex-end;
}
.d-flex-justify-center {
  justify-content: center;
}
.d-flex-justify-between {
  justify-content: space-between;
}
.d-flex-justify-around {
  justify-content: space-around;
}
.d-flex-align-start {
  align-items: flex-start;
}
.d-flex-align-end {
  align-items: flex-end;
}
.d-flex-align-center {
  align-items: center;
}
.d-flex-align-baseline {
  align-items: baseline;
}
.d-flex-align-stretch {
  align-items: stretch;
}
.d-flex .flex-12 {
  flex: 1 1 100%;
}
.d-flex .flex-11 {
  flex: 1 1 91.66666667%;
}
.d-flex .flex-10 {
  flex: 1 1 83.33333333%;
}
.d-flex .flex-9 {
  flex: 1 1 75%;
}
.d-flex .flex-8 {
  flex: 1 1 66.66666667%;
}
.d-flex .flex-7 {
  flex: 1 1 58.33333333%;
}
.d-flex .flex-6 {
  flex: 1 1 50%;
}
.d-flex .flex-5 {
  flex: 1 1 41.66666667%;
}
.d-flex .flex-4 {
  flex: 1 1 33.33333333%;
}
.d-flex .flex-3 {
  flex: 1 1 25%;
}
.d-flex .flex-2 {
  flex: 1 1 16.66666667%;
}
.d-flex .flex-1 {
  flex: 1 1 8.33333333%;
}
/*# sourceMappingURL=grid.css.map */