@font-face {
  font-family: "Open Sans Light";
  src: url("./fonts/open-sans/OpenSans-Light.eot");
  src: local("Open Sans Light"), local("OpenSans-Light"), url("./fonts/open-sans/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Light.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Light.woff") format("woff"), url("./fonts/open-sans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Semibold";
  src: url("./fonts/open-sans/OpenSans-Semibold.eot");
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url("./fonts/open-sans/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Semibold.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Semibold.woff") format("woff"), url("./fonts/open-sans/OpenSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Bold";
  src: url("./fonts/open-sans/OpenSans-Bold.eot");
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("./fonts/open-sans/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Bold.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Bold.woff") format("woff"), url("./fonts/open-sans/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Regular";
  src: url("./fonts/open-sans/OpenSans-Regular.eot");
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("./fonts/open-sans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Regular.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Regular.woff") format("woff"), url("./fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* colors */
.d-none {
  display: none !important;
}

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

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

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

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

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

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-static {
  position: static !important;
}

.position-fixed {
  position: fixed !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-none {
  text-transform: none !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.flex-10 {
  flex: 0 0 calc(10% - 34px * 9 / 10);
  width: calc(10% - 34px * 9 / 10);
  margin-right: 34px;
}

.flex-20 {
  flex: 0 0 calc(20% - 34px * 4 / 5);
  width: calc(20% - 34px * 4 / 5);
  margin-right: 34px;
}

.flex-25 {
  flex: 0 0 calc(25% - 34px * 3 / 4);
  width: calc(25% - 34px * 3 / 4);
  margin-right: 34px;
}

.flex-33 {
  flex: 0 0 calc(33% - 34px * 2 / 3);
  width: calc(33% - 34px * 2 / 3);
  margin-right: 34px;
}

.flex-40 {
  flex: 0 0 calc(40% - 34px);
  width: calc(40% - 34px);
  margin-right: 34px;
}

.flex-50 {
  flex: 0 0 calc(50% - 34px / 2);
  width: calc(50% - 34px / 2);
  margin-right: 34px;
}

.flex-60 {
  flex: 0 0 calc(60% - 34px);
  width: calc(60% - 34px);
  margin-right: 34px;
}

.flex-67 {
  flex: 0 0 calc(67% - 34px);
  width: calc(67% - 34px);
  margin-right: 34px;
}

.flex-75 {
  flex: 0 0 calc(75% - 34px);
  width: calc(75% - 34px);
  margin-right: 34px;
}

.flex-80 {
  flex: 0 0 calc(80% - 34px);
  width: calc(80% - 34px);
  margin-right: 34px;
}

.flex-90 {
  flex: 0 0 calc(80% - 34px);
  width: calc(80% - 34px);
  margin-right: 34px;
}

.flex-100 {
  flex: 0 0 100%;
  width: 100%;
}

.flex-auto {
  flex: 0 0 auto;
  width: auto;
  margin-right: 34px;
}

.flex-grow {
  flex: 1;
  width: auto;
  margin-right: 34px;
}
.flex-grow:last-of-type {
  margin-right: 0;
}

.flex-shrink {
  flex: 0;
  width: 0;
  margin-right: 34px;
}
.flex-shrink:last-of-type {
  margin-right: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.align-items-baseline {
  align-items: baseline;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-baseline {
  align-self: baseline;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.margin-right {
  margin-right: 8.5px;
}

.margin-left {
  margin-left: 8.5px;
}

.margin-bottom {
  margin-bottom: 8.5px;
}

.margin-top {
  margin-top: 8.5px;
}

.margin-inline {
  margin-inline: 4.25px;
}

.margin2-right {
  margin-right: 17px;
}

.margin2-left {
  margin-left: 17px;
}

.margin2-bottom {
  margin-bottom: 17px;
}

.margin2-top {
  margin-top: 17px;
}

.margin2-inline {
  margin-inline: 8.5px;
}

.margin3-right {
  margin-right: 25.5px;
}

.margin3-left {
  margin-left: 25.5px;
}

.margin3-bottom {
  margin-bottom: 25.5px;
}

.margin3-top {
  margin-top: 25.5px;
}

.margin3-inline {
  margin-inline: 12.75px;
}

.margin4-right {
  margin-right: 34px;
}

.margin4-left {
  margin-left: 34px;
}

.margin4-bottom {
  margin-bottom: 34px;
}

.margin4-top {
  margin-top: 34px;
}

.margin4-inline {
  margin-inline: 17px;
}

.margin5-right {
  margin-right: 42.5px;
}

.margin5-left {
  margin-left: 42.5px;
}

.margin5-bottom {
  margin-bottom: 42.5px;
}

.margin5-top {
  margin-top: 42.5px;
}

.margin5-inline {
  margin-inline: 21.25px;
}

.padding-right {
  padding-right: 8.5px;
}

.padding-left {
  padding-left: 8.5px;
}

.padding-bottom {
  padding-bottom: 8.5px;
}

.padding-top {
  padding-top: 8.5px;
}

.padding-inline {
  padding-inline: 4.25px;
}

.padding2-right {
  padding-right: 17px;
}

.padding2-left {
  padding-left: 17px;
}

.padding2-bottom {
  padding-bottom: 17px;
}

.padding2-top {
  padding-top: 17px;
}

.padding2-inline {
  padding-inline: 8.5px;
}

.padding3-right {
  padding-right: 25.5px;
}

.padding3-left {
  padding-left: 25.5px;
}

.padding3-bottom {
  padding-bottom: 25.5px;
}

.padding3-top {
  padding-top: 25.5px;
}

.padding3-inline {
  padding-inline: 12.75px;
}

.padding4-right {
  padding-right: 34px;
}

.padding4-left {
  padding-left: 34px;
}

.padding4-bottom {
  padding-bottom: 34px;
}

.padding4-top {
  padding-top: 34px;
}

.padding4-inline {
  padding-inline: 17px;
}

.padding5-right {
  padding-right: 42.5px;
}

.padding5-left {
  padding-left: 42.5px;
}

.padding5-bottom {
  padding-bottom: 42.5px;
}

.padding5-top {
  padding-top: 42.5px;
}

.padding5-inline {
  padding-inline: 21.25px;
}

@media (min-width: 450px) {
  .d-xm-none {
    display: none !important;
  }
  .d-xm-block {
    display: block !important;
  }
  .d-xm-flex {
    display: flex !important;
  }
  .d-xm-inline-block {
    display: inline-block !important;
  }
  .d-xm-inline-flex {
    display: inline-flex !important;
  }
  .d-xm-grid {
    display: grid !important;
  }
  .flex-xm-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xm-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xm-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xm-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xm-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xm-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xm-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xm-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xm-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xm-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xm-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xm-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xm-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xm-grow {
    flex: 1;
    width: auto;
  }
  .flex-xm-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xm-wrap {
    flex-wrap: wrap;
  }
  .flex-xm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xm-row {
    flex-direction: row;
  }
  .flex-xm-column {
    flex-direction: column;
  }
  .flex-xm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xm-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xm-start {
    align-items: flex-start;
  }
  .align-items-xm-end {
    align-items: flex-end;
  }
  .align-items-xm-center {
    align-items: center;
  }
  .align-items-xm-stretch {
    align-items: stretch;
  }
  .align-items-xm-baseline {
    align-items: baseline;
  }
  .align-self-xm-start {
    align-self: flex-start;
  }
  .align-self-xm-end {
    align-self: flex-end;
  }
  .align-self-xm-center {
    align-self: center;
  }
  .align-self-xm-stretch {
    align-self: stretch;
  }
  .align-self-xm-baseline {
    align-self: baseline;
  }
  .align-content-xm-start {
    align-content: flex-start;
  }
  .align-content-xm-end {
    align-content: flex-end;
  }
  .align-content-xm-center {
    align-content: center;
  }
  .align-content-xm-stretch {
    align-content: stretch;
  }
  .align-content-xm-between {
    align-content: space-between;
  }
  .justify-content-xm-start {
    justify-content: flex-start;
  }
  .justify-content-xm-end {
    justify-content: flex-end;
  }
  .justify-content-xm-center {
    justify-content: center;
  }
  .justify-content-xm-between {
    justify-content: space-between;
  }
  .justify-content-xm-around {
    justify-content: space-around;
  }
  .justify-content-xm-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .flex-sm-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-sm-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-sm-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-sm-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-sm-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-sm-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-sm-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-sm-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-sm-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-sm-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-sm-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-sm-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-sm-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-sm-grow {
    flex: 1;
    width: auto;
  }
  .flex-sm-shrink {
    flex: 0;
    width: 0;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-items-sm-baseline {
    align-items: baseline;
  }
  .align-self-sm-start {
    align-self: flex-start;
  }
  .align-self-sm-end {
    align-self: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .align-self-sm-stretch {
    align-self: stretch;
  }
  .align-self-sm-baseline {
    align-self: baseline;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .flex-md-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-md-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-md-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-md-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-md-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-md-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-md-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-md-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-md-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-md-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-md-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-md-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-md-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-md-grow {
    flex: 1;
    width: auto;
  }
  .flex-md-shrink {
    flex: 0;
    width: 0;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .align-self-md-start {
    align-self: flex-start;
  }
  .align-self-md-end {
    align-self: flex-end;
  }
  .align-self-md-center {
    align-self: center;
  }
  .align-self-md-stretch {
    align-self: stretch;
  }
  .align-self-md-baseline {
    align-self: baseline;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .flex-lg-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-lg-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-lg-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-lg-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-lg-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-lg-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-lg-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-lg-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-lg-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-lg-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-lg-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-lg-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-lg-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-lg-grow {
    flex: 1;
    width: auto;
  }
  .flex-lg-shrink {
    flex: 0;
    width: 0;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .align-self-lg-start {
    align-self: flex-start;
  }
  .align-self-lg-end {
    align-self: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .align-self-lg-stretch {
    align-self: stretch;
  }
  .align-self-lg-baseline {
    align-self: baseline;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .flex-xl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-items-xl-baseline {
    align-items: baseline;
  }
  .align-self-xl-start {
    align-self: flex-start;
  }
  .align-self-xl-end {
    align-self: flex-end;
  }
  .align-self-xl-center {
    align-self: center;
  }
  .align-self-xl-stretch {
    align-self: stretch;
  }
  .align-self-xl-baseline {
    align-self: baseline;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .flex-xxl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xxl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xxl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xxl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xxl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xxl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xxl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xxl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-items-xxl-baseline {
    align-items: baseline;
  }
  .align-self-xxl-start {
    align-self: flex-start;
  }
  .align-self-xxl-end {
    align-self: flex-end;
  }
  .align-self-xxl-center {
    align-self: center;
  }
  .align-self-xxl-stretch {
    align-self: stretch;
  }
  .align-self-xxl-baseline {
    align-self: baseline;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .flex-xxxl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xxxl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xxxl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xxxl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xxxl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xxxl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xxxl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xxxl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxxl-row {
    flex-direction: row;
  }
  .flex-xxxl-column {
    flex-direction: column;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xxxl-start {
    align-items: flex-start;
  }
  .align-items-xxxl-end {
    align-items: flex-end;
  }
  .align-items-xxxl-center {
    align-items: center;
  }
  .align-items-xxxl-stretch {
    align-items: stretch;
  }
  .align-items-xxxl-baseline {
    align-items: baseline;
  }
  .align-self-xxxl-start {
    align-self: flex-start;
  }
  .align-self-xxxl-end {
    align-self: flex-end;
  }
  .align-self-xxxl-center {
    align-self: center;
  }
  .align-self-xxxl-stretch {
    align-self: stretch;
  }
  .align-self-xxxl-baseline {
    align-self: baseline;
  }
  .align-content-xxxl-start {
    align-content: flex-start;
  }
  .align-content-xxxl-end {
    align-content: flex-end;
  }
  .align-content-xxxl-center {
    align-content: center;
  }
  .align-content-xxxl-stretch {
    align-content: stretch;
  }
  .align-content-xxxl-between {
    align-content: space-between;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxxl-center {
    justify-content: center;
  }
  .justify-content-xxxl-between {
    justify-content: space-between;
  }
  .justify-content-xxxl-around {
    justify-content: space-around;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly;
  }
}
@font-face {
  font-family: "Open Sans Light";
  src: url("./fonts/open-sans/OpenSans-Light.eot");
  src: local("Open Sans Light"), local("OpenSans-Light"), url("./fonts/open-sans/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Light.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Light.woff") format("woff"), url("./fonts/open-sans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Semibold";
  src: url("./fonts/open-sans/OpenSans-Semibold.eot");
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url("./fonts/open-sans/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Semibold.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Semibold.woff") format("woff"), url("./fonts/open-sans/OpenSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Bold";
  src: url("./fonts/open-sans/OpenSans-Bold.eot");
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("./fonts/open-sans/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Bold.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Bold.woff") format("woff"), url("./fonts/open-sans/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Regular";
  src: url("./fonts/open-sans/OpenSans-Regular.eot");
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("./fonts/open-sans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/open-sans/OpenSans-Regular.woff2") format("woff2"), url("./fonts/open-sans/OpenSans-Regular.woff") format("woff"), url("./fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* colors */
.d-none {
  display: none !important;
}

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

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

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

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

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

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-static {
  position: static !important;
}

.position-fixed {
  position: fixed !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-none {
  text-transform: none !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.flex-10 {
  flex: 0 0 calc(10% - 34px * 9 / 10);
  width: calc(10% - 34px * 9 / 10);
  margin-right: 34px;
}

.flex-20 {
  flex: 0 0 calc(20% - 34px * 4 / 5);
  width: calc(20% - 34px * 4 / 5);
  margin-right: 34px;
}

.flex-25 {
  flex: 0 0 calc(25% - 34px * 3 / 4);
  width: calc(25% - 34px * 3 / 4);
  margin-right: 34px;
}

.flex-33 {
  flex: 0 0 calc(33% - 34px * 2 / 3);
  width: calc(33% - 34px * 2 / 3);
  margin-right: 34px;
}

.flex-40 {
  flex: 0 0 calc(40% - 34px);
  width: calc(40% - 34px);
  margin-right: 34px;
}

.flex-50 {
  flex: 0 0 calc(50% - 34px / 2);
  width: calc(50% - 34px / 2);
  margin-right: 34px;
}

.flex-60 {
  flex: 0 0 calc(60% - 34px);
  width: calc(60% - 34px);
  margin-right: 34px;
}

.flex-67 {
  flex: 0 0 calc(67% - 34px);
  width: calc(67% - 34px);
  margin-right: 34px;
}

.flex-75 {
  flex: 0 0 calc(75% - 34px);
  width: calc(75% - 34px);
  margin-right: 34px;
}

.flex-80 {
  flex: 0 0 calc(80% - 34px);
  width: calc(80% - 34px);
  margin-right: 34px;
}

.flex-90 {
  flex: 0 0 calc(80% - 34px);
  width: calc(80% - 34px);
  margin-right: 34px;
}

.flex-100 {
  flex: 0 0 100%;
  width: 100%;
}

.flex-auto {
  flex: 0 0 auto;
  width: auto;
  margin-right: 34px;
}

.flex-grow {
  flex: 1;
  width: auto;
  margin-right: 34px;
}
.flex-grow:last-of-type {
  margin-right: 0;
}

.flex-shrink {
  flex: 0;
  width: 0;
  margin-right: 34px;
}
.flex-shrink:last-of-type {
  margin-right: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.align-items-baseline {
  align-items: baseline;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-baseline {
  align-self: baseline;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.margin-right {
  margin-right: 8.5px;
}

.margin-left {
  margin-left: 8.5px;
}

.margin-bottom {
  margin-bottom: 8.5px;
}

.margin-top {
  margin-top: 8.5px;
}

.margin-inline {
  margin-inline: 4.25px;
}

.margin2-right {
  margin-right: 17px;
}

.margin2-left {
  margin-left: 17px;
}

.margin2-bottom {
  margin-bottom: 17px;
}

.margin2-top {
  margin-top: 17px;
}

.margin2-inline {
  margin-inline: 8.5px;
}

.margin3-right {
  margin-right: 25.5px;
}

.margin3-left {
  margin-left: 25.5px;
}

.margin3-bottom {
  margin-bottom: 25.5px;
}

.margin3-top {
  margin-top: 25.5px;
}

.margin3-inline {
  margin-inline: 12.75px;
}

.margin4-right {
  margin-right: 34px;
}

.margin4-left {
  margin-left: 34px;
}

.margin4-bottom {
  margin-bottom: 34px;
}

.margin4-top {
  margin-top: 34px;
}

.margin4-inline {
  margin-inline: 17px;
}

.margin5-right {
  margin-right: 42.5px;
}

.margin5-left {
  margin-left: 42.5px;
}

.margin5-bottom {
  margin-bottom: 42.5px;
}

.margin5-top {
  margin-top: 42.5px;
}

.margin5-inline {
  margin-inline: 21.25px;
}

.padding-right {
  padding-right: 8.5px;
}

.padding-left {
  padding-left: 8.5px;
}

.padding-bottom {
  padding-bottom: 8.5px;
}

.padding-top {
  padding-top: 8.5px;
}

.padding-inline {
  padding-inline: 4.25px;
}

.padding2-right {
  padding-right: 17px;
}

.padding2-left {
  padding-left: 17px;
}

.padding2-bottom {
  padding-bottom: 17px;
}

.padding2-top {
  padding-top: 17px;
}

.padding2-inline {
  padding-inline: 8.5px;
}

.padding3-right {
  padding-right: 25.5px;
}

.padding3-left {
  padding-left: 25.5px;
}

.padding3-bottom {
  padding-bottom: 25.5px;
}

.padding3-top {
  padding-top: 25.5px;
}

.padding3-inline {
  padding-inline: 12.75px;
}

.padding4-right {
  padding-right: 34px;
}

.padding4-left {
  padding-left: 34px;
}

.padding4-bottom {
  padding-bottom: 34px;
}

.padding4-top {
  padding-top: 34px;
}

.padding4-inline {
  padding-inline: 17px;
}

.padding5-right {
  padding-right: 42.5px;
}

.padding5-left {
  padding-left: 42.5px;
}

.padding5-bottom {
  padding-bottom: 42.5px;
}

.padding5-top {
  padding-top: 42.5px;
}

.padding5-inline {
  padding-inline: 21.25px;
}

@media (min-width: 450px) {
  .d-xm-none {
    display: none !important;
  }
  .d-xm-block {
    display: block !important;
  }
  .d-xm-flex {
    display: flex !important;
  }
  .d-xm-inline-block {
    display: inline-block !important;
  }
  .d-xm-inline-flex {
    display: inline-flex !important;
  }
  .d-xm-grid {
    display: grid !important;
  }
  .flex-xm-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xm-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xm-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xm-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xm-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xm-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xm-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xm-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xm-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xm-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xm-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xm-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xm-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xm-grow {
    flex: 1;
    width: auto;
  }
  .flex-xm-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xm-wrap {
    flex-wrap: wrap;
  }
  .flex-xm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xm-row {
    flex-direction: row;
  }
  .flex-xm-column {
    flex-direction: column;
  }
  .flex-xm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xm-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xm-start {
    align-items: flex-start;
  }
  .align-items-xm-end {
    align-items: flex-end;
  }
  .align-items-xm-center {
    align-items: center;
  }
  .align-items-xm-stretch {
    align-items: stretch;
  }
  .align-items-xm-baseline {
    align-items: baseline;
  }
  .align-self-xm-start {
    align-self: flex-start;
  }
  .align-self-xm-end {
    align-self: flex-end;
  }
  .align-self-xm-center {
    align-self: center;
  }
  .align-self-xm-stretch {
    align-self: stretch;
  }
  .align-self-xm-baseline {
    align-self: baseline;
  }
  .align-content-xm-start {
    align-content: flex-start;
  }
  .align-content-xm-end {
    align-content: flex-end;
  }
  .align-content-xm-center {
    align-content: center;
  }
  .align-content-xm-stretch {
    align-content: stretch;
  }
  .align-content-xm-between {
    align-content: space-between;
  }
  .justify-content-xm-start {
    justify-content: flex-start;
  }
  .justify-content-xm-end {
    justify-content: flex-end;
  }
  .justify-content-xm-center {
    justify-content: center;
  }
  .justify-content-xm-between {
    justify-content: space-between;
  }
  .justify-content-xm-around {
    justify-content: space-around;
  }
  .justify-content-xm-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .flex-sm-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-sm-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-sm-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-sm-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-sm-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-sm-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-sm-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-sm-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-sm-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-sm-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-sm-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-sm-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-sm-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-sm-grow {
    flex: 1;
    width: auto;
  }
  .flex-sm-shrink {
    flex: 0;
    width: 0;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-items-sm-baseline {
    align-items: baseline;
  }
  .align-self-sm-start {
    align-self: flex-start;
  }
  .align-self-sm-end {
    align-self: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .align-self-sm-stretch {
    align-self: stretch;
  }
  .align-self-sm-baseline {
    align-self: baseline;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .flex-md-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-md-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-md-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-md-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-md-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-md-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-md-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-md-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-md-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-md-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-md-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-md-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-md-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-md-grow {
    flex: 1;
    width: auto;
  }
  .flex-md-shrink {
    flex: 0;
    width: 0;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .align-self-md-start {
    align-self: flex-start;
  }
  .align-self-md-end {
    align-self: flex-end;
  }
  .align-self-md-center {
    align-self: center;
  }
  .align-self-md-stretch {
    align-self: stretch;
  }
  .align-self-md-baseline {
    align-self: baseline;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .flex-lg-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-lg-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-lg-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-lg-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-lg-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-lg-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-lg-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-lg-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-lg-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-lg-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-lg-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-lg-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-lg-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-lg-grow {
    flex: 1;
    width: auto;
  }
  .flex-lg-shrink {
    flex: 0;
    width: 0;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .align-self-lg-start {
    align-self: flex-start;
  }
  .align-self-lg-end {
    align-self: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .align-self-lg-stretch {
    align-self: stretch;
  }
  .align-self-lg-baseline {
    align-self: baseline;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .flex-xl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-items-xl-baseline {
    align-items: baseline;
  }
  .align-self-xl-start {
    align-self: flex-start;
  }
  .align-self-xl-end {
    align-self: flex-end;
  }
  .align-self-xl-center {
    align-self: center;
  }
  .align-self-xl-stretch {
    align-self: stretch;
  }
  .align-self-xl-baseline {
    align-self: baseline;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .flex-xxl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xxl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xxl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xxl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xxl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xxl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xxl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xxl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-items-xxl-baseline {
    align-items: baseline;
  }
  .align-self-xxl-start {
    align-self: flex-start;
  }
  .align-self-xxl-end {
    align-self: flex-end;
  }
  .align-self-xxl-center {
    align-self: center;
  }
  .align-self-xxl-stretch {
    align-self: stretch;
  }
  .align-self-xxl-baseline {
    align-self: baseline;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .flex-xxxl-10 {
    flex: 0 0 calc(10% - 34px * 9 / 10);
    width: calc(10% - 34px * 9 / 10);
    margin-right: 34px;
  }
  .flex-xxxl-20 {
    flex: 0 0 calc(20% - 34px * 4 / 5);
    width: calc(20% - 34px * 4 / 5);
    margin-right: 34px;
  }
  .flex-xxxl-25 {
    flex: 0 0 calc(25% - 34px * 3 / 4);
    width: calc(25% - 34px * 3 / 4);
    margin-right: 34px;
  }
  .flex-xxxl-33 {
    flex: 0 0 calc(33% - 34px * 2 / 3);
    width: calc(33% - 34px * 2 / 3);
    margin-right: 34px;
  }
  .flex-xxxl-40 {
    flex: 0 0 calc(40% - 34px);
    width: calc(40% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-50 {
    flex: 0 0 calc(50% - 34px / 2);
    width: calc(50% - 34px / 2);
    margin-right: 34px;
  }
  .flex-xxxl-60 {
    flex: 0 0 calc(60% - 34px);
    width: calc(60% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-67 {
    flex: 0 0 calc(67% - 34px);
    width: calc(67% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-75 {
    flex: 0 0 calc(75% - 34px);
    width: calc(75% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-80 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-90 {
    flex: 0 0 calc(80% - 34px);
    width: calc(80% - 34px);
    margin-right: 34px;
  }
  .flex-xxxl-100 {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    margin-right: 34px;
  }
  .flex-xxxl-grow {
    flex: 1;
    width: auto;
  }
  .flex-xxxl-shrink {
    flex: 0;
    width: 0;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxxl-row {
    flex-direction: row;
  }
  .flex-xxxl-column {
    flex-direction: column;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse;
  }
  .align-items-xxxl-start {
    align-items: flex-start;
  }
  .align-items-xxxl-end {
    align-items: flex-end;
  }
  .align-items-xxxl-center {
    align-items: center;
  }
  .align-items-xxxl-stretch {
    align-items: stretch;
  }
  .align-items-xxxl-baseline {
    align-items: baseline;
  }
  .align-self-xxxl-start {
    align-self: flex-start;
  }
  .align-self-xxxl-end {
    align-self: flex-end;
  }
  .align-self-xxxl-center {
    align-self: center;
  }
  .align-self-xxxl-stretch {
    align-self: stretch;
  }
  .align-self-xxxl-baseline {
    align-self: baseline;
  }
  .align-content-xxxl-start {
    align-content: flex-start;
  }
  .align-content-xxxl-end {
    align-content: flex-end;
  }
  .align-content-xxxl-center {
    align-content: center;
  }
  .align-content-xxxl-stretch {
    align-content: stretch;
  }
  .align-content-xxxl-between {
    align-content: space-between;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxxl-center {
    justify-content: center;
  }
  .justify-content-xxxl-between {
    justify-content: space-between;
  }
  .justify-content-xxxl-around {
    justify-content: space-around;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly;
  }
}
footer.landing-footer .custom-select .options {
  max-height: 160px;
}

footer .custom-select {
  position: relative;
  z-index: 2;
  border-radius: 6px;
  background: transparent;
  margin-bottom: 25px;
  max-height: 55px;
}
footer .custom-select.error {
  border-color: #FA1A30;
}
footer .custom-select.success {
  border-color: #1cb274;
}
footer .custom-select.toggled {
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.07);
}
footer .custom-select.toggled .selected-option .arrow {
  transform: rotateX(180deg);
}
footer .custom-select.toggled .options {
  transform: scaleY(1);
}
footer .custom-select .selected-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Open Sans Semibold", sans-serif;
  width: 100%;
  padding: 20px 18px;
  top: -5px;
}
footer .custom-select .selected-option .arrow {
  display: block;
  margin-left: auto;
  transition: all 0.3s ease-in;
}
footer .custom-select .selected-option #filter_country {
  position: absolute;
  width: 70%;
  font-size: 1.6rem;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
}
footer .custom-select .selected-option #filter_country.visible {
  background-color: transparent;
}
footer .custom-select .selected-option .error-message {
  left: 0;
  top: 105%;
}
footer .custom-select .selected-option #selected-option {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: "Open Sans Regular", sans-serif;
}
footer .custom-select .selected-option #placeholder {
  font-family: "Open Sans Regular", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
footer .custom-select .options {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5px 0;
  z-index: 3;
  background-color: #FA1A30;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in;
  max-height: 270px;
  overflow-y: auto;
  color: #fff;
}
footer .custom-select .options .option {
  display: block;
  text-align: center;
  padding: 10px 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: #fff;
  font-family: "Open Sans Semibold", sans-serif;
}
footer .custom-select .options .option:hover {
  background-color: #a9b3c3;
  color: #fff;
}
footer .custom-select .options .option.active {
  background-color: rgb(86.7123287671, 101.1643835616, 124.2876712329);
  color: #fff;
  font-family: "Open Sans Bold", sans-serif;
}

footer .custom-select:has(#filter_country:focus) #selected-option {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

footer .hidden-on-start {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease, visibility 2s ease;
}

footer .visible-on-typing {
  opacity: 1;
  visibility: visible;
}

footer .custom-select.with-border {
  border: 2px solid rgba(255, 255, 255, 0.1);
}

footer div.mce_inline_error {
  display: none !important;
}

footer #mc-embedded-subscribe:hover {
  background-color: #E31E25 !important;
  border-color: red !important;
}

footer #mc-embedded-subscribe {
  background-color: #333;
  border: 1px solid #333;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

footer #grecaptcha-privacy-and-terms {
  font-size: 11px;
  padding-top: 5px;
}

footer #grecaptcha-privacy-and-terms a {
  color: #0b0b0b !important;
  text-decoration: underline;
}

.grecaptcha-badge {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  font-family: "Open Sans Regular", sans-serif;
}

body {
  padding: 0;
  margin: 0;
  line-height: normal;
  font-size: 1.6rem;
  color: #fff;
  font-family: "Open Sans Regular", sans-serif;
  background-color: #0b0b0b;
}
body.checkout {
  background-color: #f5f5f5;
  color: #0b0b0b;
}

main {
  margin-top: 110px;
}
@media (min-width: 1200px) {
  main {
    margin-top: 138px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: "Open Sans Bold", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.6rem;
  }
}

h2 {
  font-size: 2.6rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 2.6rem;
  }
}

h4 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  h4 {
    font-size: 2.4rem;
  }
}

h5 {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  h5 {
    font-size: 2rem;
  }
}

h6 {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  h6 {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  p {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

input,
select,
textarea,
button {
  font-family: "Open Sans Regular", sans-serif;
  background-color: #1f1f1f;
}

.container {
  padding-inline: 15px;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1376px;
    padding-inline: unset;
  }
}
@media (min-width: 1940px) {
  .container {
    max-width: 1920px;
  }
}

.img-placeholder {
  position: relative;
  display: block;
}
.img-placeholder::after {
  content: "";
  display: block;
  padding-top: 100%;
  background-color: #1f1f1f;
}
.img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 30px;
  letter-spacing: -0.48px;
  line-height: 1.26;
  text-align: center;
  text-transform: none;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 4rem;
    margin-bottom: 40px;
    letter-spacing: -0.8px;
  }
}

.section-head {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 1200px) {
  .section-head {
    margin-bottom: 73px;
  }
}
.section-head .section-title {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .section-head .section-title {
    margin-bottom: 20px;
  }
}
.section-head .section-title .search-term {
  text-decoration: underline;
  font-style: italic;
}
.section-head .description {
  font-size: 1.6rem;
  line-height: 1.16;
}
@media (min-width: 992px) {
  .section-head .description {
    font-family: "Open Sans Semibold", sans-serif;
    letter-spacing: -0.6px;
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .section-head .description {
    font-size: 2rem;
  }
}

.error-message {
  position: absolute;
  top: 100%;
  color: #FA1A30;
  font-size: 1.4rem;
  font-style: italic;
  font-family: "Open Sans Regular", sans-serif !important;
}

.error-field {
  border-color: #FA1A30;
}

input:focus,
textarea:focus {
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-group {
  position: relative;
}

.form-control {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  width: 100%;
  display: block;
  transition: all 0.2s ease;
}
.form-control.error {
  border-color: #FA1A30 !important;
}
.form-control.success {
  border-color: green !important;
}

.form-checkbox input[type=checkbox]:checked + .fake-checkbox {
  background-image: url("/theme/img/icons/checkbox.svg");
  background-size: contain;
  border: none;
}

.fake-checkbox {
  border-radius: 3px;
  border: 1px solid #1f1f1f;
  display: block;
  margin-right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

:root {
  color-scheme: light only;
}

/*@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
  body {
    color: white;
    background: black;
  }
}*/
blockquote {
  margin: 27px 0;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  background-color: #1f1f1f;
  border-radius: 10px;
  color: #a9b3c3;
  letter-spacing: -0.14px;
  line-height: 1.45;
}
@media (min-width: 992px) {
  blockquote {
    line-height: 1.64;
  }
}
blockquote::before {
  content: url("../img/icons/info.svg");
  display: block;
  margin-right: 13px;
  width: 22px;
  height: 22px;
}

iframe {
  width: 100% !important;
  min-height: 300px;
  max-width: 1100px;
  margin-inline: auto;
  display: block;
}
@media (min-width: 768px) {
  iframe {
    min-height: 594px;
  }
}

.danger-button {
  background-color: #FA1A30;
  padding: 5px 10px;
  color: #fff;
  border-radius: 100px;
  font-family: "Open Sans Semibold", sans-serif;
  letter-spacing: -0.28px;
  font-size: 1.4rem;
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.2s linear;
}
@media (min-width: 1200px) {
  .danger-button {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.danger-button:hover {
  background-color: rgb(220.1923076923, 4.8076923077, 25.9615384615);
}
.danger-button.disabled {
  background-color: rgba(250, 26, 48, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.outline-button {
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 5px 10px;
  font-family: "Open Sans Semibold", sans-serif;
  letter-spacing: -0.28px;
  font-size: 1.4rem;
  border-radius: 100px;
  border: 3px solid #fff;
  transition: all 0.2s linear;
}
@media (min-width: 1200px) {
  .outline-button {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.outline-button:hover {
  border-color: #999999;
}
.outline-button.red {
  border: 3px solid #FA1A30;
  color: #FA1A30;
}
.outline-button.red:hover {
  border-color: rgb(252.1794871795, 125.8205128205, 138.2307692308);
}
.outline-button.gray {
  border: 1px solid #6e7e98;
  color: #6e7e98;
}
.outline-button.gray:hover {
  border-color: rgb(169.6370967742, 179.0564516129, 194.3629032258);
}

.hover:hover img,
.hover:hover svg {
  filter: drop-shadow(0 0 9px #ffffff);
}
.hover img,
.hover svg {
  transition: all 0.2s linear;
}

.slide-dots {
  bottom: 15px;
}
@media (min-width: 992px) {
  .slide-dots {
    bottom: 40px;
  }
}
.slide-dots .slide-dot {
  margin-inline: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  border: none;
  background-color: #57647a;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 0 9px #0b0b0b);
  position: relative;
}
.slide-dots .slide-dot::after {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 8px;
  height: 8px;
  content: "";
  display: block;
  border: 1px solid transparent;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .slide-dots .slide-dot::after {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 992px) {
  .slide-dots .slide-dot {
    background-color: #808080;
    width: 10px;
    height: 10px;
  }
}
.slide-dots .slide-dot.is-active {
  background-color: #a0a7b5;
}
.slide-dots .slide-dot.is-active::after {
  border-color: #0b0b0b;
}
@media (min-width: 992px) {
  .slide-dots .slide-dot.is-active {
    background-color: #fff;
  }
}

@media (min-width: 1400px) {
  .slider-arrows {
    width: 1376px;
    margin-inline: auto !important;
    overflow-x: visible;
  }
}
.slider-arrows .prev-arrow,
.slider-arrows .next-arrow {
  background-color: #fff;
  width: 40px;
  height: 40px;
}
.slider-arrows .prev-arrow:disabled,
.slider-arrows .next-arrow:disabled {
  display: none;
}
.slider-arrows .prev-arrow svg,
.slider-arrows .next-arrow svg {
  width: 2rem;
  height: 2rem;
  fill: #0b0b0b;
}
@media (min-width: 1400px) {
  .slider-arrows .prev-arrow {
    left: calc((100% - 1376px) / 2);
  }
}
@media (min-width: 1400px) {
  .slider-arrows .next-arrow {
    right: calc((100% - 1376px) / 2);
  }
}

.spinner-wrapper {
  position: absolute;
  inset: 0;
  background-color: rgba(31, 31, 31, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 20vh;
  opacity: 0;
  z-index: 0;
  cursor: pointer;
  border-radius: 6px;
}
.spinner-wrapper.visible {
  opacity: 1;
  z-index: 5;
}

#spinner-full {
  position: fixed;
}
#spinner-full.visible {
  opacity: 1;
  z-index: 99999;
}

.spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 10px solid #ccc;
  border-top: 10px solid #1f1f1f;
  box-shadow: 0 0 20px -2px #0b0b0b;
  color: #fff;
  animation: spinning 1s linear infinite;
}
@media (min-width: 992px) {
  .spinner {
    width: 75px;
    height: 75px;
    line-height: 75px;
    border: 13px solid #ccc;
    border-top: 13px solid #1f1f1f;
  }
}

@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=general.css.map */
