/* Imported useful classes from Bootstrap 4 */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 768px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

@media (min-width: 768px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 992px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1200px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 768px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .pull-sm-left {
    float: left !important;
  }

  .pull-sm-right {
    float: right !important;
  }

  .text-sm-left {
    text-align: left;
  }

  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .pull-md-left {
    float: left !important;
  }

  .pull-md-right {
    float: right !important;
  }

  .text-md-left {
    text-align: left;
  }

  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .pull-lg-left {
    float: left !important;
  }

  .pull-lg-right {
    float: right !important;
  }

  .text-lg-left {
    text-align: left;
  }

  .text-lg-center {
    text-align: center;
  }

  .text-lg-right {
    text-align: right;
  }
}
.temp-template {
  padding: 0 !important;
}

.hpb-container.container {
  padding: 0 !important;
}

/* reset tabs style */
.nav-tabs {
  border-bottom: none;
}

.nav-tabs > li > a {
  margin-right: 0;
  line-height: inherit;
  border: none;
  border-radius: unset;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.nav > li > a {
  padding: 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  background-color: inherit;
  color: initial;
  border: none;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background-color: inherit;
  border-color: transparent;
  border: none;
  color: initial;
}

/*to convert px to vw*/
/*$px_value: the number in px on the particular screen size*/
/*e.g. we want to display 10px in the responsive screen size, xl-vw_converter_px(10)vw*/
/*e.g. we want to display 20px in the responsive screen size, l-vw_converter_px(20)vw*/
@font-face {
  font-family: "Cinzel Decorative Bold";
  src: url("https://ch-api.healthhub.sg/api/public/content/e0a89900000d4935b0fba18a6bb8b516?v=c528c06f");
  src: url("https://ch-api.healthhub.sg/api/public/content/e0a89900000d4935b0fba18a6bb8b516?v=c528c06f?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/bc7d1bf33b5040ae850e3ef83772a944?v=2e05b7ca") format("woff2"), url("https://ch-api.healthhub.sg/api/public/content/4de13bde70d44aff9f9a7990692693e1?v=e264023a") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/6dfe30f1af8345da9960d0c984029d54?v=929e7939") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/9371c26956bb46c8ba1833df28a977c3?v=63b25e02#CinzelDecorative-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel Decorative Black";
  src: url("https://ch-api.healthhub.sg/api/public/content/917d2ed91ac44f35bf70e62b7d078a3a?v=a0507b7a");
  src: url("https://ch-api.healthhub.sg/api/public/content/917d2ed91ac44f35bf70e62b7d078a3a?v=a0507b7a?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/7eb7ab7038a04827a43a1dad9c25123c?v=e0c03d83") format("woff2"), url("https://ch-api.healthhub.sg/api/public/content/517e408d2cac425792832b93d74e7b9c?v=b090ffa5") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/77865fc3854542fcb41ecb743c50aec5?v=29202784") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/a0c71037e0f540d1a9da78780fb12aad?v=018c3fc5#CinzelDecorative-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Medium";
  src: url("https://ch-api.healthhub.sg/api/public/content/9f5d0fb3d8c7412d86785f4cb9aadc2e?v=7c165e44");
  src: url("https://ch-api.healthhub.sg/api/public/content/9f5d0fb3d8c7412d86785f4cb9aadc2e?v=7c165e44?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/6260236ce29641328d24c192a4756242?v=ce49ca5d") format("woff2"), url("https://ch-api.healthhub.sg/api/public/content/408b26303fee44229cd9b72a2bfe0b54?v=5d964c1f") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/a436e643c4c94c74b038f857b586772f?v=295c2a2a") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/b419804247304e82ad11b4e5f8b9ab95?v=6bae71bc#Futura-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Bold";
  src: url("https://ch-api.healthhub.sg/api/public/content/ce94dc669fbc4d35875e11500bfd9c53?v=eeee4546");
  src: url("https://ch-api.healthhub.sg/api/public/content/ce94dc669fbc4d35875e11500bfd9c53?v=eeee4546?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/4e4e0d5e9bda462b83e4fc2691b641c7?v=70110071") format("woff2"), url("https://ch-api.healthhub.sg/api/public/content/c458752563784288bd9317eb62510041?v=557eaec9") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/d1c0347a14894253b69d09557dc55c33?v=2bccd7b6") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/7827bf84f47b4374a4ffbdc6324e0e77?v=bbad512e#Futura-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT-ExtraBold";
  src: url("https://ch-api.healthhub.sg/api/public/content/22e6998234134cf58908f8659420c5f6?v=3cd3be9e");
  src: url("https://ch-api.healthhub.sg/api/public/content/22e6998234134cf58908f8659420c5f6?v=3cd3be9e?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/24e3a9f2f10444d889e7112c30fe6106?v=aff8caef#FuturaPT-ExtraBold") format("svg"), url("https://ch-api.healthhub.sg/api/public/content/fa7e61b5a655402383378d9ac0db313f?v=e831380f") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/f24d3bc0a02245b2a2797c6c3c8c08e1?v=3241a7f9") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/ecacb73438494a8aab3c7dc73ac796ea?v=4155dd7d") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT-Heavy";
  src: url("https://ch-api.healthhub.sg/api/public/content/026cc2e930ef43dc8a37fdea3b28c9ba?v=cb456c3e");
  src: url("https://ch-api.healthhub.sg/api/public/content/026cc2e930ef43dc8a37fdea3b28c9ba?v=cb456c3e?#iefix") format("embedded-opentype"), url("https://ch-api.healthhub.sg/api/public/content/f4f5af5dcf114e80a437c9c5c441222f?v=e09a069a#FuturaPT-Heavy") format("svg"), url("https://ch-api.healthhub.sg/api/public/content/56ab33441eb84e2c91d9ee2c08c69091?v=8447e908") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/bafe9b64580649edae871557ac1f2ea9?v=ed77f685") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/c66d14b0e04348b6bf6ed8b38faf3512?v=20c6cc10") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/*@font-face {
  font-family: "FuturaPT-Light";
  src: url("../fonts/FuturaPT-Light/FuturaPT-Light.eot");
  src: url("../fonts/FuturaPT-Light/FuturaPT-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Light/FuturaPT-Light.svg#FuturaPT-Heavy") format("svg"), url("../fonts/FuturaPT-Light/FuturaPT-Light.ttf") format("truetype"), url("https://ch-api.healthhub.sg/api/public/content/d8464bdefcc94958b9b06d65d1badb7d?v=881816c0") format("woff"), url("https://ch-api.healthhub.sg/api/public/content/d8464bdefcc94958b9b06d65d1badb7d?v=881816c0") format("woff2");
  font-weight: normal;
  font-style: normal;
}*/
.f-cinzel-d-bold {
  font-family: "Cinzel Decorative Bold" !important;
}

.f-cinzel-d-black {
  font-family: "Cinzel Decorative Black" !important;
}

.f-futura-medium {
  font-family: "Futura Medium" !important;
}

.f-futura-exbold {
  font-family: "FuturaPT-ExtraBold" !important;
}

.f-futura-heavy {
  font-family: "FuturaPT-Heavy" !important;
}

.f-futura-light {
  font-family: "FuturaPT-Light" !important;
}

.f-black {
  color: #000000;
}

.f-white {
  color: #ffffff;
}

.f-yellow {
  color: #dca55a;
}

.f-gold {
  color: #BD8943;
}

.f-purple {
  color: #502451;
}

.f-nav-size {
  font-size: 13px;
}
@media only screen and (max-width: 1280px) {
  .f-nav-size {
    font-size: 1.015625vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-nav-size {
    font-size: 2.8683181226vw;
  }
}

.f-1 {
  font-size: 42px;
}
@media only screen and (max-width: 1280px) {
  .f-1 {
    font-size: 3.28125vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-1 {
    font-size: 5.4758800522vw;
  }
}

.f-2-xl {
  font-size: 33px;
}
@media only screen and (max-width: 1280px) {
  .f-2-xl {
    font-size: 2.578125vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-2-xl {
    font-size: 3.9113428944vw;
  }
}

.f-2 {
  font-size: 29px;
}
@media only screen and (max-width: 1280px) {
  .f-2 {
    font-size: 2.265625vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-2 {
    font-size: 3.7809647979vw;
  }
}

.f-3 {
  font-size: 25px;
}
@media only screen and (max-width: 1280px) {
  .f-3 {
    font-size: 1.953125vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-3 {
    font-size: 3.259452412vw;
  }
}

@media only screen and (max-width: 767px) {
  .f-3-m {
    font-size: 3.6505867014vw;
  }
}

.f-3-secondary {
  font-size: 22px;
}
@media only screen and (max-width: 1280px) {
  .f-3-secondary {
    font-size: 1.71875vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-3-secondary {
    font-size: 3.1290743155vw;
  }
}

.f-4 {
  font-size: 21px;
}
@media only screen and (max-width: 1280px) {
  .f-4 {
    font-size: 1.640625vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-4 {
    font-size: 3.259452412vw;
  }
}

.f-5 {
  font-size: 33px;
}
@media only screen and (max-width: 1280px) {
  .f-5 {
    font-size: 2.578125vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-5 {
    font-size: 5.3455019557vw;
  }
}

.f-6 {
  font-size: 27px;
}
@media only screen and (max-width: 1280px) {
  .f-6 {
    font-size: 2.109375vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-6 {
    font-size: 3.1290743155vw;
  }
}

.f-7 {
  font-size: 19px;
}
@media only screen and (max-width: 1280px) {
  .f-7 {
    font-size: 1.484375vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-7 {
    font-size: 2.4771838331vw;
  }
}

.f-8 {
  font-size: 17px;
}
@media only screen and (max-width: 1280px) {
  .f-8 {
    font-size: 1.328125vw;
  }
}
@media only screen and (max-width: 767px) {
  .f-8 {
    font-size: 2.2164276402vw;
  }
}

.margin0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0;
}

.mt-20 {
  margin-top: 20px !important;
}
@media only screen and (max-width: 1280px) {
  .mt-20 {
    margin-top: 1.5625vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .mt-20 {
    margin-top: 2.6075619296vw !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt-35 {
  margin-top: 20px;
}
@media only screen and (max-width: 1280px) {
  .mt-35 {
    margin-top: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .mt-35 {
    margin-top: 2.6075619296vw;
  }
}

.mb-10 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1280px) {
  .mb-10 {
    margin-bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .mb-10 {
    margin-bottom: 1.3037809648vw;
  }
}

.mb-35 {
  margin-bottom: 35px !important;
}
@media only screen and (max-width: 1280px) {
  .mb-35 {
    margin-bottom: 2.734375vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .mb-35 {
    margin-bottom: 4.5632333768vw !important;
  }
}

.mb-50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1280px) {
  .mb-50 {
    margin-bottom: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .mb-50 {
    margin-bottom: 6.518904824vw;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1280px) {
  .mb-100 {
    margin-bottom: 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .mb-100 {
    margin-bottom: 13.037809648vw;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb50 {
  padding-bottom: 50px !important;
}
@media only screen and (max-width: 1280px) {
  .pb50 {
    padding-bottom: 3.90625vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .pb50 {
    padding-bottom: 6.518904824vw !important;
  }
}

@media only screen and (max-width: 767px) {
  .pt-0-m {
    padding-top: 0 !important;
  }

  .mt-0-m {
    margin-top: 0 !important;
  }

  .mb-0-m {
    margin-bottom: 0 !important;
  }

  .mb-30-m {
    margin-bottom: 3.9113428944vw;
  }

  .mb-60-m {
    margin-bottom: 7.8226857888vw;
  }

  .mb-100-m {
    margin-bottom: 13.037809648vw;
  }
}
.microsite > .container {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.microsite > .container .row:not(.hold) {
  margin-left: -15px;
  margin-right: -15px;
}
.microsite > .container .programme_site {
  overflow: hidden;
}
@media (min-width: 768px) {
  .microsite > .container .programme_site {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.microsite > .container .top-info-area {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .microsite > .container .top-info-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .microsite > .container .temp-template {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.microsite > .container .main-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .microsite > .container .main-container {
    margin-bottom: 30px;
  }
}

.section-masthead img {
  image-rendering: -webkit-optimize-contrast;
}

html.fixed {
  overflow: hidden;
}

a, a:hover, a:active, a:focus {
  color: inherit;
}

.bg-white {
  background-color: #FFF;
}

.btn-yellow {
  background-color: #bd8943;
  color: #fff;
  padding: 15px;
  max-width: 250px;
  width: 250px;
  border-radius: 15px;
  margin: 0 auto 10px auto;
}
@media only screen and (max-width: 1280px) {
  .btn-yellow {
    width: 19.53125vw;
    max-width: 19.53125vw;
    top: 6.25vw;
    padding: 1.171875vw;
    border-radius: 1.171875vw;
    margin: 0vw auto 0.78125vw auto;
  }
}
@media only screen and (max-width: 767px) {
  .btn-yellow {
    width: 32.5945241199vw;
    max-width: 32.5945241199vw;
    top: 10.4302477184vw;
    padding: 1.9556714472vw;
    border-radius: 1.9556714472vw;
    margin: 0vw auto 1.3037809648vw auto;
  }
}
.btn-yellow.full-width {
  max-width: 540px;
  width: 540px;
  padding: 15px 0 12px 0;
}
@media only screen and (max-width: 1280px) {
  .btn-yellow.full-width {
    max-width: 42.1875vw;
    width: 42.1875vw;
    padding: 1.171875vw 0 0.9375vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .btn-yellow.full-width {
    max-width: 70.4041720991vw;
    width: 70.4041720991vw;
    padding: 1.9556714472vw 0 1.5645371578vw 0;
  }
}

.btn-white {
  background-color: #ffffff;
  color: #fff;
  padding: 15px;
  max-width: 250px;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 10px auto;
}
@media only screen and (max-width: 1280px) {
  .btn-white {
    max-width: 19.53125vw;
    top: 6.25vw;
    padding: 1.171875vw;
    border-radius: 1.171875vw;
    margin: 0vw auto 0.78125vw auto;
  }
}
@media only screen and (max-width: 767px) {
  .btn-white {
    max-width: 32.5945241199vw;
    top: 10.4302477184vw;
    padding: 1.9556714472vw;
    border-radius: 1.9556714472vw;
    margin: 0vw auto 1.3037809648vw auto;
  }
}

.w-100 {
  width: 100%;
}

.position-overlay {
  margin-top: -3px;
}
@media only screen and (max-width: 1280px) {
  .position-overlay {
    margin-top: -0.234375vw;
  }
}

.divider {
  position: relative;
  z-index: 9;
}

.indian-outreach-bg {
  background-image: url("https://ch-api.healthhub.sg/api/public/content/e177076bd0064f49a0471fbd7dad65d2?v=3993982d");
  background-color: #502451;
  background-repeat: repeat;
  background-position: center top;
  padding-bottom: 200px;
}
@media only screen and (max-width: 1280px) {
  .indian-outreach-bg {
    padding-bottom: 15.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .indian-outreach-bg {
    padding-bottom: 26.075619296vw;
    background-size: contain;
  }
}

.indian-outreach-dark-bg {
  background-image: url("https://ch-api.healthhub.sg/api/public/content/b47a2cd26c6946d89f8ac53ea326c241?v=8be95059");
  background-color: #3e2149;
  background-repeat: repeat;
  background-position: center top;
  padding-bottom: 200px;
}
@media only screen and (max-width: 1280px) {
  .indian-outreach-dark-bg {
    padding-bottom: 15.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .indian-outreach-dark-bg {
    padding-bottom: 26.075619296vw;
    background-size: contain;
  }
}

.section-masthead {
  padding-top: 135px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 1280px) {
  .section-masthead {
    padding-top: 10.546875vw;
    margin-bottom: -0.390625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-masthead {
    padding-top: 2.6075619296vw;
    margin-bottom: -0.6518904824vw;
  }
}

.section-header .component-header {
  position: relative;
}
.section-header .component-header .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 80%;
  margin: 0 auto;
  padding: 45px 0 45px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .section-header .component-header .nav-tabs {
    padding: 3.515625vw 0 6.640625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-header .component-header .nav-tabs {
    display: block;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-height: 11.9947848761vw;
    padding: 0;
  }
  .section-header .component-header .nav-tabs .nav-icon {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .section-header .component-header .nav-tabs.open {
    max-height: 90vh;
  }
  .section-header .component-header .nav-tabs.open .nav-icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .section-header .component-header .nav-tabs li {
    position: relative;
    display: block;
    width: 100%;
  }
  .section-header .component-header .nav-tabs li.nav-tab .nav-text {
    margin-top: 0;
    margin-bottom: 5.4758800522vw;
  }
}
.section-header .component-header .nav-tabs .mobile-nav {
  display: none;
}
@media only screen and (max-width: 767px) {
  .section-header .component-header .nav-tabs .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4.5632333768vw;
    margin-bottom: 5.4758800522vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-header .component-header .nav-tabs .mobile-nav .nav-icon {
    width: 2.6075619296vw;
    height: 1.9556714472vw;
    margin-left: 2.6075619296vw;
  }
}
.section-header .component-header .nav-tabs .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-header .component-header .nav-tabs .nav-item .nav-text {
  text-align: center;
  text-transform: capitalize;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1280px) {
  .section-header .component-header .nav-tabs .nav-item .nav-text {
    margin-top: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-header .component-header .nav-tabs .nav-item .nav-text {
    margin-top: 2.6075619296vw;
    margin-bottom: 2.6075619296vw;
  }
}
.section-header .component-header .nav-img {
  width: 100px;
}
@media only screen and (max-width: 1280px) {
  .section-header .component-header .nav-img {
    width: 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-header .component-header .nav-img {
    display: none;
  }
}

.kv.c-center img {
  width: 100%;
}

.c-center {
  position: relative;
}
.c-center .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 50px;
}
@media only screen and (max-width: 1280px) {
  .c-center .inner {
    padding: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-center .inner {
    padding: 6.518904824vw;
  }
}
.c-center .inner-secondary {
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 40px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1280px) {
  .c-center .inner-secondary {
    padding: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-center .inner-secondary {
    padding: 6.518904824vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
}

.section-wrapper {
  padding: 100px;
}
@media only screen and (max-width: 1280px) {
  .section-wrapper {
    padding: 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-wrapper {
    padding: 13.037809648vw 5.2151238592vw;
  }
}
.section-wrapper.secondary {
  padding: 50px;
}
@media only screen and (max-width: 1280px) {
  .section-wrapper.secondary {
    padding: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-wrapper.secondary {
    padding: 6.518904824vw 1.9556714472vw;
  }
}

.grid-wrapper {
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (max-width: 1280px) {
  .grid-wrapper {
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .grid-wrapper {
    padding-left: 0vw;
    padding-right: 0vw;
  }
}

.divider-wrapper {
  position: relative;
}
.divider-wrapper img {
  position: absolute;
  margin-top: -23px;
}
@media only screen and (max-width: 1280px) {
  .divider-wrapper img {
    margin-top: -1.796875vw;
  }
}
@media only screen and (max-width: 767px) {
  .divider-wrapper img {
    margin-top: -1.9556714472vw;
  }
}

.slick-slider .slick-prev {
  left: 0px;
}
.slick-slider .slick-next {
  right: 0px;
}

.vid-icon.video-only img {
  bottom: 95px;
}
.vid-icon img {
  margin: 0 auto;
  width: 45px;
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 1280px) {
  .vid-icon img {
    width: 4.6875vw;
    bottom: 2.734375vw;
  }
}
@media only screen and (max-width: 767px) {
  .vid-icon img {
    width: 7.8226857888vw;
    bottom: 4.5632333768vw;
  }
}
@media only screen and (max-width: 575px) {
  .vid-icon img {
    bottom: 6.0869565217vw;
  }
}
@media only screen and (max-width: 414px) {
  .vid-icon img {
    bottom: 8.4541062802vw;
  }
}

.recipe-filters {
  color: #bd8943;
}
.recipe-filters a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  white-space: nowrap;
}
.recipe-filters a.active {
  text-decoration: underline;
  font-weight: bold;
  font-family: "Futura-Bold" !important;
}

.recipe-card {
  padding-bottom: 30px;
}
.recipe-card .recipe-name {
  min-height: 64px;
}

.view-more-recipes {
  display: inline-block;
}
@media (max-width: 767px) {
  .view-more-recipes {
    display: none !important;
  }
}

.btn-buttons-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-min-height {
  min-height: 77.5px;
}
@media (max-width: 1280px) {
  .btn-min-height {
    min-height: 6.0546875vw;
  }
}
@media (max-width: 767px) {
  .btn-min-height {
    min-height: 11.408083442vw;
  }
}

.btn-spacing {
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 1280px) {
  .btn-spacing {
    margin-left: 0.78125vw;
    margin-right: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .btn-spacing {
    margin-left: 1.9556714472vw;
    margin-right: 1.9556714472vw;
  }
}

.tab-quiz {
  position: relative;
}
.tab-quiz .quiz-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .tab-quiz .quiz-pagination {
    bottom: 4.6875vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-quiz .quiz-pagination {
    bottom: 7.8226857888vw;
  }
}
.tab-quiz .quiz-pagination .bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 20px;
  margin: 0 2px;
}
.tab-quiz .quiz-pagination .bullet.active {
  background-color: #000000;
  border: 2px solid #000000;
}
@media screen and (max-width: 767px) {
  .tab-quiz .quiz-pagination .bullet {
    width: 9px;
    height: 9px;
  }
}
@media screen and (max-width: 767px) {
  .tab-quiz .f-2 {
    font-size: 5.3455019557vw;
  }
  .tab-quiz .f-3-secondary {
    font-size: 3.1290743155vw;
  }
  .tab-quiz .f-8 {
    font-size: 3.259452412vw;
  }
}

.section-quiz {
  position: relative;
  display: none;
}
.section-quiz.active {
  display: block;
}
.section-quiz .question {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-quiz .quiz-container {
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0px 84px 0px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container {
    padding: 3.90625vw 0vw 6.5625vw 0vw;
  }
}
@media only screen and (max-width: 1024px) {
  .section-quiz .quiz-container {
    padding: 4.6875vw 0vw 7.8125vw 0vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container {
    width: 100%;
    padding: 0 5.078125vw;
  }
}
.section-quiz .quiz-container.result-container {
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container.result-container {
    width: 100%;
  }
}
.section-quiz .quiz-container .btn-start-quiz {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 200px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container .btn-start-quiz {
    top: 15.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container .btn-start-quiz {
    top: 16.796875vw;
  }
}
.section-quiz .quiz-container .quiz-start-icon {
  width: 40px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container .quiz-start-icon {
    width: 3.125vw;
    margin-bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container .quiz-start-icon {
    width: 4.5632333768vw;
    margin-bottom: 1.3037809648vw;
  }
}
.section-quiz .quiz-container .quiz-text {
  margin-top: 30px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container .quiz-text {
    margin-top: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container .quiz-text {
    margin-top: 14.3415906128vw;
    width: 72%;
  }
}
.section-quiz .quiz-container .quiz-question {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container .quiz-question {
    margin-bottom: 3.515625vw;
  }
}
@media only screen and (max-width: 767) {
  .section-quiz .quiz-container .quiz-question {
    margin-bottom: 7.421875vw;
  }
}
.section-quiz .quiz-container .btn-options {
  max-width: 1024px;
  width: 100%;
}
.section-quiz .quiz-container .quiz-option {
  width: 100%;
  cursor: pointer;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #502451;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 0 70px;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.section-quiz .quiz-container .quiz-option:hover {
  background-color: #502451;
  color: #ffffff;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .quiz-container .quiz-option {
    height: 7.8125vw;
    border-width: 0.234375vw;
    border-radius: 1.5625vw;
    margin-bottom: 1.5625vw;
    padding: 0 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .quiz-container .quiz-option {
    height: 13.037809648vw;
    border-width: 0.3911342894vw;
    border-radius: 2.6075619296vw;
    margin-bottom: 5.2151238592vw;
    padding: 0 2.6075619296vw;
  }
}
.section-quiz .answer-container {
  position: absolute;
  color: #fff;
  border: 3px solid #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 45px 100px 78px 100px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 0px 150px 0px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container {
    border: 0.234375vw solid #fff;
    margin: 3.515625vw 7.8125vw 6.640625vw 7.8125vw;
    padding: 3.90625vw 0vw 11.71875vw 0vw;
    border-radius: 1.171875vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container {
    margin: 5.2151238592vw 2.34375vw 13.037809648vw 2.34375vw;
    padding: 3.90625vw 0vw 11.71875vw 0vw;
  }
}
.section-quiz .answer-container .answer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container .answer-title {
    margin-bottom: 3.515625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container .answer-title {
    margin-bottom: 3.515625vw;
  }
}
.section-quiz .answer-container .answer-icon {
  margin-right: 18px;
  width: 60px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container .answer-icon {
    margin-right: 1.40625vw;
    width: 4.6875vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container .answer-icon {
    margin-right: 2.3468057366vw;
    width: 7.8226857888vw;
  }
}
.section-quiz .answer-container.correct-frame .correct-icon,
.section-quiz .answer-container.correct-frame .correct-img {
  display: block;
}
.section-quiz .answer-container.correct-frame .wrong-icon,
.section-quiz .answer-container.correct-frame .wrong-img {
  display: none;
}
.section-quiz .answer-container.wrong-frame .correct-icon,
.section-quiz .answer-container.wrong-frame .correct-img {
  display: none;
}
.section-quiz .answer-container.wrong-frame .wrong-icon,
.section-quiz .answer-container.wrong-frame .wrong-img {
  display: block;
}
.section-quiz .answer-container.opacity-bg {
  opacity: 0.97;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.55);
}
.section-quiz .answer-container.opacity-bg.correct-frame {
  background-color: #446031;
}
.section-quiz .answer-container.opacity-bg.wrong-frame {
  background-color: #801136;
}
.section-quiz .answer-container .btn-start-quiz {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container .btn-start-quiz {
    bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container .btn-start-quiz {
    bottom: 3.9113428944vw;
  }
}
.section-quiz .answer-container .btn-start-quiz.btn-next {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container .btn-start-quiz.btn-next {
    margin-bottom: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container .btn-start-quiz.btn-next {
    margin-bottom: 6.518904824vw;
  }
}
.section-quiz .answer-container .quiz-start-icon {
  width: 40px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container .quiz-start-icon {
    width: 3.125vw;
    margin-bottom: 1.171875vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container .quiz-start-icon {
    width: 4.5632333768vw;
    margin-bottom: 1.9556714472vw;
  }
}
.section-quiz .answer-explanation {
  margin-top: 45px;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-explanation {
    margin-top: 3.515625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-explanation {
    margin-top: 5.8670143416vw;
  }
}
.section-quiz .answer-container-img {
  width: 168px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .answer-container-img {
    width: 10.9375vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .answer-container-img {
    width: 36.5058670143vw;
  }
}
.section-quiz .result-container .result-img {
  width: 122px;
  margin-right: 30px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .result-container .result-img {
    width: 9.53125vw;
    margin-right: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .result-container .result-img {
    width: 13.037809648vw;
    margin-right: 1.9556714472vw;
  }
}
.section-quiz .result-container .result-text {
  margin-top: 25px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .result-container .result-text {
    margin-top: 1.953125vw;
    margin-bottom: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .result-container .result-text {
    margin-top: 3.259452412vw;
    margin-bottom: 6.518904824vw;
  }
}
.section-quiz .result-container .result-text .score-text-title {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-quiz .result-container .result-text .score-text-title.highest-score {
    width: 65%;
  }
  .section-quiz .result-container .result-text .score-text-title.medium-score {
    width: 65%;
  }
  .section-quiz .result-container .result-text .score-text-title.lowest-score {
    width: 82%;
  }
}
.section-quiz .result-container .btn-try-again {
  top: 20px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .result-container .btn-try-again {
    top: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .result-container .btn-try-again {
    top: 7.8226857888vw;
  }
}
.section-quiz .result-button-container .result-btn {
  background-color: #bd8943;
  color: #fff;
  padding: 15px;
  width: 465px;
  border-radius: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .section-quiz .result-button-container .result-btn {
    top: 6.25vw;
    padding: 1.171875vw;
    width: 36.328125vw;
    border-radius: 1.171875vw;
    margin-bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .section-quiz .result-button-container .result-btn {
    top: 10.4302477184vw;
    padding: 1.9556714472vw;
    width: 60.6258148631vw;
    border-radius: 1.9556714472vw;
    margin-bottom: 1.3037809648vw;
  }
}
.section-quiz .result-button-container .result-btn a {
  color: inherit;
}
.section-quiz .result-button-container .result-btn a:hover {
  color: inherit;
}

.healthy-eating .dining-out-together a {
  text-decoration: underline;
  color: inherit;
}
.healthy-eating .you-may-also-like .wrap {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #bd8943;
  padding: 50px;
}
@media only screen and (max-width: 1280px) {
  .healthy-eating .you-may-also-like .wrap {
    border-bottom-left-radius: 1.5625vw;
    border-bottom-right-radius: 1.5625vw;
    padding: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .healthy-eating .you-may-also-like .wrap {
    border-bottom-left-radius: 2.6075619296vw;
    border-bottom-right-radius: 2.6075619296vw;
    padding: 6.518904824vw;
  }
}

.healthy-eating-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  visibility: hidden;
}
@media screen and (max-width: 1280px) {
  .healthy-eating-popup {
    padding: 2.34375vw;
  }
}
@media screen and (max-width: 1280px) {
  .healthy-eating-popup {
    padding: 6.518904824vw;
  }
}
.healthy-eating-popup.open {
  visibility: visible;
  overflow-y: auto;
  z-index: 99999;
}
.healthy-eating-popup .inner-wrapper {
  background-color: #502451;
  border: 5px solid #FFF;
  border-radius: 20px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
}
@media screen and (max-width: 1280px) {
  .healthy-eating-popup .inner-wrapper {
    border: 0.390625vw solid #FFF;
    border-radius: 1.5625vw;
    max-width: 76.5625vw;
    padding: 3.90625vw;
  }
}
@media screen and (max-width: 1280px) {
  .healthy-eating-popup .inner-wrapper {
    border: 0.6518904824vw solid #FFF;
    border-radius: 2.6075619296vw;
    max-width: 127.7705345502vw;
    padding: 6.518904824vw;
  }
}

.popup-container {
  position: relative;
}
.popup-container .close-btn-wrapper {
  position: absolute;
  top: -25px;
  right: -20px;
}
@media screen and (max-width: 1280px) {
  .popup-container .close-btn-wrapper {
    top: -1.953125vw;
    right: -1.5625vw;
  }
}
@media screen and (max-width: 1280px) {
  .popup-container .close-btn-wrapper {
    top: -1.953125vw;
    right: -1.5625vw;
  }
}
.popup-container .close-btn-wrapper img {
  width: 20px;
}
@media screen and (max-width: 1280px) {
  .popup-container .close-btn-wrapper img {
    width: 1.5625vw;
  }
}
@media screen and (max-width: 1280px) {
  .popup-container .close-btn-wrapper img {
    width: 2.6075619296vw;
  }
}
.popup-container .wrap-slider {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.popup-container .wrap-slider.open {
  opacity: 1;
}
.popup-container .slide-arrow {
  top: 50%;
  width: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}
.popup-container .slide-arrow img {
  width: 40px;
}
.popup-container .slide-arrow span {
  display: inline-block;
  margin-top: 20px;
}
.popup-container .slick-prev {
  left: 0px;
}
.popup-container .slick-next {
  right: 0px;
}
@media screen and (max-width: 600px) {
  .popup-container .slick-prev, .popup-container .slick-next {
    visibility: visible;
  }
  .popup-container .slick-prev img, .popup-container .slick-next img {
    width: 60%;
  }
}
.popup-container .slick-prev:before,
.popup-container .slick-next:before {
  content: none;
}
.popup-container .arrow-position {
  font-family: "CocogoosePro", Helvetica, Arial, sans-serif !important;
  font-weight: normal;
  letter-spacing: 0.025em;
  background-color: black;
  color: white;
  font-size: 26px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  text-shadow: none;
  margin: 0 auto;
}
.popup-container .healthy-food-slider .slide-arrow {
  top: auto;
  bottom: 0;
  display: block;
}
.popup-container .healthy-food-slider .slick-prev {
  left: 35%;
}
@media (max-width: 767px) {
  .popup-container .healthy-food-slider .slick-prev {
    left: 30%;
  }
}
.popup-container .healthy-food-slider .slick-next {
  right: 35%;
}
@media (max-width: 767px) {
  .popup-container .healthy-food-slider .slick-next {
    right: 30%;
  }
}
.popup-container .healthy-food-slider .slick-prev.hidden,
.popup-container .healthy-food-slider .slick-next.hidden {
  opacity: 0;
  pointer-events: none;
}
.popup-container .use-my-healthy-plate-slider .slide-arrow {
  top: 50%;
  bottom: auto;
}
.popup-container .use-my-healthy-plate-slider .slick-prev {
  left: 0;
}
.popup-container .use-my-healthy-plate-slider .slick-next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .popup-container .use-my-healthy-plate-slider .slick-slide img {
    width: 70%;
    margin: 0 auto;
  }
}
.popup-container .fake-height {
  min-height: 130px;
}
@media screen and (max-width: 1280px) {
  .popup-container .fake-height {
    min-height: 10.15625vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-container .fake-height {
    min-height: 29.9869621904vw;
  }
}

.recipes .c-center .btn-yellow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
}
@media screen and (max-width: 767px) {
  .recipes .c-center .btn-yellow {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    top: 10px;
  }
}

.three-col-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 65px;
}
.three-col-component .three-col-item {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .three-col-component .three-col-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7.8226857888vw;
  }
  .three-col-component .three-col-item .img-wrapper {
    width: 35%;
  }
}
.three-col-component .three-col-item .text-wrapper {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .three-col-component .three-col-item .text-wrapper {
    width: 65%;
    text-align: left;
    padding-left: 3.9113428944vw;
  }
}
@media only screen and (max-width: 767px) {
  .three-col-component .three-col-item.right .img-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .three-col-component .three-col-item.right .text-wrapper {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .three-col-component .three-col-item.right .text-wrapper {
    padding-left: 0;
    padding-right: 3.9113428944vw;
  }
}
@media only screen and (max-width: 1280px) {
  .three-col-component {
    margin-bottom: 5.078125vw;
  }
}
@media only screen and (max-width: 767px) {
  .three-col-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 5.2151238592vw;
  }
}

.incidental-activities-title {
  position: relative;
}
.incidental-activities-title img {
  width: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .incidental-activities-title img {
    width: 39.0625vw;
  }
}
@media only screen and (max-width: 767px) {
  .incidental-activities-title img {
    width: 59.9739243807vw;
  }
}
.incidental-activities-title img.full-width {
  width: 100%;
}
.incidental-activities-title .section-title {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .incidental-activities-title .section-title {
    top: 1.71875vw;
  }
}
@media only screen and (max-width: 767px) {
  .incidental-activities-title .section-title {
    top: 2.8683181226vw;
  }
}

.how-else-can-i-stay-active .wrap {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #bd8943;
  padding: 50px 20px;
}
@media only screen and (max-width: 1280px) {
  .how-else-can-i-stay-active .wrap {
    padding: 3.90625vw 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .how-else-can-i-stay-active .wrap {
    padding: 6.518904824vw 1.5625vw;
  }
}

.stay-active-wrapper {
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .stay-active-wrapper {
    min-height: 11.71875vw;
  }
}
@media only screen and (max-width: 767px) {
  .stay-active-wrapper {
    min-height: 19.556714472vw;
  }
}

.how-else-can-i-stay-active-slick img {
  width: 100%;
}

.health-screening-age-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .health-screening-age-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.health-screening-age-group .health-screening-age-group-item {
  width: 25%;
}
@media (max-width: 767px) {
  .health-screening-age-group .health-screening-age-group-item {
    width: 100%;
  }
  .health-screening-age-group .health-screening-age-group-item img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10.4302477184vw;
  }
}

.fun-activities-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fun-activities-wrapper {
    width: 100%;
  }
}
.fun-activities-wrapper .fun-activities-text {
  position: absolute;
  top: -10%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
}
.fun-activities-wrapper .fun-activities-button {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
}

.mental-wellness-slick .slick-next {
  top: 50%;
  right: 10%;
  visibility: visible;
}
.mental-wellness-slick .slick-prev {
  top: 50%;
  left: 10%;
  visibility: visible;
}
.mental-wellness-slick .slick-prev:before,
.mental-wellness-slick .slick-next:before {
  display: none;
}
.mental-wellness-slick .slick-disabled {
  display: none !important;
}
@media (max-width: 767px) {
  .mental-wellness-slick .c-center .inner {
    width: 85%;
  }
  .mental-wellness-slick .slick-next {
    right: 5%;
    width: 20px;
  }
  .mental-wellness-slick .slick-next img {
    width: 20px;
  }
  .mental-wellness-slick .slick-prev {
    left: 5%;
    width: 20px;
  }
  .mental-wellness-slick .slick-prev img {
    width: 20px;
  }
}