/* :: IMPORT :: */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
/* ----------------------------------- */

/* :: THEME COLORS :: */
:root {
  --primary     : #0060fe;
  --darkBlue    : #0b0c1b;
  --darkGray    : #363636;
  --semi-dark   : #1a1b2e;
  --semi-dark-2 : #212235;
  --semi-dark-3 : #141526;
  --gold        : #FFB830;
  --red         : #ec625f;
  --border      : #e2e9ee;
  --light       : #ecf4fa;
  --gray        : #9a9aa0;
}

:root .phx-dark-theme {
  --darkGray : #9a9aa0;
  --border   : #212235;
}
/* ----------------------------------- */

/* :: THEME FONTS :: */
:root {
  --primary-font    : 'Playfair Display', sans-serif;
  --secondary-font  : 'Karla', sans-serif;
  --third-font      : 'Poppins', sans-serif;
  --g1-font         : 'Audiowide', sans-serif;
  --g2-font         : 'Abel', sans-serif;
}
h1, h2, h3, h4, h5, h6, .phx-pri-font {
  font-family: var(--primary-font);
}
.phx-html,.phx-body,.phx-main,.phx-header, div, span, p, input, input::placeholder, label, .phx-sec-font {
  font-family: var(--secondary-font);
  font-weight: 600;
}
/* ----------------------------------- */

/* :: GENERAL :: */
.phx-html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
.phx-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  cursor: default;
  background-color: var(--darkBlue);
}
.phx-body.phx-light-theme {
  background-color: #ecf4fa;
}
*,::after,::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
[tabindex="-1"]:focus {
  outline: 0 !important
}
[hidden] {
  display: none !important
}
.phx-img-fluid {
  max-width: 100%;
}
.phx-list-unstyled {
  list-style: none;
}
p {
  line-height: 1.7;
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
}
figcaption,.phx-article,.phx-section,
figure,.phx-footer,.phx-header,
hgroup,
aside,.phx-main,.phx-nav {
  display: block
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}
input,
textarea,
select {
  outline: none !important;
}
/* ----------------------------------- */

/* :: CUSTOM :: */
.phx-primary-color {
  color: var(--primary);
}
.phx-bg-2 {
  background-color: var(--semi-dark-3);
}
.phx-light-theme .phx-bg-2 {
  position: relative;
  background-color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 1;
}
/* ----------------------------------- */

/* :: INPUTS :: */
.phx-th-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 52px;
  padding: 0 20px;
  background-color: var(--semi-dark);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--game-secondary-font);
  font-weight: 600;
  outline: none;
  max-width: 400px;
  transition: all .15s ease;
}
.phx-th-input::placeholder {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--game-secondary-font);
  color: var(--light);
  opacity: .2;
}
.phx-th-input:hover,
.phx-th-input:focus {
  background-color: var(--semi-dark-2);
}
.phx-th-input:focus {
  border-color: #fff;
}

/* sm-input */
.phx-th-input.phx-sm-input {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
}
.phx-th-input.phx-sm-input::placeholder {
  font-size: 14px;
}

/* light-theme */
.phx-light-theme .phx-th-input {
  background-color: var(--light);
  color: var(--darkBlue);
}
.phx-light-theme .phx-th-input::placeholder {
  color: var(--gray);
  opacity: 1;
}
.phx-light-theme .phx-th-input:hover,
.phx-light-theme .phx-th-input:focus {
  background-color: var(--border);
  border-color: var(--gray);
}

/* border-radius */
.phx-th-input.phx-smooth-border {
  border-radius: 4px;
}
.phx-th-input.phx-rounded-border {
  border-radius: 500px;
}
/* ----------------------------------- */

/* :: BUTTONS :: */
.phx-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  line-height: 1;
  padding: 0 20px;
  height: 48px;
  border-radius: 4px;
  letter-spacing: .8px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--secondary-font);
  transition: box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;
}

/* btn-sm */
.phx-btn-sm {
  padding: 0 24px;
  font-size: 14px;
}

/* btn-rounded */
.phx-btn-rounded {
  border-radius: 50px;
}

/* fill-primary */
.phx-btn-fill-primary {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.phx-btn-fill-primary:hover {
  background-color: #003bdf;
  border-color: #003bdf;
}

/* fill-warning */
.phx-btn-fill-warning {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.phx-btn-fill-warning:hover {
  background-color: #d2962a;
  border-color: #d2962a;
}

/* outline-dark */
.phx-btn-outline-dark {
  background-color: var(--semi-dark);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.phx-btn-outline-dark.phx-level-up {
  background-color: rgba(255, 255, 255, .03);
}
.phx-btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #ffffff;
}

.phx-light-theme .phx-btn-outline-dark {
  background-color: var(--light);
  border-color: var(--border);
  color: var(--darkBlue);
}
.phx-light-theme .phx-btn-outline-dark:hover {
  background-color: var(--border);
}

/* fill-success */
.phx-btn-fill-success {
  background-color: #15CD72;
  color: #fff;
  border: 1px solid #15CD72;
  box-shadow: 0 22px 20px -15px rgba(21, 205, 113, 0.5);
}
.phx-btn-fill-success:hover {
  background-color: #13B966;
  border-color: #13B966;
}

/* btn-icon */
.phx-btn-icon {
  margin-right: 10px;
  width: 20px;
}
.phx-btn-icon.phx-right-icon {
  margin-right: unset;
  margin-left: 10px;
}

/* btn-circle */
.phx-btn.phx-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  padding: 0;
  border-radius: 50%;
}
.phx-btn.phx-btn-circle .phx-btn-icon {
  margin: 0 !important;
  width: 30px;
}
.phx-btn.phx-btn-circle.phx-btn-lg {
  height: 64px;
  width: 64px;
}

/* shadow-off */
.phx-shadow-off {
  box-shadow: unset !important;
}

/* hover */
.phx-btn:hover {
  box-shadow: none;
}

@media only screen and (max-width: 1199px) {
  .phx-btn {
    font-size: 14px;
    height: 46px;
    padding: 0 26px;
  }
}
/* ----------------------------------- */

/* :: CONTAINERS :: */
.phx-container {
  max-width: 1600px;
  width: 100%;
  padding: 0 8vw;
  margin-right: auto;
  margin-left: auto;
}
.phx-container-fluid {
  max-width: 1600px;
  width: 100%;
  padding: 0 4vw;
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .phx-container {
    padding: 0 4vw;
  }
}
/* ----------------------------------- */

/* :: DISPLAY :: */
.phx-d-none {
  display: none!important
}
.phx-d-inline {
  display: inline!important
}
.phx-d-inline-block {
  display: inline-block!important
}
.phx-d-block {
  display: block!important
}
.phx-d-table {
  display: table!important
}
.phx-d-table-row {
  display: table-row!important
}
.phx-d-table-cell {
  display: table-cell!important
}
.phx-d-flex {
  display: -ms-flexbox!important;
  display: flex!important
}
.phx-d-inline-flex {
  display: -ms-inline-flexbox!important;
  display: inline-flex!important
}

@media (min-width: 576px) {
  .phx-d-sm-none {
    display:none!important
  }

  .phx-d-sm-inline {
    display: inline!important
  }

  .phx-d-sm-inline-block {
    display: inline-block!important
  }

  .phx-d-sm-block {
    display: block!important
  }

  .phx-d-sm-table {
    display: table!important
  }

  .phx-d-sm-table-row {
    display: table-row!important
  }

  .phx-d-sm-table-cell {
    display: table-cell!important
  }

  .phx-d-sm-flex {
    display: -ms-flexbox!important;
    display: flex!important
  }

  .phx-d-sm-inline-flex {
    display: -ms-inline-flexbox!important;
    display: inline-flex!important
  }
}
@media (min-width: 768px) {
  .phx-d-md-none {
    display:none!important
  }

  .phx-d-md-inline {
    display: inline!important
  }

  .phx-d-md-inline-block {
    display: inline-block!important
  }

  .phx-d-md-block {
    display: block!important
  }

  .phx-d-md-table {
    display: table!important
  }

  .phx-d-md-table-row {
    display: table-row!important
  }

  .phx-d-md-table-cell {
    display: table-cell!important
  }

  .phx-d-md-flex {
    display: -ms-flexbox!important;
    display: flex!important
  }

  .phx-d-md-inline-flex {
    display: -ms-inline-flexbox!important;
    display: inline-flex!important
  }
}
@media (min-width: 992px) {
  .phx-d-lg-none {
    display:none!important
  }

  .phx-d-lg-inline {
    display: inline!important
  }

  .phx-d-lg-inline-block {
    display: inline-block!important
  }

  .phx-d-lg-block {
    display: block!important
  }

  .phx-d-lg-table {
    display: table!important
  }

  .phx-d-lg-table-row {
    display: table-row!important
  }

  .phx-d-lg-table-cell {
    display: table-cell!important
  }

  .phx-d-lg-flex {
    display: -ms-flexbox!important;
    display: flex!important
  }

  .phx-d-lg-inline-flex {
    display: -ms-inline-flexbox!important;
    display: inline-flex!important
  }
}
@media (min-width: 1200px) {
  .phx-d-xl-none {
    display:none!important
  }

  .phx-d-xl-inline {
    display: inline!important
  }

  .phx-d-xl-inline-block {
    display: inline-block!important
  }

  .phx-d-xl-block {
    display: block!important
  }

  .phx-d-xl-table {
    display: table!important
  }

  .phx-d-xl-table-row {
    display: table-row!important
  }

  .phx-d-xl-table-cell {
    display: table-cell!important
  }

  .phx-d-xl-flex {
    display: -ms-flexbox!important;
    display: flex!important
  }

  .phx-d-xl-inline-flex {
    display: -ms-inline-flexbox!important;
    display: inline-flex!important
  }
}
/* ----------------------------------- */

/* :: FLEX-BOX :: */
.phx-flex-row {
  -ms-flex-direction: row!important;
  flex-direction: row!important
}
.phx-flex-column {
  -ms-flex-direction: column!important;
  flex-direction: column!important
}
.phx-flex-row-reverse {
  -ms-flex-direction: row-reverse!important;
  flex-direction: row-reverse!important
}
.phx-flex-column-reverse {
  -ms-flex-direction: column-reverse!important;
  flex-direction: column-reverse!important
}
.phx-flex-wrap {
  -ms-flex-wrap: wrap!important;
  flex-wrap: wrap!important
}
.phx-flex-nowrap {
  -ms-flex-wrap: nowrap!important;
  flex-wrap: nowrap!important
}
.phx-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse!important;
  flex-wrap: wrap-reverse!important
}
.phx-flex-fill {
  -ms-flex: 1 1 auto!important;
  flex: 1 1 auto!important
}
.phx-flex-grow-0 {
  -ms-flex-positive: 0!important;
  flex-grow: 0!important
}
.phx-flex-grow-1 {
  -ms-flex-positive: 1!important;
  flex-grow: 1!important
}
.phx-flex-shrink-0 {
  -ms-flex-negative: 0!important;
  flex-shrink: 0!important
}
.phx-flex-shrink-1 {
  -ms-flex-negative: 1!important;
  flex-shrink: 1!important
}

.phx-justify-content-start {
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}
.phx-justify-content-end {
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}
.phx-justify-content-center {
  -ms-flex-pack: center!important;
  justify-content: center!important
}
.phx-justify-content-between {
  -ms-flex-pack: justify!important;
  justify-content: space-between!important
}
.phx-justify-content-around {
  -ms-flex-pack: distribute!important;
  justify-content: space-around!important
}

.phx-align-items-start {
  -ms-flex-align: start!important;
  align-items: flex-start!important
}
.phx-align-items-end {
  -ms-flex-align: end!important;
  align-items: flex-end!important
}
.phx-align-items-center {
  -ms-flex-align: center!important;
  align-items: center!important
}
.phx-align-items-baseline {
  -ms-flex-align: baseline!important;
  align-items: baseline!important
}
.phx-align-items-stretch {
  -ms-flex-align: stretch!important;
  align-items: stretch!important
}

.phx-align-content-start {
  -ms-flex-line-pack: start!important;
  align-content: flex-start!important
}
.phx-align-content-end {
  -ms-flex-line-pack: end!important;
  align-content: flex-end!important
}
.phx-align-content-center {
  -ms-flex-line-pack: center!important;
  align-content: center!important
}
.phx-align-content-between {
  -ms-flex-line-pack: justify!important;
  align-content: space-between!important
}
.phx-align-content-around {
  -ms-flex-line-pack: distribute!important;
  align-content: space-around!important
}
.phx-align-content-stretch {
  -ms-flex-line-pack: stretch!important;
  align-content: stretch!important
}

.phx-align-self-auto {
  -ms-flex-item-align: auto!important;
  align-self: auto!important
}
.phx-align-self-start {
  -ms-flex-item-align: start!important;
  align-self: flex-start!important
}
.phx-align-self-end {
  -ms-flex-item-align: end!important;
  align-self: flex-end!important
}
.phx-align-self-center {
  -ms-flex-item-align: center!important;
  align-self: center!important
}
.phx-align-self-baseline {
  -ms-flex-item-align: baseline!important;
  align-self: baseline!important
}
.phx-align-self-stretch {
  -ms-flex-item-align: stretch!important;
  align-self: stretch!important
}

@media (min-width: 576px) {
  .phx-flex-sm-row {
    -ms-flex-direction:row!important;
    flex-direction: row!important
  }

  .phx-flex-sm-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important
  }

  .phx-flex-sm-row-reverse {
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
  }

  .phx-flex-sm-column-reverse {
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
  }

  .phx-flex-sm-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
  }

  .phx-flex-sm-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
  }

  .phx-flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
  }

  .phx-flex-sm-fill {
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important
  }

  .phx-flex-sm-grow-0 {
    -ms-flex-positive: 0!important;
    flex-grow: 0!important
  }

  .phx-flex-sm-grow-1 {
    -ms-flex-positive: 1!important;
    flex-grow: 1!important
  }

  .phx-flex-sm-shrink-0 {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important
  }

  .phx-flex-sm-shrink-1 {
    -ms-flex-negative: 1!important;
    flex-shrink: 1!important
  }

  .phx-justify-content-sm-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }

  .phx-justify-content-sm-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }

  .phx-justify-content-sm-center {
    -ms-flex-pack: center!important;
    justify-content: center!important
  }

  .phx-justify-content-sm-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
  }

  .phx-justify-content-sm-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
  }

  .phx-align-items-sm-start {
    -ms-flex-align: start!important;
    align-items: flex-start!important
  }

  .phx-align-items-sm-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important
  }

  .phx-align-items-sm-center {
    -ms-flex-align: center!important;
    align-items: center!important
  }

  .phx-align-items-sm-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important
  }

  .phx-align-items-sm-stretch {
    -ms-flex-align: stretch!important;
    align-items: stretch!important
  }

  .phx-align-content-sm-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
  }

  .phx-align-content-sm-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
  }

  .phx-align-content-sm-center {
    -ms-flex-line-pack: center!important;
    align-content: center!important
  }

  .phx-align-content-sm-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
  }

  .phx-align-content-sm-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
  }

  .phx-align-content-sm-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
  }

  .phx-align-self-sm-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto!important
  }

  .phx-align-self-sm-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
  }

  .phx-align-self-sm-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
  }

  .phx-align-self-sm-center {
    -ms-flex-item-align: center!important;
    align-self: center!important
  }

  .phx-align-self-sm-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
  }

  .phx-align-self-sm-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important
  }
}
@media (min-width: 768px) {
  .phx-flex-md-row {
    -ms-flex-direction:row!important;
    flex-direction: row!important
  }

  .phx-flex-md-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important
  }

  .phx-flex-md-row-reverse {
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
  }

  .phx-flex-md-column-reverse {
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
  }

  .phx-flex-md-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
  }

  .phx-flex-md-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
  }

  .phx-flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
  }

  .phx-flex-md-fill {
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important
  }

  .phx-flex-md-grow-0 {
    -ms-flex-positive: 0!important;
    flex-grow: 0!important
  }

  .phx-flex-md-grow-1 {
    -ms-flex-positive: 1!important;
    flex-grow: 1!important
  }

  .phx-flex-md-shrink-0 {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important
  }

  .phx-flex-md-shrink-1 {
    -ms-flex-negative: 1!important;
    flex-shrink: 1!important
  }

  .phx-justify-content-md-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }

  .phx-justify-content-md-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }

  .phx-justify-content-md-center {
    -ms-flex-pack: center!important;
    justify-content: center!important
  }

  .phx-justify-content-md-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
  }

  .phx-justify-content-md-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
  }

  .phx-align-items-md-start {
    -ms-flex-align: start!important;
    align-items: flex-start!important
  }

  .phx-align-items-md-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important
  }

  .phx-align-items-md-center {
    -ms-flex-align: center!important;
    align-items: center!important
  }

  .phx-align-items-md-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important
  }

  .phx-align-items-md-stretch {
    -ms-flex-align: stretch!important;
    align-items: stretch!important
  }

  .phx-align-content-md-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
  }

  .phx-align-content-md-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
  }

  .phx-align-content-md-center {
    -ms-flex-line-pack: center!important;
    align-content: center!important
  }

  .phx-align-content-md-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
  }

  .phx-align-content-md-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
  }

  .phx-align-content-md-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
  }

  .phx-align-self-md-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto!important
  }

  .phx-align-self-md-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
  }

  .phx-align-self-md-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
  }

  .phx-align-self-md-center {
    -ms-flex-item-align: center!important;
    align-self: center!important
  }

  .phx-align-self-md-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
  }

  .phx-align-self-md-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important
  }
}
@media (min-width: 992px) {
  .phx-flex-lg-row {
    -ms-flex-direction:row!important;
    flex-direction: row!important
  }

  .phx-flex-lg-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important
  }

  .phx-flex-lg-row-reverse {
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
  }

  .phx-flex-lg-column-reverse {
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
  }

  .phx-flex-lg-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
  }

  .phx-flex-lg-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
  }

  .phx-flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
  }

  .phx-flex-lg-fill {
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important
  }

  .phx-flex-lg-grow-0 {
    -ms-flex-positive: 0!important;
    flex-grow: 0!important
  }

  .phx-flex-lg-grow-1 {
    -ms-flex-positive: 1!important;
    flex-grow: 1!important
  }

  .phx-flex-lg-shrink-0 {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important
  }

  .phx-flex-lg-shrink-1 {
    -ms-flex-negative: 1!important;
    flex-shrink: 1!important
  }

  .phx-justify-content-lg-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }

  .phx-justify-content-lg-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }

  .phx-justify-content-lg-center {
    -ms-flex-pack: center!important;
    justify-content: center!important
  }

  .phx-justify-content-lg-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
  }

  .phx-justify-content-lg-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
  }

  .phx-align-items-lg-start {
    -ms-flex-align: start!important;
    align-items: flex-start!important
  }

  .phx-align-items-lg-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important
  }

  .phx-align-items-lg-center {
    -ms-flex-align: center!important;
    align-items: center!important
  }

  .phx-align-items-lg-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important
  }

  .phx-align-items-lg-stretch {
    -ms-flex-align: stretch!important;
    align-items: stretch!important
  }

  .phx-align-content-lg-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
  }

  .phx-align-content-lg-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
  }

  .phx-align-content-lg-center {
    -ms-flex-line-pack: center!important;
    align-content: center!important
  }

  .phx-align-content-lg-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
  }

  .phx-align-content-lg-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
  }

  .phx-align-content-lg-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
  }

  .phx-align-self-lg-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto!important
  }

  .phx-align-self-lg-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
  }

  .phx-align-self-lg-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
  }

  .phx-align-self-lg-center {
    -ms-flex-item-align: center!important;
    align-self: center!important
  }

  .phx-align-self-lg-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
  }

  .phx-align-self-lg-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important
  }
}
@media (min-width: 1200px) {
  .phx-flex-xl-row {
    -ms-flex-direction:row!important;
    flex-direction: row!important
  }

  .phx-flex-xl-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important
  }

  .phx-flex-xl-row-reverse {
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
  }

  .phx-flex-xl-column-reverse {
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
  }

  .phx-flex-xl-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
  }

  .phx-flex-xl-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
  }

  .phx-flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
  }

  .phx-flex-xl-fill {
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important
  }

  .phx-flex-xl-grow-0 {
    -ms-flex-positive: 0!important;
    flex-grow: 0!important
  }

  .phx-flex-xl-grow-1 {
    -ms-flex-positive: 1!important;
    flex-grow: 1!important
  }

  .phx-flex-xl-shrink-0 {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important
  }

  .phx-flex-xl-shrink-1 {
    -ms-flex-negative: 1!important;
    flex-shrink: 1!important
  }

  .phx-justify-content-xl-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }

  .phx-justify-content-xl-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }

  .phx-justify-content-xl-center {
    -ms-flex-pack: center!important;
    justify-content: center!important
  }

  .phx-justify-content-xl-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
  }

  .phx-justify-content-xl-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
  }

  .phx-align-items-xl-start {
    -ms-flex-align: start!important;
    align-items: flex-start!important
  }

  .phx-align-items-xl-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important
  }

  .phx-align-items-xl-center {
    -ms-flex-align: center!important;
    align-items: center!important
  }

  .phx-align-items-xl-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important
  }

  .phx-align-items-xl-stretch {
    -ms-flex-align: stretch!important;
    align-items: stretch!important
  }

  .phx-align-content-xl-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
  }

  .phx-align-content-xl-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
  }

  .phx-align-content-xl-center {
    -ms-flex-line-pack: center!important;
    align-content: center!important
  }

  .phx-align-content-xl-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
  }

  .phx-align-content-xl-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
  }

  .phx-align-content-xl-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
  }

  .phx-align-self-xl-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto!important
  }

  .phx-align-self-xl-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
  }

  .phx-align-self-xl-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
  }

  .phx-align-self-xl-center {
    -ms-flex-item-align: center!important;
    align-self: center!important
  }

  .phx-align-self-xl-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
  }

  .phx-align-self-xl-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important
  }
}
/* ----------------------------------- */

/* :: FLOAT :: */
.phx-float-left {
  float: left!important
}
.phx-float-right {
  float: right!important
}
.phx-float-none {
  float: none!important
}
@media (min-width: 576px) {
  .phx-float-sm-left {
    float:left!important
  }

  .phx-float-sm-right {
    float: right!important
  }

  .phx-float-sm-none {
    float: none!important
  }
}
@media (min-width: 768px) {
  .phx-float-md-left {
    float:left!important
  }

  .phx-float-md-right {
    float: right!important
  }

  .phx-float-md-none {
    float: none!important
  }
}
@media (min-width: 992px) {
  .phx-float-lg-left {
    float:left!important
  }

  .phx-float-lg-right {
    float: right!important
  }

  .phx-float-lg-none {
    float: none!important
  }
}
@media (min-width: 1200px) {
  .phx-float-xl-left {
    float:left!important
  }

  .phx-float-xl-right {
    float: right!important
  }

  .phx-float-xl-none {
    float: none!important
  }
}
/* ----------------------------------- */

/* :: POSITION :: */
.phx-position-static {
  position: static!important
}
.phx-position-relative {
  position: relative!important
}
.phx-position-absolute {
  position: absolute!important
}
.phx-position-fixed {
  position: fixed!important
}
.phx-position-sticky {
  position: -webkit-sticky!important;
  position: sticky!important
}
/* ----------------------------------- */

/* :: ROWS & COLS :: */
.phx-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px
}
.phx-no-gutters {
  margin-right: 0;
  margin-left: 0
}
.phx-no-gutters>.phx-col,.phx-no-gutters>[class*=col-] {
  padding-right: 0;
  padding-left: 0
}
.phx-small-gutters {
  margin-right: -7.5px;
  margin-left: -7.5px
}
.phx-small-gutters>.phx-col,.phx-small-gutters>[class*=col-] {
  padding-right: 7.5px;
  padding-left: 7.5px
}

.phx-col,.phx-col-1,.phx-col-10,.phx-col-11,.phx-col-12,.phx-col-2,.phx-col-3,.phx-col-4,.phx-col-5,.phx-col-6,.phx-col-7,.phx-col-8,.phx-col-9,.phx-col-auto,.phx-col-lg,.phx-col-lg-1,.phx-col-lg-10,.phx-col-lg-11,.phx-col-lg-12,.phx-col-lg-2,.phx-col-lg-3,.phx-col-lg-4,.phx-col-lg-5,.phx-col-lg-6,.phx-col-lg-7,.phx-col-lg-8,.phx-col-lg-9,.phx-col-lg-auto,.phx-col-md,.phx-col-md-1,.phx-col-md-10,.phx-col-md-11,.phx-col-md-12,.phx-col-md-2,.phx-col-md-3,.phx-col-md-4,.phx-col-md-5,.phx-col-md-6,.phx-col-md-7,.phx-col-md-8,.phx-col-md-9,.phx-col-md-auto,.phx-col-sm,.phx-col-sm-1,.phx-col-sm-10,.phx-col-sm-11,.phx-col-sm-12,.phx-col-sm-2,.phx-col-sm-3,.phx-col-sm-4,.phx-col-sm-5,.phx-col-sm-6,.phx-col-sm-7,.phx-col-sm-8,.phx-col-sm-9,.phx-col-sm-auto,.phx-col-xl,.phx-col-xl-1,.phx-col-xl-10,.phx-col-xl-11,.phx-col-xl-12,.phx-col-xl-2,.phx-col-xl-3,.phx-col-xl-4,.phx-col-xl-5,.phx-col-xl-6,.phx-col-xl-7,.phx-col-xl-8,.phx-col-xl-9,.phx-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px
}
.phx-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%
}
.phx-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none
}
.phx-col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%
}
.phx-col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%
}
.phx-col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%
}
.phx-col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%
}
.phx-col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%
}
.phx-col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}
.phx-col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%
}
.phx-col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%
}
.phx-col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%
}
.phx-col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%
}
.phx-col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%
}
.phx-col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.phx-order-first {
  -ms-flex-order: -1;
  order: -1
}
.phx-order-last {
  -ms-flex-order: 13;
  order: 13
}
.phx-order-0 {
  -ms-flex-order: 0;
  order: 0
}
.phx-order-1 {
  -ms-flex-order: 1;
  order: 1
}
.phx-order-2 {
  -ms-flex-order: 2;
  order: 2
}
.phx-order-3 {
  -ms-flex-order: 3;
  order: 3
}
.phx-order-4 {
  -ms-flex-order: 4;
  order: 4
}
.phx-order-5 {
  -ms-flex-order: 5;
  order: 5
}
.phx-order-6 {
  -ms-flex-order: 6;
  order: 6
}
.phx-order-7 {
  -ms-flex-order: 7;
  order: 7
}
.phx-order-8 {
  -ms-flex-order: 8;
  order: 8
}
.phx-order-9 {
  -ms-flex-order: 9;
  order: 9
}
.phx-order-10 {
  -ms-flex-order: 10;
  order: 10
}
.phx-order-11 {
  -ms-flex-order: 11;
  order: 11
}
.phx-order-12 {
  -ms-flex-order: 12;
  order: 12
}

.phx-offset-1 {
  margin-left: 8.333333%
}
.phx-offset-2 {
  margin-left: 16.666667%
}
.phx-offset-3 {
  margin-left: 25%
}
.phx-offset-4 {
  margin-left: 33.333333%
}
.phx-offset-5 {
  margin-left: 41.666667%
}
.phx-offset-6 {
  margin-left: 50%
}
.phx-offset-7 {
  margin-left: 58.333333%
}
.phx-offset-8 {
  margin-left: 66.666667%
}
.phx-offset-9 {
  margin-left: 75%
}
.phx-offset-10 {
  margin-left: 83.333333%
}
.phx-offset-11 {
  margin-left: 91.666667%
}

@media (min-width: 576px) {
  .phx-col-sm {
    -ms-flex-preferred-size:0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }

  .phx-col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }

  .phx-col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }

  .phx-col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }

  .phx-col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .phx-col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .phx-col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }

  .phx-col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .phx-col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .phx-col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }

  .phx-col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .phx-col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .phx-col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }

  .phx-col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }

  .phx-order-sm-first {
    -ms-flex-order: -1;
    order: -1
  }

  .phx-order-sm-last {
    -ms-flex-order: 13;
    order: 13
  }

  .phx-order-sm-0 {
    -ms-flex-order: 0;
    order: 0
  }

  .phx-order-sm-1 {
    -ms-flex-order: 1;
    order: 1
  }

  .phx-order-sm-2 {
    -ms-flex-order: 2;
    order: 2
  }

  .phx-order-sm-3 {
    -ms-flex-order: 3;
    order: 3
  }

  .phx-order-sm-4 {
    -ms-flex-order: 4;
    order: 4
  }

  .phx-order-sm-5 {
    -ms-flex-order: 5;
    order: 5
  }

  .phx-order-sm-6 {
    -ms-flex-order: 6;
    order: 6
  }

  .phx-order-sm-7 {
    -ms-flex-order: 7;
    order: 7
  }

  .phx-order-sm-8 {
    -ms-flex-order: 8;
    order: 8
  }

  .phx-order-sm-9 {
    -ms-flex-order: 9;
    order: 9
  }

  .phx-order-sm-10 {
    -ms-flex-order: 10;
    order: 10
  }

  .phx-order-sm-11 {
    -ms-flex-order: 11;
    order: 11
  }

  .phx-order-sm-12 {
    -ms-flex-order: 12;
    order: 12
  }

  .phx-offset-sm-0 {
    margin-left: 0
  }

  .phx-offset-sm-1 {
    margin-left: 8.333333%
  }

  .phx-offset-sm-2 {
    margin-left: 16.666667%
  }

  .phx-offset-sm-3 {
    margin-left: 25%
  }

  .phx-offset-sm-4 {
    margin-left: 33.333333%
  }

  .phx-offset-sm-5 {
    margin-left: 41.666667%
  }

  .phx-offset-sm-6 {
    margin-left: 50%
  }

  .phx-offset-sm-7 {
    margin-left: 58.333333%
  }

  .phx-offset-sm-8 {
    margin-left: 66.666667%
  }

  .phx-offset-sm-9 {
    margin-left: 75%
  }

  .phx-offset-sm-10 {
    margin-left: 83.333333%
  }

  .phx-offset-sm-11 {
    margin-left: 91.666667%
  }
}
@media (min-width: 768px) {
  .phx-col-md {
    -ms-flex-preferred-size:0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }

  .phx-col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }

  .phx-col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }

  .phx-col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }

  .phx-col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .phx-col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .phx-col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }

  .phx-col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .phx-col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .phx-col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }

  .phx-col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .phx-col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .phx-col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }

  .phx-col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }

  .phx-order-md-first {
    -ms-flex-order: -1;
    order: -1
  }

  .phx-order-md-last {
    -ms-flex-order: 13;
    order: 13
  }

  .phx-order-md-0 {
    -ms-flex-order: 0;
    order: 0
  }

  .phx-order-md-1 {
    -ms-flex-order: 1;
    order: 1
  }

  .phx-order-md-2 {
    -ms-flex-order: 2;
    order: 2
  }

  .phx-order-md-3 {
    -ms-flex-order: 3;
    order: 3
  }

  .phx-order-md-4 {
    -ms-flex-order: 4;
    order: 4
  }

  .phx-order-md-5 {
    -ms-flex-order: 5;
    order: 5
  }

  .phx-order-md-6 {
    -ms-flex-order: 6;
    order: 6
  }

  .phx-order-md-7 {
    -ms-flex-order: 7;
    order: 7
  }

  .phx-order-md-8 {
    -ms-flex-order: 8;
    order: 8
  }

  .phx-order-md-9 {
    -ms-flex-order: 9;
    order: 9
  }

  .phx-order-md-10 {
    -ms-flex-order: 10;
    order: 10
  }

  .phx-order-md-11 {
    -ms-flex-order: 11;
    order: 11
  }

  .phx-order-md-12 {
    -ms-flex-order: 12;
    order: 12
  }

  .phx-offset-md-0 {
    margin-left: 0
  }

  .phx-offset-md-1 {
    margin-left: 8.333333%
  }

  .phx-offset-md-2 {
    margin-left: 16.666667%
  }

  .phx-offset-md-3 {
    margin-left: 25%
  }

  .phx-offset-md-4 {
    margin-left: 33.333333%
  }

  .phx-offset-md-5 {
    margin-left: 41.666667%
  }

  .phx-offset-md-6 {
    margin-left: 50%
  }

  .phx-offset-md-7 {
    margin-left: 58.333333%
  }

  .phx-offset-md-8 {
    margin-left: 66.666667%
  }

  .phx-offset-md-9 {
    margin-left: 75%
  }

  .phx-offset-md-10 {
    margin-left: 83.333333%
  }

  .phx-offset-md-11 {
    margin-left: 91.666667%
  }
}
@media (min-width: 992px) {
  .phx-col-lg {
    -ms-flex-preferred-size:0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }

  .phx-col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }

  .phx-col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }

  .phx-col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }

  .phx-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .phx-col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .phx-col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }

  .phx-col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .phx-col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .phx-col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }

  .phx-col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .phx-col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .phx-col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }

  .phx-col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }

  .phx-order-lg-first {
    -ms-flex-order: -1;
    order: -1
  }

  .phx-order-lg-last {
    -ms-flex-order: 13;
    order: 13
  }

  .phx-order-lg-0 {
    -ms-flex-order: 0;
    order: 0
  }

  .phx-order-lg-1 {
    -ms-flex-order: 1;
    order: 1
  }

  .phx-order-lg-2 {
    -ms-flex-order: 2;
    order: 2
  }

  .phx-order-lg-3 {
    -ms-flex-order: 3;
    order: 3
  }

  .phx-order-lg-4 {
    -ms-flex-order: 4;
    order: 4
  }

  .phx-order-lg-5 {
    -ms-flex-order: 5;
    order: 5
  }

  .phx-order-lg-6 {
    -ms-flex-order: 6;
    order: 6
  }

  .phx-order-lg-7 {
    -ms-flex-order: 7;
    order: 7
  }

  .phx-order-lg-8 {
    -ms-flex-order: 8;
    order: 8
  }

  .phx-order-lg-9 {
    -ms-flex-order: 9;
    order: 9
  }

  .phx-order-lg-10 {
    -ms-flex-order: 10;
    order: 10
  }

  .phx-order-lg-11 {
    -ms-flex-order: 11;
    order: 11
  }

  .phx-order-lg-12 {
    -ms-flex-order: 12;
    order: 12
  }

  .phx-offset-lg-0 {
    margin-left: 0
  }

  .phx-offset-lg-1 {
    margin-left: 8.333333%
  }

  .phx-offset-lg-2 {
    margin-left: 16.666667%
  }

  .phx-offset-lg-3 {
    margin-left: 25%
  }

  .phx-offset-lg-4 {
    margin-left: 33.333333%
  }

  .phx-offset-lg-5 {
    margin-left: 41.666667%
  }

  .phx-offset-lg-6 {
    margin-left: 50%
  }

  .phx-offset-lg-7 {
    margin-left: 58.333333%
  }

  .phx-offset-lg-8 {
    margin-left: 66.666667%
  }

  .phx-offset-lg-9 {
    margin-left: 75%
  }

  .phx-offset-lg-10 {
    margin-left: 83.333333%
  }

  .phx-offset-lg-11 {
    margin-left: 91.666667%
  }
}
@media (min-width: 1200px) {
  .phx-col-xl {
    -ms-flex-preferred-size:0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
  }

  .phx-col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
  }

  .phx-col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }

  .phx-col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }

  .phx-col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .phx-col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .phx-col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }

  .phx-col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .phx-col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .phx-col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }

  .phx-col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .phx-col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .phx-col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }

  .phx-col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }

  .phx-order-xl-first {
    -ms-flex-order: -1;
    order: -1
  }

  .phx-order-xl-last {
    -ms-flex-order: 13;
    order: 13
  }

  .phx-order-xl-0 {
    -ms-flex-order: 0;
    order: 0
  }

  .phx-order-xl-1 {
    -ms-flex-order: 1;
    order: 1
  }

  .phx-order-xl-2 {
    -ms-flex-order: 2;
    order: 2
  }

  .phx-order-xl-3 {
    -ms-flex-order: 3;
    order: 3
  }

  .phx-order-xl-4 {
    -ms-flex-order: 4;
    order: 4
  }

  .phx-order-xl-5 {
    -ms-flex-order: 5;
    order: 5
  }

  .phx-order-xl-6 {
    -ms-flex-order: 6;
    order: 6
  }

  .phx-order-xl-7 {
    -ms-flex-order: 7;
    order: 7
  }

  .phx-order-xl-8 {
    -ms-flex-order: 8;
    order: 8
  }

  .phx-order-xl-9 {
    -ms-flex-order: 9;
    order: 9
  }

  .phx-order-xl-10 {
    -ms-flex-order: 10;
    order: 10
  }

  .phx-order-xl-11 {
    -ms-flex-order: 11;
    order: 11
  }

  .phx-order-xl-12 {
    -ms-flex-order: 12;
    order: 12
  }

  .phx-offset-xl-0 {
    margin-left: 0
  }

  .phx-offset-xl-1 {
    margin-left: 8.333333%
  }

  .phx-offset-xl-2 {
    margin-left: 16.666667%
  }

  .phx-offset-xl-3 {
    margin-left: 25%
  }

  .phx-offset-xl-4 {
    margin-left: 33.333333%
  }

  .phx-offset-xl-5 {
    margin-left: 41.666667%
  }

  .phx-offset-xl-6 {
    margin-left: 50%
  }

  .phx-offset-xl-7 {
    margin-left: 58.333333%
  }

  .phx-offset-xl-8 {
    margin-left: 66.666667%
  }

  .phx-offset-xl-9 {
    margin-left: 75%
  }

  .phx-offset-xl-10 {
    margin-left: 83.333333%
  }

  .phx-offset-xl-11 {
    margin-left: 91.666667%
  }
}
/* ----------------------------------- */

/* :: WIDTH & HEIGHT :: */
.phx-w-25 {
  width: 25%!important
}
.phx-w-50 {
  width: 50%!important
}
.phx-w-75 {
  width: 75%!important
}
.phx-w-100 {
  width: 100%!important
}
.phx-w-auto {
  width: auto!important
}
.phx-h-25 {
  height: 25%!important
}
.phx-h-50 {
  height: 50%!important
}
.phx-h-75 {
  height: 75%!important
}
.phx-h-100 {
  height: 100%!important
}
.phx-h-auto {
  height: auto!important
}
.phx-mw-100 {
  max-width: 100%!important
}
.phx-mh-100 {
  max-height: 100%!important
}
/* ----------------------------------- */

/* :: SPACES :: */
.phx-space {
  display: block;
  width: 100%;
}
.phx-space-sm {
  height: 30px;
}
.phx-space-md {
  height: 50px;
}
.phx-space-lg {
  height: 70px;
}
.phx-space-xl {
  height: 100px;
}
/* ----------------------------------- */

/* :: MARGIN & PADDING :: */
.phx-mr--sm {
  margin-right: 10px;
}
.phx-ml--sm {
  margin-left: 10px;
}
.phx-mt--sm {
  margin-top: 10px;
}
.phx-mb--sm {
  margin-bottom: 10px;
}

.phx-m-0 {
  margin: 0!important
}
.phx-mt-0,.phx-my-0 {
  margin-top: 0!important
}
.phx-mr-0,.phx-mx-0 {
  margin-right: 0!important
}
.phx-mb-0,.phx-my-0 {
  margin-bottom: 0!important
}
.phx-ml-0,.phx-mx-0 {
  margin-left: 0!important
}

.phx-m-1 {
  margin: 15px!important
}
.phx-mt-1,.phx-my-1 {
  margin-top: 15px!important
}
.phx-mr-1,.phx-mx-1 {
  margin-right: 15px!important
}
.phx-mb-1,.phx-my-1 {
  margin-bottom: 15px!important
}
.phx-ml-1,.phx-mx-1 {
  margin-left: 15px!important
}

.phx-m-2 {
  margin: 30px!important
}
.phx-mt-2,.phx-my-2 {
  margin-top: 30px!important
}
.phx-mr-2,.phx-mx-2 {
  margin-right: 30px!important
}
.phx-mb-2,.phx-my-2 {
  margin-bottom: 30px!important
}
.phx-ml-2,.phx-mx-2 {
  margin-left: 30px!important
}

.phx-m-3 {
  margin: 45px!important
}
.phx-mt-3,.phx-my-3 {
  margin-top: 45px!important
}
.phx-mr-3,.phx-mx-3 {
  margin-right: 45px!important
}
.phx-mb-3,.phx-my-3 {
  margin-bottom: 45px!important
}
.phx-ml-3,.phx-mx-3 {
  margin-left: 45px!important
}

.phx-m-4 {
  margin: 60px!important
}
.phx-mt-4,.phx-my-4 {
  margin-top: 60px!important
}
.phx-mr-4,.phx-mx-4 {
  margin-right: 60px!important
}
.phx-mb-4,.phx-my-4 {
  margin-bottom: 60px!important
}
.phx-ml-4,.phx-mx-4 {
  margin-left: 60px!important
}

.phx-m-5 {
  margin: 75px!important
}
.phx-mt-5,.phx-my-5 {
  margin-top: 75px!important
}
.phx-mr-5,.phx-mx-5 {
  margin-right: 75px!important
}
.phx-mb-5,.phx-my-5 {
  margin-bottom: 75px!important
}
.phx-ml-5,.phx-mx-5 {
  margin-left: 75px!important
}

.phx-p-0 {
  padding: 0!important
}
.phx-pt-0,.phx-py-0 {
  padding-top: 0!important
}
.phx-pr-0,.phx-px-0 {
  padding-right: 0!important
}
.phx-pb-0,.phx-py-0 {
  padding-bottom: 0!important
}
.phx-pl-0,.phx-px-0 {
  padding-left: 0!important
}

.phx-p-1 {
  padding: 15px!important
}
.phx-pt-1,.phx-py-1 {
  padding-top: 15px!important
}
.phx-pr-1,.phx-px-1 {
  padding-right: 15px!important
}
.phx-pb-1,.phx-py-1 {
  padding-bottom: 15px!important
}
.phx-pl-1,.phx-px-1 {
  padding-left: 15px!important
}

.phx-p-2 {
  padding: 30px!important
}
.phx-pt-2,.phx-py-2 {
  padding-top: 30px!important
}
.phx-pr-2,.phx-px-2 {
  padding-right: 30px!important
}
.phx-pb-2,.phx-py-2 {
  padding-bottom: 30px!important
}
.phx-pl-2,.phx-px-2 {
  padding-left: 30px!important
}

.phx-p-3 {
  padding: 45px!important
}
.phx-pt-3,.phx-py-3 {
  padding-top: 45px!important
}
.phx-pr-3,.phx-px-3 {
  padding-right: 45px!important
}
.phx-pb-3,.phx-py-3 {
  padding-bottom: 45px!important
}
.phx-pl-3,.phx-px-3 {
  padding-left: 45px!important
}

.phx-p-4 {
  padding: 60px!important
}
.phx-pt-4,.phx-py-4 {
  padding-top: 60px!important
}
.phx-pr-4,.phx-px-4 {
  padding-right: 60px!important
}
.phx-pb-4,.phx-py-4 {
  padding-bottom: 60px!important
}
.phx-pl-4,.phx-px-4 {
  padding-left: 60px!important
}

.phx-p-5 {
  padding: 75px!important
}
.phx-pt-5,.phx-py-5 {
  padding-top: 75px!important
}
.phx-pr-5,.phx-px-5 {
  padding-right: 75px!important
}
.phx-pb-5,.phx-py-5 {
  padding-bottom: 75px!important
}
.phx-pl-5,.phx-px-5 {
  padding-left: 75px!important
}

.phx-py-120 {
  padding: 120px 0;
}
.phx-pt-120 {
  padding-top: 120px;
}
.phx-pb-120 {
  padding-bottom: 120px;
}

.phx-py-120-90 {
  padding: 120px 0 90px;
}

.phx-py-120-75 {
  padding: 120px 0 75px;
}

.phx-py-90 {
  padding: 90px 0;
}
.phx-pt-90 {
  padding-top: 90px;
}
.phx-pb-90 {
  padding-bottom: 90px;
}

@media (max-width: 991.98px) {
  .phx-py-120 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .phx-pt-120 {
    padding-top: 90px;
  }
  .phx-pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767.98px) {
  .phx-py-120 {
    padding: 70px 0;
  }
  .phx-pt-120 {
    padding-top: 70px;
  }
  .phx-pb-120 {
    padding-bottom: 70px;
  }
}

.phx-m-auto {
  margin: auto!important
}
.phx-mt-auto,.phx-my-auto {
  margin-top: auto!important
}
.phx-mr-auto,.phx-mx-auto {
  margin-right: auto!important
}
.phx-mb-auto,.phx-my-auto {
  margin-bottom: auto!important
}
.phx-ml-auto,.phx-mx-auto {
  margin-left: auto!important
}

@media (min-width: 576px) {
  .phx-m-sm-0 {
    margin:0!important
  }

  .phx-mt-sm-0,.phx-my-sm-0 {
    margin-top: 0!important
  }

  .phx-mr-sm-0,.phx-mx-sm-0 {
    margin-right: 0!important
  }

  .phx-mb-sm-0,.phx-my-sm-0 {
    margin-bottom: 0!important
  }

  .phx-ml-sm-0,.phx-mx-sm-0 {
    margin-left: 0!important
  }

  .phx-m-sm-1 {
    margin: 15px!important
  }

  .phx-mt-sm-1,.phx-my-sm-1 {
    margin-top: 15px!important
  }

  .phx-mr-sm-1,.phx-mx-sm-1 {
    margin-right: 15px!important
  }

  .phx-mb-sm-1,.phx-my-sm-1 {
    margin-bottom: 15px!important
  }

  .phx-ml-sm-1,.phx-mx-sm-1 {
    margin-left: 15px!important
  }

  .phx-m-sm-2 {
    margin: 30px!important
  }

  .phx-mt-sm-2,.phx-my-sm-2 {
    margin-top: 30px!important
  }

  .phx-mr-sm-2,.phx-mx-sm-2 {
    margin-right: 30px!important
  }

  .phx-mb-sm-2,.phx-my-sm-2 {
    margin-bottom: 30px!important
  }

  .phx-ml-sm-2,.phx-mx-sm-2 {
    margin-left: 30px!important
  }

  .phx-m-sm-3 {
    margin: 45px!important
  }

  .phx-mt-sm-3,.phx-my-sm-3 {
    margin-top: 45px!important
  }

  .phx-mr-sm-3,.phx-mx-sm-3 {
    margin-right: 45px!important
  }

  .phx-mb-sm-3,.phx-my-sm-3 {
    margin-bottom: 45px!important
  }

  .phx-ml-sm-3,.phx-mx-sm-3 {
    margin-left: 45px!important
  }

  .phx-m-sm-4 {
    margin: 60px!important
  }

  .phx-mt-sm-4,.phx-my-sm-4 {
    margin-top: 60px!important
  }

  .phx-mr-sm-4,.phx-mx-sm-4 {
    margin-right: 60px!important
  }

  .phx-mb-sm-4,.phx-my-sm-4 {
    margin-bottom: 60px!important
  }

  .phx-ml-sm-4,.phx-mx-sm-4 {
    margin-left: 60px!important
  }

  .phx-m-sm-5 {
    margin: 75px!important
  }

  .phx-mt-sm-5,.phx-my-sm-5 {
    margin-top: 75px!important
  }

  .phx-mr-sm-5,.phx-mx-sm-5 {
    margin-right: 75px!important
  }

  .phx-mb-sm-5,.phx-my-sm-5 {
    margin-bottom: 75px!important
  }

  .phx-ml-sm-5,.phx-mx-sm-5 {
    margin-left: 75px!important
  }

  .phx-p-sm-0 {
    padding: 0!important
  }

  .phx-pt-sm-0,.phx-py-sm-0 {
    padding-top: 0!important
  }

  .phx-pr-sm-0,.phx-px-sm-0 {
    padding-right: 0!important
  }

  .phx-pb-sm-0,.phx-py-sm-0 {
    padding-bottom: 0!important
  }

  .phx-pl-sm-0,.phx-px-sm-0 {
    padding-left: 0!important
  }

  .phx-p-sm-1 {
    padding: 15px!important
  }

  .phx-pt-sm-1,.phx-py-sm-1 {
    padding-top: 15px!important
  }

  .phx-pr-sm-1,.phx-px-sm-1 {
    padding-right: 15px!important
  }

  .phx-pb-sm-1,.phx-py-sm-1 {
    padding-bottom: 15px!important
  }

  .phx-pl-sm-1,.phx-px-sm-1 {
    padding-left: 15px!important
  }

  .phx-p-sm-2 {
    padding: 30px!important
  }

  .phx-pt-sm-2,.phx-py-sm-2 {
    padding-top: 30px!important
  }

  .phx-pr-sm-2,.phx-px-sm-2 {
    padding-right: 30px!important
  }

  .phx-pb-sm-2,.phx-py-sm-2 {
    padding-bottom: 30px!important
  }

  .phx-pl-sm-2,.phx-px-sm-2 {
    padding-left: 30px!important
  }

  .phx-p-sm-3 {
    padding: 45px!important
  }

  .phx-pt-sm-3,.phx-py-sm-3 {
    padding-top: 45px!important
  }

  .phx-pr-sm-3,.phx-px-sm-3 {
    padding-right: 45px!important
  }

  .phx-pb-sm-3,.phx-py-sm-3 {
    padding-bottom: 45px!important
  }

  .phx-pl-sm-3,.phx-px-sm-3 {
    padding-left: 45px!important
  }

  .phx-p-sm-4 {
    padding: 60px!important
  }

  .phx-pt-sm-4,.phx-py-sm-4 {
    padding-top: 60px!important
  }

  .phx-pr-sm-4,.phx-px-sm-4 {
    padding-right: 60px!important
  }

  .phx-pb-sm-4,.phx-py-sm-4 {
    padding-bottom: 60px!important
  }

  .phx-pl-sm-4,.phx-px-sm-4 {
    padding-left: 60px!important
  }

  .phx-p-sm-5 {
    padding: 75px!important
  }

  .phx-pt-sm-5,.phx-py-sm-5 {
    padding-top: 75px!important
  }

  .phx-pr-sm-5,.phx-px-sm-5 {
    padding-right: 75px!important
  }

  .phx-pb-sm-5,.phx-py-sm-5 {
    padding-bottom: 75px!important
  }

  .phx-pl-sm-5,.phx-px-sm-5 {
    padding-left: 75px!important
  }

  .phx-py-sm-120 {
    padding: 120px 0;
  }
  .phx-pt-sm-120 {
    padding-top: 120px;
  }
  .phx-pb-sm-120 {
    padding-bottom: 120px;
  }

  .phx-py-sm-90 {
    padding: 90px 0;
  }
  .phx-pt-sm-90 {
    padding-top: 90px;
  }
  .phx-pb-sm-90 {
    padding-bottom: 90px;
  }

  .phx-m-sm-auto {
    margin: auto!important
  }

  .phx-mt-sm-auto,.phx-my-sm-auto {
    margin-top: auto!important
  }

  .phx-mr-sm-auto,.phx-mx-sm-auto {
    margin-right: auto!important
  }

  .phx-mb-sm-auto,.phx-my-sm-auto {
    margin-bottom: auto!important
  }

  .phx-ml-sm-auto,.phx-mx-sm-auto {
    margin-left: auto!important
  }
}
@media (min-width: 768px) {
  .phx-m-md-0 {
    margin:0!important
  }

  .phx-mt-md-0,.phx-my-md-0 {
    margin-top: 0!important
  }

  .phx-mr-md-0,.phx-mx-md-0 {
    margin-right: 0!important
  }

  .phx-mb-md-0,.phx-my-md-0 {
    margin-bottom: 0!important
  }

  .phx-ml-md-0,.phx-mx-md-0 {
    margin-left: 0!important
  }

  .phx-m-md-1 {
    margin: 15px!important
  }

  .phx-mt-md-1,.phx-my-md-1 {
    margin-top: 15px!important
  }

  .phx-mr-md-1,.phx-mx-md-1 {
    margin-right: 15px!important
  }

  .phx-mb-md-1,.phx-my-md-1 {
    margin-bottom: 15px!important
  }

  .phx-ml-md-1,.phx-mx-md-1 {
    margin-left: 15px!important
  }

  .phx-m-md-2 {
    margin: 30px!important
  }

  .phx-mt-md-2,.phx-my-md-2 {
    margin-top: 30px!important
  }

  .phx-mr-md-2,.phx-mx-md-2 {
    margin-right: 30px!important
  }

  .phx-mb-md-2,.phx-my-md-2 {
    margin-bottom: 30px!important
  }

  .phx-ml-md-2,.phx-mx-md-2 {
    margin-left: 30px!important
  }

  .phx-m-md-3 {
    margin: 45px!important
  }

  .phx-mt-md-3,.phx-my-md-3 {
    margin-top: 45px!important
  }

  .phx-mr-md-3,.phx-mx-md-3 {
    margin-right: 45px!important
  }

  .phx-mb-md-3,.phx-my-md-3 {
    margin-bottom: 45px!important
  }

  .phx-ml-md-3,.phx-mx-md-3 {
    margin-left: 45px!important
  }

  .phx-m-md-4 {
    margin: 60px!important
  }

  .phx-mt-md-4,.phx-my-md-4 {
    margin-top: 60px!important
  }

  .phx-mr-md-4,.phx-mx-md-4 {
    margin-right: 60px!important
  }

  .phx-mb-md-4,.phx-my-md-4 {
    margin-bottom: 60px!important
  }

  .phx-ml-md-4,.phx-mx-md-4 {
    margin-left: 60px!important
  }

  .phx-m-md-5 {
    margin: 75px!important
  }

  .phx-mt-md-5,.phx-my-md-5 {
    margin-top: 75px!important
  }

  .phx-mr-md-5,.phx-mx-md-5 {
    margin-right: 75px!important
  }

  .phx-mb-md-5,.phx-my-md-5 {
    margin-bottom: 75px!important
  }

  .phx-ml-md-5,.phx-mx-md-5 {
    margin-left: 75px!important
  }

  .phx-p-md-0 {
    padding: 0!important
  }

  .phx-pt-md-0,.phx-py-md-0 {
    padding-top: 0!important
  }

  .phx-pr-md-0,.phx-px-md-0 {
    padding-right: 0!important
  }

  .phx-pb-md-0,.phx-py-md-0 {
    padding-bottom: 0!important
  }

  .phx-pl-md-0,.phx-px-md-0 {
    padding-left: 0!important
  }

  .phx-p-md-1 {
    padding: 15px!important
  }

  .phx-pt-md-1,.phx-py-md-1 {
    padding-top: 15px!important
  }

  .phx-pr-md-1,.phx-px-md-1 {
    padding-right: 15px!important
  }

  .phx-pb-md-1,.phx-py-md-1 {
    padding-bottom: 15px!important
  }

  .phx-pl-md-1,.phx-px-md-1 {
    padding-left: 15px!important
  }

  .phx-p-md-2 {
    padding: 30px!important
  }

  .phx-pt-md-2,.phx-py-md-2 {
    padding-top: 30px!important
  }

  .phx-pr-md-2,.phx-px-md-2 {
    padding-right: 30px!important
  }

  .phx-pb-md-2,.phx-py-md-2 {
    padding-bottom: 30px!important
  }

  .phx-pl-md-2,.phx-px-md-2 {
    padding-left: 30px!important
  }

  .phx-p-md-3 {
    padding: 45px!important
  }

  .phx-pt-md-3,.phx-py-md-3 {
    padding-top: 45px!important
  }

  .phx-pr-md-3,.phx-px-md-3 {
    padding-right: 45px!important
  }

  .phx-pb-md-3,.phx-py-md-3 {
    padding-bottom: 45px!important
  }

  .phx-pl-md-3,.phx-px-md-3 {
    padding-left: 45px!important
  }

  .phx-p-md-4 {
    padding: 60px!important
  }

  .phx-pt-md-4,.phx-py-md-4 {
    padding-top: 60px!important
  }

  .phx-pr-md-4,.phx-px-md-4 {
    padding-right: 60px!important
  }

  .phx-pb-md-4,.phx-py-md-4 {
    padding-bottom: 60px!important
  }

  .phx-pl-md-4,.phx-px-md-4 {
    padding-left: 60px!important
  }

  .phx-p-md-5 {
    padding: 75px!important
  }

  .phx-pt-md-5,.phx-py-md-5 {
    padding-top: 75px!important
  }

  .phx-pr-md-5,.phx-px-md-5 {
    padding-right: 75px!important
  }

  .phx-pb-md-5,.phx-py-md-5 {
    padding-bottom: 75px!important
  }

  .phx-pl-md-5,.phx-px-md-5 {
    padding-left: 75px!important
  }

  .phx-py-md-120 {
    padding: 120px 0;
  }
  .phx-pt-md-120 {
    padding-top: 120px;
  }
  .phx-pb-md-120 {
    padding-bottom: 120px;
  }

  .phx-py-md-90 {
    padding: 90px 0;
  }
  .phx-pt-md-90 {
    padding-top: 90px;
  }
  .phx-pb-md-90 {
    padding-bottom: 90px;
  }

  .phx-m-md-auto {
    margin: auto!important
  }

  .phx-mt-md-auto,.phx-my-md-auto {
    margin-top: auto!important
  }

  .phx-mr-md-auto,.phx-mx-md-auto {
    margin-right: auto!important
  }

  .phx-mb-md-auto,.phx-my-md-auto {
    margin-bottom: auto!important
  }

  .phx-ml-md-auto,.phx-mx-md-auto {
    margin-left: auto!important
  }
}
@media (min-width: 992px) {
  .phx-m-lg-0 {
    margin:0!important
  }

  .phx-mt-lg-0,.phx-my-lg-0 {
    margin-top: 0!important
  }

  .phx-mr-lg-0,.phx-mx-lg-0 {
    margin-right: 0!important
  }

  .phx-mb-lg-0,.phx-my-lg-0 {
    margin-bottom: 0!important
  }

  .phx-ml-lg-0,.phx-mx-lg-0 {
    margin-left: 0!important
  }

  .phx-m-lg-1 {
    margin: 15px!important
  }

  .phx-mt-lg-1,.phx-my-lg-1 {
    margin-top: 15px!important
  }

  .phx-mr-lg-1,.phx-mx-lg-1 {
    margin-right: 15px!important
  }

  .phx-mb-lg-1,.phx-my-lg-1 {
    margin-bottom: 15px!important
  }

  .phx-ml-lg-1,.phx-mx-lg-1 {
    margin-left: 15px!important
  }

  .phx-m-lg-2 {
    margin: 30px!important
  }

  .phx-mt-lg-2,.phx-my-lg-2 {
    margin-top: 30px!important
  }

  .phx-mr-lg-2,.phx-mx-lg-2 {
    margin-right: 30px!important
  }

  .phx-mb-lg-2,.phx-my-lg-2 {
    margin-bottom: 30px!important
  }

  .phx-ml-lg-2,.phx-mx-lg-2 {
    margin-left: 30px!important
  }

  .phx-m-lg-3 {
    margin: 45px!important
  }

  .phx-mt-lg-3,.phx-my-lg-3 {
    margin-top: 45px!important
  }

  .phx-mr-lg-3,.phx-mx-lg-3 {
    margin-right: 45px!important
  }

  .phx-mb-lg-3,.phx-my-lg-3 {
    margin-bottom: 45px!important
  }

  .phx-ml-lg-3,.phx-mx-lg-3 {
    margin-left: 45px!important
  }

  .phx-m-lg-4 {
    margin: 60px!important
  }

  .phx-mt-lg-4,.phx-my-lg-4 {
    margin-top: 60px!important
  }

  .phx-mr-lg-4,.phx-mx-lg-4 {
    margin-right: 60px!important
  }

  .phx-mb-lg-4,.phx-my-lg-4 {
    margin-bottom: 60px!important
  }

  .phx-ml-lg-4,.phx-mx-lg-4 {
    margin-left: 60px!important
  }

  .phx-m-lg-5 {
    margin: 75px!important
  }

  .phx-mt-lg-5,.phx-my-lg-5 {
    margin-top: 75px!important
  }

  .phx-mr-lg-5,.phx-mx-lg-5 {
    margin-right: 75px!important
  }

  .phx-mb-lg-5,.phx-my-lg-5 {
    margin-bottom: 75px!important
  }

  .phx-ml-lg-5,.phx-mx-lg-5 {
    margin-left: 75px!important
  }

  .phx-p-lg-0 {
    padding: 0!important
  }

  .phx-pt-lg-0,.phx-py-lg-0 {
    padding-top: 0!important
  }

  .phx-pr-lg-0,.phx-px-lg-0 {
    padding-right: 0!important
  }

  .phx-pb-lg-0,.phx-py-lg-0 {
    padding-bottom: 0!important
  }

  .phx-pl-lg-0,.phx-px-lg-0 {
    padding-left: 0!important
  }

  .phx-p-lg-1 {
    padding: 15px!important
  }

  .phx-pt-lg-1,.phx-py-lg-1 {
    padding-top: 15px!important
  }

  .phx-pr-lg-1,.phx-px-lg-1 {
    padding-right: 15px!important
  }

  .phx-pb-lg-1,.phx-py-lg-1 {
    padding-bottom: 15px!important
  }

  .phx-pl-lg-1,.phx-px-lg-1 {
    padding-left: 15px!important
  }

  .phx-p-lg-2 {
    padding: 30px!important
  }

  .phx-pt-lg-2,.phx-py-lg-2 {
    padding-top: 30px!important
  }

  .phx-pr-lg-2,.phx-px-lg-2 {
    padding-right: 30px!important
  }

  .phx-pb-lg-2,.phx-py-lg-2 {
    padding-bottom: 30px!important
  }

  .phx-pl-lg-2,.phx-px-lg-2 {
    padding-left: 30px!important
  }

  .phx-p-lg-3 {
    padding: 45px!important
  }

  .phx-pt-lg-3,.phx-py-lg-3 {
    padding-top: 45px!important
  }

  .phx-pr-lg-3,.phx-px-lg-3 {
    padding-right: 45px!important
  }

  .phx-pb-lg-3,.phx-py-lg-3 {
    padding-bottom: 45px!important
  }

  .phx-pl-lg-3,.phx-px-lg-3 {
    padding-left: 45px!important
  }

  .phx-p-lg-4 {
    padding: 60px!important
  }

  .phx-pt-lg-4,.phx-py-lg-4 {
    padding-top: 60px!important
  }

  .phx-pr-lg-4,.phx-px-lg-4 {
    padding-right: 60px!important
  }

  .phx-pb-lg-4,.phx-py-lg-4 {
    padding-bottom: 60px!important
  }

  .phx-pl-lg-4,.phx-px-lg-4 {
    padding-left: 60px!important
  }

  .phx-p-lg-5 {
    padding: 75px!important
  }

  .phx-pt-lg-5,.phx-py-lg-5 {
    padding-top: 75px!important
  }

  .phx-pr-lg-5,.phx-px-lg-5 {
    padding-right: 75px!important
  }

  .phx-pb-lg-5,.phx-py-lg-5 {
    padding-bottom: 75px!important
  }

  .phx-pl-lg-5,.phx-px-lg-5 {
    padding-left: 75px!important
  }

  .phx-py-lg-120 {
    padding: 120px 0;
  }
  .phx-pt-lg-120 {
    padding-top: 120px;
  }
  .phx-pb-lg-120 {
    padding-bottom: 120px;
  }

  .phx-py-lg-90 {
    padding: 90px 0;
  }
  .phx-pt-lg-90 {
    padding-top: 90px;
  }
  .phx-pb-lg-90 {
    padding-bottom: 90px;
  }

  .phx-m-lg-auto {
    margin: auto!important
  }

  .phx-mt-lg-auto,.phx-my-lg-auto {
    margin-top: auto!important
  }

  .phx-mr-lg-auto,.phx-mx-lg-auto {
    margin-right: auto!important
  }

  .phx-mb-lg-auto,.phx-my-lg-auto {
    margin-bottom: auto!important
  }

  .phx-ml-lg-auto,.phx-mx-lg-auto {
    margin-left: auto!important
  }
}
@media (min-width: 1200px) {
  .phx-m-xl-0 {
    margin:0!important
  }

  .phx-mt-xl-0,.phx-my-xl-0 {
    margin-top: 0!important
  }

  .phx-mr-xl-0,.phx-mx-xl-0 {
    margin-right: 0!important
  }

  .phx-mb-xl-0,.phx-my-xl-0 {
    margin-bottom: 0!important
  }

  .phx-ml-xl-0,.phx-mx-xl-0 {
    margin-left: 0!important
  }

  .phx-m-xl-1 {
    margin: 15px!important
  }

  .phx-mt-xl-1,.phx-my-xl-1 {
    margin-top: 15px!important
  }

  .phx-mr-xl-1,.phx-mx-xl-1 {
    margin-right: 15px!important
  }

  .phx-mb-xl-1,.phx-my-xl-1 {
    margin-bottom: 15px!important
  }

  .phx-ml-xl-1,.phx-mx-xl-1 {
    margin-left: 15px!important
  }

  .phx-m-xl-2 {
    margin: 30px!important
  }

  .phx-mt-xl-2,.phx-my-xl-2 {
    margin-top: 30px!important
  }

  .phx-mr-xl-2,.phx-mx-xl-2 {
    margin-right: 30px!important
  }

  .phx-mb-xl-2,.phx-my-xl-2 {
    margin-bottom: 30px!important
  }

  .phx-ml-xl-2,.phx-mx-xl-2 {
    margin-left: 30px!important
  }

  .phx-m-xl-3 {
    margin: 45px!important
  }

  .phx-mt-xl-3,.phx-my-xl-3 {
    margin-top: 45px!important
  }

  .phx-mr-xl-3,.phx-mx-xl-3 {
    margin-right: 45px!important
  }

  .phx-mb-xl-3,.phx-my-xl-3 {
    margin-bottom: 45px!important
  }

  .phx-ml-xl-3,.phx-mx-xl-3 {
    margin-left: 45px!important
  }

  .phx-m-xl-4 {
    margin: 60px!important
  }

  .phx-mt-xl-4,.phx-my-xl-4 {
    margin-top: 60px!important
  }

  .phx-mr-xl-4,.phx-mx-xl-4 {
    margin-right: 60px!important
  }

  .phx-mb-xl-4,.phx-my-xl-4 {
    margin-bottom: 60px!important
  }

  .phx-ml-xl-4,.phx-mx-xl-4 {
    margin-left: 60px!important
  }

  .phx-m-xl-5 {
    margin: 75px!important
  }

  .phx-mt-xl-5,.phx-my-xl-5 {
    margin-top: 75px!important
  }

  .phx-mr-xl-5,.phx-mx-xl-5 {
    margin-right: 75px!important
  }

  .phx-mb-xl-5,.phx-my-xl-5 {
    margin-bottom: 75px!important
  }

  .phx-ml-xl-5,.phx-mx-xl-5 {
    margin-left: 75px!important
  }

  .phx-p-xl-0 {
    padding: 0!important
  }
  .phx-pt-xl-0,.phx-py-xl-0 {
    padding-top: 0!important
  }
  .phx-pr-xl-0,.phx-px-xl-0 {
    padding-right: 0!important
  }
  .phx-pb-xl-0,.phx-py-xl-0 {
    padding-bottom: 0!important
  }
  .phx-pl-xl-0,.phx-px-xl-0 {
    padding-left: 0!important
  }

  .phx-p-xl-1 {
    padding: 15px!important
  }
  .phx-pt-xl-1,.phx-py-xl-1 {
    padding-top: 15px!important
  }
  .phx-pr-xl-1,.phx-px-xl-1 {
    padding-right: 15px!important
  }
  .phx-pb-xl-1,.phx-py-xl-1 {
    padding-bottom: 15px!important
  }
  .phx-pl-xl-1,.phx-px-xl-1 {
    padding-left: 15px!important
  }

  .phx-p-xl-2 {
    padding: 30px!important
  }
  .phx-pt-xl-2,.phx-py-xl-2 {
    padding-top: 30px!important
  }
  .phx-pr-xl-2,.phx-px-xl-2 {
    padding-right: 30px!important
  }
  .phx-pb-xl-2,.phx-py-xl-2 {
    padding-bottom: 30px!important
  }
  .phx-pl-xl-2,.phx-px-xl-2 {
    padding-left: 30px!important
  }

  .phx-p-xl-3 {
    padding: 45px!important
  }
  .phx-pt-xl-3,.phx-py-xl-3 {
    padding-top: 45px!important
  }
  .phx-pr-xl-3,.phx-px-xl-3 {
    padding-right: 45px!important
  }
  .phx-pb-xl-3,.phx-py-xl-3 {
    padding-bottom: 45px!important
  }
  .phx-pl-xl-3,.phx-px-xl-3 {
    padding-left: 45px!important
  }

  .phx-p-xl-4 {
    padding: 60px!important
  }
  .phx-pt-xl-4,.phx-py-xl-4 {
    padding-top: 60px!important
  }
  .phx-pr-xl-4,.phx-px-xl-4 {
    padding-right: 60px!important
  }
  .phx-pb-xl-4,.phx-py-xl-4 {
    padding-bottom: 60px!important
  }
  .phx-pl-xl-4,.phx-px-xl-4 {
    padding-left: 60px!important
  }

  .phx-p-xl-5 {
    padding: 75px!important
  }
  .phx-pt-xl-5,.phx-py-xl-5 {
    padding-top: 75px!important
  }
  .phx-pr-xl-5,.phx-px-xl-5 {
    padding-right: 75px!important
  }
  .phx-pb-xl-5,.phx-py-xl-5 {
    padding-bottom: 75px!important
  }
  .phx-pl-xl-5,.phx-px-xl-5 {
    padding-left: 75px!important
  }

  .phx-py-xl-120 {
    padding: 120px 0;
  }
  .phx-pt-xl-120 {
    padding-top: 120px;
  }
  .phx-pb-xl-120 {
    padding-bottom: 120px;
  }

  .phx-py-xl-90 {
    padding: 90px 0;
  }
  .phx-pt-xl-90 {
    padding-top: 90px;
  }
  .phx-pb-xl-90 {
    padding-bottom: 90px;
  }

  .phx-m-xl-auto {
    margin: auto!important
  }
  .phx-mt-xl-auto,.phx-my-xl-auto {
    margin-top: auto!important
  }
  .phx-mr-xl-auto,.phx-mx-xl-auto {
    margin-right: auto!important
  }
  .phx-mb-xl-auto,.phx-my-xl-auto {
    margin-bottom: auto!important
  }
  .phx-ml-xl-auto,.phx-mx-xl-auto {
    margin-left: auto!important
  }
}
/* ----------------------------------- */

/* :: TEXT :: */
.phx-text-justify {
  text-align: justify!important
}
.phx-text-nowrap {
  white-space: nowrap!important
}
.phx-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.phx-text-left {
  text-align: left!important
}
.phx-text-right {
  text-align: right!important
}
.phx-text-center {
  text-align: center!important
}

@media (min-width: 576px) {
  .phx-text-sm-left {
    text-align:left!important
  }

  .phx-text-sm-right {
    text-align: right!important
  }

  .phx-text-sm-center {
    text-align: center!important
  }
}
@media (min-width: 768px) {
  .phx-text-md-left {
    text-align:left!important
  }

  .phx-text-md-right {
    text-align: right!important
  }

  .phx-text-md-center {
    text-align: center!important
  }
}
@media (min-width: 992px) {
  .phx-text-lg-left {
    text-align:left!important
  }

  .phx-text-lg-right {
    text-align: right!important
  }

  .phx-text-lg-center {
    text-align: center!important
  }
}
@media (min-width: 1200px) {
  .phx-text-xl-left {
    text-align:left!important
  }

  .phx-text-xl-right {
    text-align: right!important
  }

  .phx-text-xl-center {
    text-align: center!important
  }
}

.phx-text-lowercase {
  text-transform: lowercase!important
}
.phx-text-uppercase {
  text-transform: uppercase!important
}
.phx-text-capitalize {
  text-transform: capitalize!important
}
/* ----------------------------------- */

/* :: FONTS :: */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHtCe4YZO.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/karla//qkBVXvYC6trAT7RQHt6e4Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/karla/qkBbXvYC6trAT7RbLtyG5Q.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/karla//qkBbXvYC6trAT7RVLtw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/playfair/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
