@charset "UTF-8";
/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap");
@import "./editor-styles.css";
:root {
  --spacer-lg: 5rem;
  --spacer: 3rem;
  --spacer-md: 3rem;
  --spacer-sm: 2rem;
  --spacer-sm-md: 2rem;
}

@media (min-width: 782px) {
  :root {
    --spacer-lg: 6.5rem;
    --spacer: 4rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --spacer-lg: 8rem;
    --spacer: 6rem;
    --spacer-sm-md: 3rem;
  }
}
.banner-static {
  --overlay-opacity: 0;
  --image-scale: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-height: 34rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: var(--spacer);
  opacity: 0;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.8s forwards 0.05s;
}
.banner-static:after {
  display: block;
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: multiply;
  opacity: var(--overlay-opacity);
}
.banner-static .wrap {
  position: relative;
  z-index: 5;
}
.banner-static .wrap * {
  color: #fff;
}
.banner-static img {
  width: 100%;
  height: auto;
  transform: scale(var(--image-scale, 1));
}

.banner-slideshow {
  --slide-height: 90vh;
  --tablet-height: 90vh;
  --mobile-height: 90vh;
  --overlay-opacity: 0.3;
  --bg-pos: center;
  --swiper-pagination-bullet-width: 2rem;
  --swiper-pagination-bullet-height: 2rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: black;
  --swiper-pagination-color: white;
  --bullet-border: 2px solid white;
  --swiper-navigation-color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: var(--slide-height);
  max-height: 450px;
}
@media (max-width: 1023px) {
  .banner-slideshow {
    --slide-height: var(--tablet-height);
  }
}
@media (max-width: 781px) {
  .banner-slideshow {
    --slide-height: var(--mobile-height);
  }
}
.banner-slideshow .swiper-slide {
  display: flex;
  overflow: hidden;
  height: var(--slide-height);
  max-height: 450px;
}
.banner-slideshow .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.banner-slideshow .swiper-slide img {
  opacity: 0;
  animation: scaleIn 1.25s forwards 0.125s;
}
.banner-slideshow .swiper-slide iframe {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-slideshow .swiper-slide .slide-media {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos);
     object-position: var(--bg-pos);
}
.banner-slideshow .swiper-slide .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #fff;
  position: relative;
  z-index: 3;
}
.banner-slideshow .swiper-slide .wrap h2 {
  max-width: 100rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: var(--wp--preset--font-size--r-6);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1ch;
  color: #fff;
}
.banner-slideshow .swiper-slide .wrap h2 span {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.banner-slideshow .swiper-pagination {
  margin: 2rem 0;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet {
  border: var(--bullet-border);
  transition: 0.15s ease-out;
  border-radius: 50px !important;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible, .banner-slideshow .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
  background: var(--swiper-pagination-color);
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #a57c08;
  outline-offset: -2px;
  border-radius: 2px;
}

html[lang=pt-br] .banner-slideshow .swiper-slide .wrap h2 {
  font-size: var(--wp--preset--font-size--r-5);
}

@media (max-height: 450px) {
  .banner-slideshow .swiper-slide .wrap h2 {
    font-size: var(--wp--preset--font-size--r-5);
  }
}
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
}

a,
button {
  cursor: revert;
}

img {
  max-width: 100%;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

::-moz-placeholder {
  color: #333;
}

::placeholder {
  color: #333;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:active,
:focus,
:-internal-direct-focus {
  outline: none;
  outline-color: transparent;
}

::focus-visible {
  outline: 1px solid #a57c08;
  border-radius: 3px;
}

:root {
  --spacer-lg: 5rem;
  --spacer: 3rem;
  --spacer-md: 3rem;
  --spacer-sm: 2rem;
  --spacer-sm-md: 2rem;
}

@media (min-width: 782px) {
  :root {
    --spacer-lg: 6.5rem;
    --spacer: 4rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --spacer-lg: 8rem;
    --spacer: 6rem;
    --spacer-sm-md: 3rem;
  }
}
.text-center,
.center {
  text-align: center;
}

.hidden,
.hide {
  display: none !important;
}

.floatleft {
  float: left;
  align-self: flex-start;
}

.floatright {
  float: right;
  align-self: flex-end;
}

.wrap {
  width: 84%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrap {
    width: 88%;
  }
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mt-1p6 {
  margin-top: 1.6rem !important;
}

.mt0 {
  margin-top: 0rem !important;
}

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

.pt0 {
  margin-top: 0rem !important;
}

.pb0 {
  margin-bottom: 0rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.pt1 {
  margin-top: 1rem !important;
}

.pb1 {
  margin-bottom: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.pt2 {
  margin-top: 2rem !important;
}

.pb2 {
  margin-bottom: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.pt3 {
  margin-top: 3rem !important;
}

.pb3 {
  margin-bottom: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.pt4 {
  margin-top: 4rem !important;
}

.pb4 {
  margin-bottom: 4rem !important;
}

.mt5 {
  margin-top: 5rem !important;
}

.mb5 {
  margin-bottom: 5rem !important;
}

.pt5 {
  margin-top: 5rem !important;
}

.pb5 {
  margin-bottom: 5rem !important;
}

.mt6 {
  margin-top: 6rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.pt6 {
  margin-top: 6rem !important;
}

.pb6 {
  margin-bottom: 6rem !important;
}

.mt7 {
  margin-top: 7rem !important;
}

.mb7 {
  margin-bottom: 7rem !important;
}

.pt7 {
  margin-top: 7rem !important;
}

.pb7 {
  margin-bottom: 7rem !important;
}

.mt8 {
  margin-top: 8rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.pt8 {
  margin-top: 8rem !important;
}

.pb8 {
  margin-bottom: 8rem !important;
}

.mt9 {
  margin-top: 9rem !important;
}

.mb9 {
  margin-bottom: 9rem !important;
}

.pt9 {
  margin-top: 9rem !important;
}

.pb9 {
  margin-bottom: 9rem !important;
}

.mt10 {
  margin-top: 10rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.pt10 {
  margin-top: 10rem !important;
}

.pb10 {
  margin-bottom: 10rem !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.layout.layout-home .alignfull, .layout.layout-full .alignfull {
  width: 100vw;
  margin-left: -8vw;
}
@media (min-width: 1024px) {
  .layout.layout-home .alignfull, .layout.layout-full .alignfull {
    margin-left: -6vw;
  }
}
@media (min-width: 1364px) {
  .layout.layout-home .alignfull, .layout.layout-full .alignfull {
    margin-left: calc(-50vw + 600px);
  }
}
.layout.layout-home .alignfull > *:not(.btn), .layout.layout-full .alignfull > *:not(.btn) {
  width: 88%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.layout.layout-home .alignfull .js-align-full, .layout.layout-full .alignfull .js-align-full {
  width: 100vw;
  max-width: 100vw;
}
.layout.layout-home .alignfull .js-align-full > *, .layout.layout-full .alignfull .js-align-full > * {
  max-width: 100%;
}
.layout.layout-home .alignfull > .btn:not(.aligncenter), .layout.layout-full .alignfull > .btn:not(.aligncenter) {
  margin-left: 6vw !important;
}
@media (min-width: 1490px) {
  .layout.layout-home .alignfull > .btn:not(.aligncenter), .layout.layout-full .alignfull > .btn:not(.aligncenter) {
    margin-left: calc(50% - 600px) !important;
  }
}

.goverlay {
  background: rgba(51, 51, 51, 0.95) !important;
}

html[lang=pt-br] .en-only,
html[lang=en-US] .pt-only,
html[lang=en-GB] .pt-only {
  display: none !important;
}

h2.is-style-top-border, h3.is-style-top-border, h4.is-style-top-border, h5.is-style-top-border, h6.is-style-top-border {
  padding-top: 0.3ch;
  border-top: 3px solid #333;
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6, ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6, ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
  margin-top: 1.8ch !important;
}

.top-spacer-xl {
  margin-top: var(--spacer-lg);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

ul,
ol {
  padding: 0 0 0 25px;
  margin: 0 0 30px 0;
}
ul li,
ol li {
  margin-bottom: 0.95ch;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0.95ch 0 0 0;
}

ol li {
  list-style: decimal;
}

.content ul:not(.tabs):not(.block-link-cta):not(.committees) {
  list-style: none;
  padding: 0;
}
.content ul:not(.tabs):not(.block-link-cta):not(.committees) li {
  padding-left: 18px;
  position: relative;
}
.content ul:not(.tabs):not(.block-link-cta):not(.committees) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='10' viewBox='0 0 9 10'%3E%3Cpath id='Path_24412' d='M68.949,8.38a23.5,23.5,0,0,0-2.973,2.141h-.02A6.318,6.318,0,0,0,64.1,13.245h0a2.7,2.7,0,0,0-.14.894,2.517,2.517,0,0,0,.6,1.663h.02a3.088,3.088,0,0,0,.22.27,21.41,21.41,0,0,0,2.814,2.308h.04a15.364,15.364,0,0,0,4.889-4.137h0a2.785,2.785,0,0,0,.419-1.435,2.548,2.548,0,0,0-.539-1.58l-.04-.042a11.277,11.277,0,0,0-2.953-2.516l-.459-.27h-.04' transform='translate(-63.96 -8.38)' fill='%23a3832a'/%3E%3C/svg%3E%0A");
  background-size: 100%;
  background-repeat: no-repeat;
}
.content p a, .content li a {
  text-decoration: underline;
  text-decoration-color: rgba(51, 51, 51, 0.3);
  text-decoration-thickness: 0.075rem;
  text-underline-position: under;
}

.wp-block-footnotes {
  font-size: var(--wp--preset--font-size--small);
  margin-top: 4ch;
}
.wp-block-footnotes a {
  display: none;
}

main a {
  color: #333;
  transition: 200ms;
}
main a:hover,
main a:active,
main a:focus {
  color: #a57c08;
  text-decoration: underline;
}

img.alignright {
  margin: 0 0 0 20px;
  width: 50%;
  height: auto;
  float: right;
}
img.alignleft {
  margin: 0 20px 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 782px) {
  img.alignright, img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
img.aligncenter {
  margin: 0 auto;
}

blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.7rem;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background: #a57c08;
}

cite {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
}

figcaption {
  font-size: 1.6rem;
  color: #a57c08;
  font-weight: 400;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

html {
  min-height: 100%;
  font-size: 62.5%;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
html.menu-opened {
  scroll-behavior: auto;
  overflow: hidden;
}
html.menu-opened footer,
html.menu-opened main {
  pointer-events: none;
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 135px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-variant-ligatures: no-common-ligatures;
  line-height: 1.35;
  font-weight: 400;
  color: #333;
  background: #fff;
  overscroll-behavior-y: none;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body a:where(:not(.wp-element-button)) {
  text-decoration: none;
}
html.menu-opened body {
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
main {
  flex: 1;
  margin-top: 70px;
  opacity: 0;
  animation: fadeIn 1s forwards 0.05s;
}
@media (min-width: 1024px) {
  main {
    margin-top: 111px;
  }
}
.home main {
  margin-top: 0;
}

@media (min-width: 1024px) {
  body:not(.home) .sticky + main {
    margin-top: 91px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.wp-block-image {
  margin-bottom: 2.5ch;
}
.wp-block-image.alignfull img {
  width: 100% !important;
  max-width: 100% !important;
}
.wp-block-image.fw img {
  width: 100%;
}
.wp-block-image.is-style-stretch img {
  width: 100vw;
  margin: 0 !important;
  padding: 0 !important;
}
.wp-block-image.white {
  padding: 1.5rem;
  background: #fff;
}
.wp-block-image.is-style-green-overlay {
  position: relative;
}
.wp-block-image.is-style-green-overlay:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg id='full_width_image_block_overlay' data-name='full width image block overlay' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1440' height='450' viewBox='0 0 1440 450'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_1666' data-name='Rectangle 1666' width='1440' height='450' transform='translate(0 2022)' fill='%231b2f56'/%3E%3C/clipPath%3E%3ClinearGradient id='linear-gradient' x1='0.209' y1='0.19' x2='1' y2='0.443' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23086145'/%3E%3Cstop offset='1' stop-color='%23086145' stop-opacity='0.098'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='full_width_image_block_overlay-2' data-name='full width image block overlay' transform='translate(0 -2022)' clip-path='url(%23clip-path)'%3E%3Cpath id='Exclusion_1' data-name='Exclusion 1' d='M-7083.139,3447.636h0V3144.023A197.988,197.988,0,0,1-7074.9,3093a196.912,196.912,0,0,1,20.367-45.684,200.165,200.165,0,0,1,30.719-38.711,202.392,202.392,0,0,1,39.294-30.1c.27-.146,27.376-14.825,41.254-21.771,84.806-41.3,224.537-104.5,336.813-155.275,83.466-37.748,149.393-67.564,162.556-74.756l-.7-.719c1.938-1.056,4.559-2.447,7.593-4.058,11.933-6.335,31.9-16.937,55.562-30.956a841.624,841.624,0,0,0,77.105-51.16c13.889-10.47,26.656-21,37.947-31.286a343.316,343.316,0,0,0,32.913-34.093c4.962-5.983,9.5-11.993,13.482-17.865a176.9,176.9,0,0,0,10.922-18.286,134.2,134.2,0,0,0,7.926-18.614,105.222,105.222,0,0,0,4.5-18.848h.345v332.5a201.683,201.683,0,0,1-7.372,48.148,199.263,199.263,0,0,1-18.062,43.613,200.964,200.964,0,0,1-27.377,37.707,202.76,202.76,0,0,1-35.317,30.428l-51,32.22c-21.7,13.221-45.434,26.751-72.545,41.366-31.241,16.84-67.053,35.111-106.442,54.306-44.343,21.61-94.756,45.142-149.84,69.944-60.667,27.315-128.878,57.017-202.742,88.28-.549.232-13.625,5.77-32.887,15.059-11.475,5.533-22.861,11.294-33.842,17.122-13.723,7.283-26.838,14.686-38.981,22-30.917,18.632-55.815,36.839-74,54.116-10.8,10.259-19.323,20.3-25.333,29.843a83.483,83.483,0,0,0-7.629,15.121A55.743,55.743,0,0,0-7083.139,3447.636Zm677.71-784.8h-1.438c-11.134-7.4-22-14.979-32.284-22.513-9.272-6.791-18.362-13.757-27.016-20.7-13.9-11.155-27.2-22.674-40.669-35.218a81.63,81.63,0,0,1-6.413-7.5l-.235-.3c-.365-.462-.742-.939-1.129-1.426h-.718A79.987,79.987,0,0,1-6531,2549.589a86.719,86.719,0,0,1-5.571-30.932,96.231,96.231,0,0,1,1.537-17.84h-39.045a216.023,216.023,0,0,1,10.419-35.3,210.854,210.854,0,0,1,16-32.4,205.535,205.535,0,0,1,21.117-28.84,200.535,200.535,0,0,1,25.769-24.6h.721c14.268-12.033,30.9-24.657,49.445-37.521,16.794-11.651,35.2-23.572,56.253-36.443,38.668-23.243,83.1-47.405,132.069-71.815,37.893-18.889,78.776-38.068,121.516-57l3.53-2.162a200.865,200.865,0,0,0,36.287-21.629,200.98,200.98,0,0,0,30.772-28.539,199.818,199.818,0,0,0,24.2-34.432,198.5,198.5,0,0,0,16.573-39.31h-508.642a202.4,202.4,0,0,1,22.02-24.878,202.147,202.147,0,0,1,25.771-20.9l.012-.008c1.263-.849,12.923-8.669,33.029-21.48,19.365-12.34,50.6-31.869,89.443-54.827,43.669-25.812,87.855-50.611,131.332-73.709,54.349-28.876,107.745-55.165,158.7-78.137a195.391,195.391,0,0,0,24.84-13.8,180.961,180.961,0,0,0,17.729-13.225A118.939,118.939,0,0,0-6021,1736v257.066a201.066,201.066,0,0,1-8.408,57.75H-5277v450h-919.3v-2.775c-.1.938-.219,1.871-.345,2.775h-24.873a84.625,84.625,0,0,0,4.625-27.363,84.257,84.257,0,0,0-5.067-28.958,86.241,86.241,0,0,0-14.086-24.744l-1.44-1.365a323.1,323.1,0,0,0-34.926-35.714,415.309,415.309,0,0,0-34.012-26.9,372.567,372.567,0,0,0-36-22.876l-16.274-9.232h-1.348l.626-.651c-20.974,12.537-39.282,24.167-55.969,35.558-18.737,12.791-34.967,24.953-49.616,37.181h-.719a226.951,226.951,0,0,0-39.315,42.034,202.514,202.514,0,0,0-26.573,50.525,77.157,77.157,0,0,0-3.43,12.509h313.518a104.13,104.13,0,0,1-10.28,21.372,233.357,233.357,0,0,1-16.379,21.407c-5.813,6.79-12.346,13.735-19.415,20.642a479.935,479.935,0,0,1-44.91,38.331c-14.563,11.06-30.7,22.265-47.966,33.3C-6374.681,2644.958-6389.809,2654.03-6405.429,2662.833Zm-172.4-142.312h0v-19.7h3.746c-.9,4.4-1.678,8.9-2.308,13.373Zm0-19.7H-6717v-450h178.951a199.515,199.515,0,0,0-29.23,55.479,199.624,199.624,0,0,0-10.547,64.25v330.272h0Z' transform='translate(6717 -28.816)' opacity='0.595' fill='url(%23linear-gradient)'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out 0.4s;
}
.wp-block-image.is-style-green-overlay.in-view:after {
  opacity: 1;
}
.wp-block-image.is-style-black-overlay {
  position: relative;
}
.wp-block-image.is-style-black-overlay:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1440' height='450' viewBox='0 0 1440 450'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2142' data-name='Rectangle 2142' width='1440' height='450' transform='translate(0 2022)' fill='%231b2f56'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mask_Group_37' data-name='Mask Group 37' transform='translate(0 -2022)' clip-path='url(%23clip-path)'%3E%3Cpath id='Exclusion_2' data-name='Exclusion 2' d='M-7163.139,3447.635h0V3144.023A197.993,197.993,0,0,1-7154.9,3093a196.907,196.907,0,0,1,20.367-45.684,200.157,200.157,0,0,1,30.719-38.71,202.4,202.4,0,0,1,39.294-30.1c.271-.147,27.449-14.865,41.254-21.772,84.8-41.3,224.556-104.506,336.849-155.292l.077-.035c83.408-37.722,149.288-67.517,162.445-74.705l-.7-.721c1.885-1.027,4.377-2.35,7.532-4.025l.047-.025c11.935-6.335,31.9-16.934,55.555-30.95a841.728,841.728,0,0,0,77.111-51.161c13.893-10.473,26.662-21,37.953-31.288a343.438,343.438,0,0,0,32.917-34.1c4.962-5.982,9.5-11.993,13.485-17.867a176.806,176.806,0,0,0,10.923-18.288,134.16,134.16,0,0,0,7.927-18.616,105.221,105.221,0,0,0,4.5-18.85h-24.873a84.614,84.614,0,0,0,4.625-27.363,84.265,84.265,0,0,0-5.067-28.958,86.255,86.255,0,0,0-14.086-24.745l-1.439-1.365a323.2,323.2,0,0,0-34.926-35.713,415.237,415.237,0,0,0-34.013-26.905,374.543,374.543,0,0,0-36-22.876l-16.275-9.23h-1.346l.626-.651c-20.972,12.535-39.279,24.165-55.968,35.556-18.742,12.794-34.972,24.956-49.617,37.181h-.717a226.953,226.953,0,0,0-39.316,42.035,202.5,202.5,0,0,0-26.572,50.524,77.1,77.1,0,0,0-3.43,12.51h313.518a104.13,104.13,0,0,1-10.28,21.373,233.189,233.189,0,0,1-16.379,21.407c-5.812,6.789-12.344,13.734-19.415,20.642a479.82,479.82,0,0,1-44.909,38.331c-14.561,11.058-30.7,22.263-47.966,33.3-14.21,9.084-29.337,18.156-44.961,26.962h-1.438c-11.126-7.4-21.988-14.973-32.283-22.513-9.27-6.789-18.359-13.754-27.016-20.7-13.9-11.158-27.2-22.678-40.67-35.219a81.722,81.722,0,0,1-6.429-7.522l-.225-.285c-.363-.459-.737-.934-1.123-1.418h-.717A79.97,79.97,0,0,1-6611,2549.59a86.7,86.7,0,0,1-5.572-30.932,96.2,96.2,0,0,1,1.537-17.842h-39.044a216.01,216.01,0,0,1,10.419-35.3,210.854,210.854,0,0,1,16-32.4,205.531,205.531,0,0,1,21.117-28.84,200.628,200.628,0,0,1,25.769-24.6h.72c14.271-12.035,30.906-24.658,49.445-37.52,16.8-11.652,35.2-23.573,56.255-36.444,38.667-23.242,83.1-47.4,132.068-71.815,37.894-18.89,78.777-38.069,121.516-57l3.53-2.161a200.927,200.927,0,0,0,36.288-21.63,201,201,0,0,0,30.771-28.539,199.817,199.817,0,0,0,24.2-34.431,198.494,198.494,0,0,0,16.574-39.309H-5277v450h-999.3v-2.774c-.1.935-.218,1.869-.345,2.774h.345v332.5a201.669,201.669,0,0,1-7.372,48.147,199.291,199.291,0,0,1-18.062,43.613,200.954,200.954,0,0,1-27.378,37.706,202.687,202.687,0,0,1-35.318,30.428l-51,32.22c-21.712,13.225-45.442,26.756-72.545,41.366-31.235,16.837-67.048,35.108-106.442,54.306-44.353,21.614-94.766,45.147-149.84,69.944-60.668,27.316-128.881,57.018-202.741,88.28-.133.056-13.486,5.7-32.887,15.059-11.482,5.537-22.869,11.3-33.842,17.122-13.726,7.284-26.841,14.688-38.981,22-30.917,18.631-55.815,36.838-74,54.115-10.8,10.258-19.322,20.3-25.333,29.843a83.5,83.5,0,0,0-7.629,15.121A55.719,55.719,0,0,0-7163.139,3447.635Zm505.313-927.115h0v-19.7H-6717v-450h98.95a199.5,199.5,0,0,0-29.23,55.478,199.615,199.615,0,0,0-10.547,64.25v330.272h3.746c-.9,4.394-1.676,8.894-2.308,13.375Zm548.417-469.7H-6618.05a202.354,202.354,0,0,1,22.02-24.879,202.11,202.11,0,0,1,25.771-20.905c.117-.079,11.951-8.05,33.041-21.488,19.366-12.34,50.6-31.87,89.444-54.827,43.655-25.8,87.842-50.6,131.332-73.71,54.347-28.874,107.743-55.163,158.7-78.136a195.391,195.391,0,0,0,24.839-13.8,180.884,180.884,0,0,0,17.729-13.225A118.746,118.746,0,0,0-6101,1736v257.067a201.05,201.05,0,0,1-8.409,57.75Z' transform='translate(6717 -28.816)' opacity='0.595'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out 0.4s;
}
.wp-block-image.is-style-black-overlay.in-view:after {
  opacity: 1;
}
.wp-block-image.is-style-breakout-right {
  position: relative;
}
.wp-block-image.is-style-breakout-right:before {
  content: "";
  display: block;
  width: 50vw;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50vw;
}
.wp-block-image a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
.wp-block-image a:hover, .wp-block-image a:active, .wp-block-image a:focus {
  opacity: 0.8;
}
@media (min-width: 1024px) {
  .wp-block-image.parallax-image {
    overflow: hidden;
    position: relative;
    height: 250px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .wp-block-image.parallax-image {
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .wp-block-image.parallax-image img {
    transform: translateY(0);
    transition: transform 0.1s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 50px);
  }
}

.wp-block-gallery + * {
  margin-top: 3rem;
}

iframe {
  display: block;
  width: 100%;
  margin: 0;
  border: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #a57c08;
  outline-offset: -2px;
  border-radius: 2px;
}

::-moz-selection {
  background: #225e8e;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #225e8e;
  color: #fff;
  text-shadow: none;
}

header {
  isolation: isolate;
}
body.admin-bar header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}
@media screen and (min-width: 1008px) and (max-width: 1038px) {
  header * {
    transition: none !important;
  }
}
@media (max-width: 1023px) {
  header * {
    -webkit-tap-highlight-color: transparent;
  }
}
header nav,
header nav ul,
header nav li,
header nav a {
  all: unset;
  display: flex;
}
header nav a {
  cursor: pointer;
}
header button,
header input,
header form {
  all: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
header a:focus-visible,
header button:focus-visible,
header input:focus-visible {
  outline: 2px solid #a57c08;
  outline-offset: -2px;
  border-radius: 2px;
}

.header {
  --primary: #333;
  --secondary: #a57c08;
  --tertiary: #2b70a7;
  --top-nav-font: Libre Franklin, sans-serif;
  /* Transitions */
  --transition: 250ms ease-out;
  /* Header */
  --header-bg: #fff;
  --sticky-bg: #fff;
  --mega-menu-bg: #fff;
  /* Mobile Header */
  --mob-header: #fff;
  --mob-header-sticky: #fff;
  /* Logo */
  --logo: 210px;
  --logo-sticky: 150px;
  --logo-tablet: 150px;
  --logo-sticky-tablet: 150px;
  --logo-menu-opened-tablet: 150px;
  --logo-mobile: 150px;
  --logo-sticky-mobile: 150px;
  --logo-menu-opened: 150px;
  --logo-padding: 2.4rem 0;
  --logo-padding-mobile: 1rem 0;
  /* Top Level Navigation */
  /* Colors */
  --top-color: $body;
  --top-color-hover: $body;
  --top-bg-hover: transparent;
  /* Sticky Colors */
  --top-color-sticky: $body;
  --top-color-sticky-hover: $body;
  --top-bg-sticky-hover: transparent;
  /* Current Menu Item */
  --top-current: $body;
  --top-current-bg: transparent;
  --top-current-hover: $body;
  --top-current-bg-hover: transparent;
  --top-current-sticky: $body;
  --top-current-sticky-hover: $body;
  --top-current-bg-sticky: transparent;
  --top-current-bg-sticky-hover: transparent;
  /* Parent Item */
  --menu-parent: var(--secondary);
  --menu-parent-bg: transparent;
  /* Sub Menu Navigation */
  /* Colors */
  --sub-color: var(--primary);
  --sub-bg: white;
  --sub-color-hover: var(--primary);
  --sub-bg-hover: var(--tertiary);
  /* Current Sub Menu Item */
  --sub-current: var(--tertiary);
  --sub-current-bg: transparent;
  /* Mobile Menu */
  /* Background */
  --mob-bg: #f8f8f8;
  /* Colors */
  --mob-color: #333;
  --mob-color-hover: #2B70A7;
  --mob-bg-hover: var(--tertiary);
  /* Current Item */
  --mob-current: var(--tertiary);
  --mob-current-bg: transparent;
  --mob-current-hover: var(--tertiary);
  --mob-current-bg-hover: transparent;
  /* Current Parent Item */
  --mob-current-parent: var(--tertiary);
  --mob-current-parent-bg: transparent;
  --mob-button-color: var(--secondary);
  --mob-button-color-sticky: var(--secondary);
  --mob-button-color-open: var(--tertiary);
  --mob-menu-expand: white;
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--header-bg);
}
header a {
  text-decoration: none !important;
}
header.sticky {
  background: var(--sticky-bg);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
header.sticky #topbar {
  display: none;
}
@media (max-width: 1023px) {
  header.sticky nav.header-nav ul#menu-primary {
    padding-top: 12rem;
  }
}
@media (min-width: 1024px) {
  header.sticky .country-selector.weglot-dropdown {
    margin-top: -1px;
  }
}
header.sticky > .wrap:before {
  background: var(--mob-header-sticky);
}
header.sticky .logo {
  width: var(--logo-sticky-mobile);
}
@media (min-width: 782px) {
  header.sticky .logo {
    width: var(--logo-sticky-tablet);
  }
}
@media (min-width: 1024px) {
  header.sticky .logo {
    padding: 1.5rem 0;
    width: var(--logo-sticky);
  }
}
header.sticky .burger-menu span > span {
  background: var(--mob-button-color-sticky);
}
header.sticky nav.header-nav ul#menu-primary {
  margin-top: 0;
}
header.sticky nav.header-nav ul#menu-primary > li:hover > a {
  color: var(--top-color-sticky-hover);
}
header.sticky nav.header-nav ul#menu-primary > li > a {
  color: var(--top-color-sticky);
}
header.sticky nav.header-nav ul#menu-primary > li.current-menu-parent:hover > a, header.sticky nav.header-nav ul#menu-primary > li.current-menu-item:hover > a {
  color: var(--top-current-sticky-hover);
  background: var(--top-current-bg-sticky-hover);
}
header.sticky nav.header-nav ul#menu-primary > li.current-menu-parent > a, header.sticky nav.header-nav ul#menu-primary > li.current-menu-item > a {
  color: var(--top-current-sticky);
  background: var(--top-current-bg-sticky);
}
header.sticky nav.header-nav ul#menu-primary .sub-menu > li.current-menu-item > a {
  color: #a57c08;
}
html.menu-opened header {
  background: var(--mob-header-sticky);
}
html.menu-opened header > .wrap:before {
  background-color: var(--mob-header-sticky);
}
html.menu-opened header .logo {
  width: var(--logo-menu-opened);
}
@media (min-width: 782px) {
  html.menu-opened header .logo {
    width: var(--logo-menu-opened-tablet);
  }
}
html.menu-opened header .burger-menu .span-wrap span {
  background: var(--mob-button-color-open);
}
html.menu-opened header .burger-menu .span-wrap span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
html.menu-opened header .burger-menu .span-wrap span:nth-child(2) {
  transform: rotate(45deg);
}
html.menu-opened header .burger-menu .span-wrap span:nth-child(3) {
  transform: rotate(-45deg);
}
html.menu-opened header .burger-menu .span-wrap span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header > .wrap {
  display: flex;
  justify-content: space-between;
}
header > .wrap::before {
  display: none;
}
@media (max-width: 1023px) {
  header > .wrap::before {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mob-header);
  }
}
header .header-right {
  display: flex;
}
header .logo {
  display: flex;
  width: var(--logo-mobile);
  margin: 0;
  padding: 1.5rem 0;
  transition: all var(--transition);
}
@media (min-width: 782px) {
  header .logo {
    width: var(--logo-tablet);
  }
}
@media (min-width: 1024px) {
  header .logo {
    width: var(--logo);
    padding: 2rem 0;
  }
}
header .logo a {
  display: flex;
  align-items: flex-start;
}
header .logo a img,
header .logo a svg {
  width: 100%;
  transition: all var(--transition);
}
header .logo a img path,
header .logo a svg path {
  transition: fill var(--transition);
}
header .burger-menu {
  z-index: 9999;
  display: block;
  align-self: center;
  padding: 10px;
  margin-top: -10px;
}
@media (min-width: 1024px) {
  header .burger-menu {
    display: none;
  }
}
header .burger-menu .span-wrap {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
}
header .burger-menu .span-wrap span {
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  left: 0;
  border-radius: 2px;
  background: var(--mob-button-color);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .burger-menu .span-wrap span:nth-child(1) {
  top: 2px;
}
header .burger-menu .span-wrap span:nth-child(2), header .burger-menu .span-wrap span:nth-child(3) {
  top: 9px;
}
header .burger-menu .span-wrap span:nth-child(4) {
  top: 16px;
}
@media (min-width: 1024px) {
  header nav.header-nav ul#menu-primary {
    margin-top: 52px;
    transition: margin var(--transition);
  }
  header nav.header-nav ul#menu-primary > li {
    position: relative;
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1024px) and (min-width: 1150px) {
  header nav.header-nav ul#menu-primary > li {
    padding: 0 0 0 30px;
  }
}
@media (min-width: 1024px) and (min-width: 1250px) {
  header nav.header-nav ul#menu-primary > li {
    padding: 0 0 0 38px;
  }
}
@media (min-width: 1024px) {
  header nav.header-nav ul#menu-primary > li:first-child {
    padding-left: 0;
  }
  header nav.header-nav ul#menu-primary > li.dropdown-opened > .sub-menu-depth-1, header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > .sub-menu-depth-1, header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > .sub-menu-depth-1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header nav.header-nav ul#menu-primary > li.dropdown-opened > a, header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > a, header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > a {
    color: var(--top-color-hover);
    background: var(--top-bg-hover);
  }
  header nav.header-nav ul#menu-primary > li > a {
    align-items: center;
    color: var(--top-color);
    font-family: var(--top-nav-font);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0;
    box-shadow: inset 0 0 0 0 #a57c08;
    transition: box-shadow 0.25s ease-in-out;
  }
}
@media (min-width: 1024px) and (min-width: 1250px) {
  header nav.header-nav ul#menu-primary > li > a {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  header nav.header-nav ul#menu-primary > li > a:hover, header nav.header-nav ul#menu-primary > li > a:active, header nav.header-nav ul#menu-primary > li > a:focus {
    box-shadow: inset 0 -5px 0 0 #a57c08;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop {
    align-items: center;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop:hover {
    cursor: pointer;
    background: #2b70a7;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop:hover svg {
    fill: #333;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop button {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all 0.2s ease-in-out;
  }
  header nav.header-nav ul#menu-primary > li.click-controller:hover {
    cursor: pointer;
  }
  header nav.header-nav ul#menu-primary > li.click-controller:hover > a {
    color: var(--top-color-hover);
    background: var(--top-bg-hover);
  }
  header nav.header-nav ul#menu-primary > li.click-controller > a {
    pointer-events: none;
  }
  header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    box-shadow: inset 0 -5px 0 0 #a57c08;
  }
  header nav.header-nav ul#menu-primary > li.current-menu-item > a {
    box-shadow: inset 0 -5px 0 0 #a57c08;
  }
  header nav.header-nav ul#menu-primary > li .back-button,
  header nav.header-nav ul#menu-primary > li .top-level-link {
    display: none;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    display: flex !important;
    flex-direction: column;
    top: 100%;
    left: 0;
    right: 0;
    width: 250px;
    height: auto !important;
    padding: 1rem 0;
    background: var(--sub-bg);
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
    transform: translateY(1rem);
    transition: var(--transition);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    width: 100%;
    color: var(--sub-color);
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
    line-height: 1.2;
    background: var(--sub-bg);
    transition: color 0.2s ease-in-out;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:hover, header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:active, header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:focus,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:hover,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:active,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:focus {
    color: #a57c08 !important;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a {
    color: #a57c08 !important;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children {
    position: relative;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children > a,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children > a {
    border-left: 5px solid var(--sub-color);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children:hover .sub-menu-depth-2, header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children:hover .sub-menu-depth-2,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li {
    margin-bottom: 0.3ch !important;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    top: -1rem;
    left: 100%;
    width: 200px;
    padding: 0;
    box-shadow: 1rem 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-2::before {
    content: none;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    font-size: 1.4rem;
    background: lightgoldenrodyellow;
  }
  header nav.header-nav ul#menu-primary .mobile-menu-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1023px) {
  header {
    height: 70px;
  }
  header .logo {
    transform: translateY(-23px);
  }
  header .logo svg .icon {
    display: none;
  }
  header nav.header-nav {
    z-index: -2;
    position: fixed;
    right: 0;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: var(--mob-bg);
    transition: var(--transition-menu);
  }
  header nav.header-nav,
  header nav.header-nav ul,
  header nav.header-nav li {
    flex-direction: column;
  }
  html.menu-opened header nav.header-nav {
    visibility: visible;
    opacity: 1;
    transform: translate(0);
  }
  header nav.header-nav ul#menu-primary {
    margin-top: 70px;
    padding: 6rem 6vw 2rem 6vw;
    padding-bottom: 4rem;
  }
  header nav.header-nav ul#menu-primary > li {
    margin: 0;
  }
  header nav.header-nav ul#menu-primary > li:not(:last-child) {
    border-bottom: 1px solid rgba(165, 124, 8, 0.3);
  }
  header nav.header-nav ul#menu-primary > li > a {
    padding: 1ch 0;
    font-size: var(--wp--preset--font-size--normal);
    color: var(--mob-color);
  }
  header nav.header-nav ul#menu-primary > li > a:focus-visible {
    outline: 2px solid #a57c08;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile form {
    display: grid;
    grid-template-columns: 1fr 5rem;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile input {
    padding: 1rem;
    color: #fff;
    width: 100%;
    font-size: 16px;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  header nav.header-nav ul#menu-primary > li.search-mobile input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  header nav.header-nav ul#menu-primary > li.search-mobile button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav.header-nav ul#menu-primary > li.search-mobile button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all 0.2s ease-in-out;
  }
  header nav.header-nav ul#menu-primary > li.search-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    color: var(--mob-current-parent);
    background: var(--mob-current-parent-bg);
  }
  header nav.header-nav ul#menu-primary > li.current-menu-item > a {
    color: var(--mob-current);
    background: var(--mob-current-bg);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    font-size: 1.7rem;
    padding: 1ch;
    color: var(--mob-color);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:focus-visible,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid #a57c08;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a,
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a {
    color: var(--mob-current);
    background: var(--mob-current-bg);
  }
  header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
  }
  header nav.header-nav.full-width {
    max-width: none;
  }
  header nav.header-nav.full-height {
    height: 100vh;
  }
  header nav.header-nav.scrollable {
    overflow-y: scroll;
    height: 100vh;
  }
  header nav.header-nav.scrollable ul#menu-primary > li:last-child {
    margin-bottom: 12rem;
  }
  header nav.header-nav.slideRight {
    left: 0;
    right: auto;
    transform: translateX(-100%);
  }
  header nav.header-nav.slideLeft {
    transform: translateX(100%);
  }
  header nav.header-nav.slideDown {
    transform: translateY(-100%);
  }
  header nav.header-nav.fade {
    opacity: 0;
    visibility: none;
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children > a {
    flex: 1;
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children .mobile-menu-control {
    pointer-events: none;
    width: 5rem;
    height: 4rem;
    transition: var(--transition-menu);
    background: url("../img/custom/menu-arrow.svg") center/14px no-repeat;
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children.submenu-visible > a {
    color: var(--mob-current-parent);
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children.submenu-visible > .mobile-menu-control {
    transform: rotate(180deg);
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children .mega-menu-container {
    width: 100%;
  }
  header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children ul.sub-menu {
    display: none;
    overflow: hidden;
    width: 100%;
    height: 0;
    margin: 0;
    transition: 250ms ease-out;
  }
  header nav.header-nav.collapsed ul#menu-primary .sub-menu-depth-1 li.menu-item-has-children > a::before {
    opacity: 0.5;
  }
  header nav.header-nav.menu-panel {
    overflow-x: hidden;
  }
  header nav.header-nav.menu-panel ul#menu-primary {
    position: relative;
    transition: 350ms ease-out;
    top: 40px;
    left: 0;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > a {
    pointer-events: none;
    position: relative;
    width: auto !important;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > .mobile-menu-control {
    transform: rotate(-90deg);
    right: 0;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > a button.mobile-menu-control {
    transform: rotate(90deg);
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > .sub-menu {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu {
    position: absolute;
    padding: 0 2rem;
    top: 40px;
    width: calc(100% - 4rem);
    left: 100%;
    opacity: 0;
    visibility: hidden;
    height: auto;
    transform: scale(0.8);
    transition: 450ms ease-out;
    overflow: visible;
    border: 0;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu-depth-2 {
    top: 0;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button button {
    display: block;
    font-size: 2.2rem;
    color: white;
    padding: 1.2rem 1rem;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button button::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 12px;
    margin-right: 1rem;
    transform: rotate(90deg);
    background: url(../img/custom/menu-arrow.svg) center/14px no-repeat;
  }
  header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .top-level-link {
    display: block;
  }
  header nav.header-nav.not-clickable ul#menu-primary li.menu-item-has-children > a {
    pointer-events: none;
  }
}
@media (min-width: 1024px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item {
    position: static;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.dropdown-opened .mega-menu-container, header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item:not(.click-controller):hover .mega-menu-container, header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.menu-item-has-children:focus-within .mega-menu-container {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    cursor: auto;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-container {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    margin-left: -50vw;
    left: 50%;
    width: 100vw;
    background: var(--mega-menu-bg);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #eee;
    transition: var(--transition);
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    display: grid;
    grid-template-columns: 1fr 395px 200px;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) and (min-width: 1150px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    grid-template-columns: 1fr 478px 175px;
  }
}
@media (min-width: 1024px) and (min-width: 1250px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    grid-template-columns: 1fr 503px 175px;
  }
}
@media (min-width: 1024px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image {
    grid-row: 1;
    grid-column: 3;
    position: relative;
    aspect-ratio: 3/2;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1024px) and (min-width: 1150px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image {
    margin-right: -55px;
  }
}
@media (min-width: 1024px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text {
    grid-row: 1;
    grid-column: 1;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text p {
    color: var(--top-color);
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text a {
    display: inline-block;
    color: var(--top-current-sticky);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 {
    grid-row: 1;
    grid-column: 2;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    all: unset;
    display: flex !important;
    flex-direction: column;
    gap: 0.25rem;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1::before,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2::before {
    display: none;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li {
    all: unset;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a {
    all: unset;
    cursor: pointer;
    display: inline-block;
    color: var(--top-color);
    font-size: 1.6rem;
    padding: 0.25rem 0;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:hover,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:hover {
    color: var(--top-current-sticky);
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:focus-visible,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid #a57c08;
    outline-offset: -2px;
    border-radius: 2px;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 .back-button,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 .top-level-link,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 .back-button,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 .top-level-link {
    display: none;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    margin: 0;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:before {
    content: "- ";
    font-size: 90%;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item#menu-item-82 .sub-menu-depth-1 {
    display: block !important;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item#menu-item-82 .sub-menu-depth-1 > li {
    display: block;
    margin-bottom: 0.3ch;
  }
  header #menu-item-82 .mega-menu-text .btn {
    all: unset;
    min-width: 12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Libre Franklin", sans-serif;
    font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    padding: 1.25ch 3rem;
    color: #fff;
    background: #a57c08;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-size: 1.35rem !important;
    font-weight: 400 !important;
    margin: 1rem 0 0 0 !important;
    padding: 1.25ch 2rem;
    color: #fff !important;
  }
  * + header #menu-item-82 .mega-menu-text .btn {
    margin-top: 3ch;
  }
  header #menu-item-82 .mega-menu-text .btn svg,
  header #menu-item-82 .mega-menu-text .btn span {
    z-index: 2;
    position: relative;
  }
  header #menu-item-82 .mega-menu-text .btn svg path,
  header #menu-item-82 .mega-menu-text .btn span path {
    fill: #fff;
  }
  header #menu-item-82 .mega-menu-text .btn span {
    width: calc(100% - 24px);
    padding-right: 1ch;
  }
  header #menu-item-82 .mega-menu-text .btn svg {
    width: 24px;
    height: 11px;
    fill: #fff;
  }
  header #menu-item-82 .mega-menu-text .btn:focus-visible {
    outline: 1px solid #2b70a7;
    outline-offset: 0.5rem;
  }
  header #menu-item-82 .mega-menu-text .btn:hover, header #menu-item-82 .mega-menu-text .btn:active, header #menu-item-82 .mega-menu-text .btn:focus {
    text-decoration: none;
    color: #fff;
    background: #2b70a7;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
  }
  header #menu-item-82 .mega-menu-text .btn.btn-primary, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary {
    color: #333;
    background: #2b70a7;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-primary path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary path {
    fill: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-primary:hover, header #menu-item-82 .mega-menu-text .btn.btn-primary:active, header #menu-item-82 .mega-menu-text .btn.btn-primary:focus, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:hover, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:active, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:focus {
    background: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-primary:hover svg,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:hover span, header #menu-item-82 .mega-menu-text .btn.btn-primary:active svg,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:active span, header #menu-item-82 .mega-menu-text .btn.btn-primary:focus svg,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:focus span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:hover svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:hover span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:active svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:active span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:focus svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:focus span {
    color: #2b70a7;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-primary:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:hover span path, header #menu-item-82 .mega-menu-text .btn.btn-primary:active svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:active span path, header #menu-item-82 .mega-menu-text .btn.btn-primary:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-primary:focus span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:hover span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:active svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:active span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-primary:focus span path {
    fill: #2b70a7;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-secondary, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary {
    background: #333;
    color: #2b70a7;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-secondary path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary path {
    fill: #a57c08;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:hover, header #menu-item-82 .mega-menu-text .btn.btn-secondary:active, header #menu-item-82 .mega-menu-text .btn.btn-secondary:focus, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:hover, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:active, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:focus {
    background: #2b70a7;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:hover svg,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:hover span, header #menu-item-82 .mega-menu-text .btn.btn-secondary:active svg,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:active span, header #menu-item-82 .mega-menu-text .btn.btn-secondary:focus svg,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:focus span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:hover svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:hover span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:active svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:active span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:focus svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:focus span {
    color: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:hover span path, header #menu-item-82 .mega-menu-text .btn.btn-secondary:active svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:active span path, header #menu-item-82 .mega-menu-text .btn.btn-secondary:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-secondary:focus span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:hover span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:active svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:active span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-secondary:focus span path {
    fill: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-white, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white {
    background: #fff;
    color: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-white path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white path {
    fill: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-white:hover, header #menu-item-82 .mega-menu-text .btn.btn-white:active, header #menu-item-82 .mega-menu-text .btn.btn-white:focus, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:hover, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:active, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:focus {
    background: #333;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-white:hover svg,
  header #menu-item-82 .mega-menu-text .btn.btn-white:hover span, header #menu-item-82 .mega-menu-text .btn.btn-white:active svg,
  header #menu-item-82 .mega-menu-text .btn.btn-white:active span, header #menu-item-82 .mega-menu-text .btn.btn-white:focus svg,
  header #menu-item-82 .mega-menu-text .btn.btn-white:focus span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:hover svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:hover span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:active svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:active span, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:focus svg,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:focus span {
    color: #fff;
  }
  header #menu-item-82 .mega-menu-text .btn.btn-white:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-white:hover span path, header #menu-item-82 .mega-menu-text .btn.btn-white:active svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-white:active span path, header #menu-item-82 .mega-menu-text .btn.btn-white:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.btn-white:focus span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:hover svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:hover span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:active svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:active span path, header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:focus svg path,
  header #menu-item-82 .mega-menu-text .btn.is-style-btn-white:focus span path {
    fill: #fff;
  }
  header #menu-item-82 .mega-menu-text .btn.full-width {
    display: block;
  }
  header #menu-item-82 .mega-menu-text .btn.aligncenter, header #menu-item-82 .mega-menu-text .btn.center {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 1023px) {
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    all: unset;
  }
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-content,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image,
  header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text {
    display: none;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel {
    overflow-x: hidden;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary {
    position: relative;
    transition: 350ms ease-out;
    top: 40px;
    left: 0;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu {
    position: absolute;
    padding: 0 2rem;
    top: 40px;
    width: calc(100% - 4rem);
    left: 100%;
    opacity: 0;
    visibility: hidden;
    height: auto;
    transform: scale(0.8);
    transition: 450ms ease-out;
    transition-delay: 100ms;
    overflow: visible;
    border: 0;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu-depth-2 {
    top: 0;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button button {
    display: block;
    font-size: 2.2rem;
    color: white;
    padding: 1.2rem 1rem;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button button::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 12px;
    margin-right: 1rem;
    transform: rotate(90deg);
    background: url(../img/custom/menu-arrow.svg) center/14px no-repeat;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .top-level-link {
    display: block;
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > a button.mobile-menu-control {
    transform: rotate(90deg);
  }
  header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible .wrap > ul.sub-menu {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}

@media (min-width: 1024px) {
  .home header:not(.sticky) {
    background: transparent;
  }
  .home header:not(.sticky) nav.header-nav ul#menu-primary > li > a {
    color: #fff;
  }
  .home header:not(.sticky) nav.header-nav ul#menu-primary > li > a:hover, .home header:not(.sticky) nav.header-nav ul#menu-primary > li > a:active, .home header:not(.sticky) nav.header-nav ul#menu-primary > li > a:focus {
    color: #fff;
  }
  .home header:not(.sticky) .logo path,
  .home header:not(.sticky) .logo rect {
    fill: #fff;
  }
}
#topbar {
  height: 54px;
  padding: 7px calc(6vw + 15px) 5px 10px;
  background: rgba(165, 124, 8, 0.6);
  position: absolute;
  top: 0;
  right: 0;
}
#topbar * {
  margin-bottom: 0;
}
#topbar .header-sp {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#topbar .header-sp iframe {
  height: 42px;
  width: 122px;
  border: none;
}
#topbar .header-sp iframe#small-sp-gold {
  width: 95px;
}
#topbar .header-sp iframe#small-sp-tsx {
  width: 111px;
}
#topbar .header-sp iframe#small-sp-otc {
  width: 110px;
}
@media (max-width: 1023px) {
  #topbar {
    display: none;
  }
}
@media (min-width: 1360px) {
  #topbar {
    padding-right: calc(50vw - 585px);
  }
}

.country-selector.weglot-dropdown {
  width: 48px;
  align-self: center;
  white-space: nowrap;
  margin: -10px 0 0 6px;
  transition: margin var(--transition);
}
@media (min-width: 1024px) {
  .country-selector.weglot-dropdown {
    margin: 53px 0 0 20px;
  }
}
@media (min-width: 1150px) {
  .country-selector.weglot-dropdown {
    margin: 53px 0 0 30px;
  }
}
@media (min-width: 1250px) {
  .country-selector.weglot-dropdown {
    margin: 53px 0 0 38px;
  }
}
.country-selector.weglot-dropdown .wgcurrent {
  border: 1px solid #a57c08;
}
.country-selector.weglot-dropdown .wgcurrent:after {
  background: url(../img/custom/switch.svg) no-repeat center center/contain;
  width: 11px;
  height: 6px;
  top: 14px;
  right: 6px;
}
.country-selector.weglot-dropdown a, .country-selector.weglot-dropdown span {
  height: 32px;
  line-height: 33px;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 6px 0 8px !important;
}
.country-selector.weglot-dropdown ul {
  border-color: #a57c08;
  border-top: none;
}

footer {
  font-size: 1.5rem;
  margin-top: 100px;
  padding: 4rem 0 3rem 0;
  color: #fff;
  background: linear-gradient(140deg, #989898 0%, #9b8f67 100%);
}
.home footer {
  margin-top: 0;
}
footer .wrap {
  position: relative;
}
footer .wrap:before {
  content: "";
  display: block;
  width: 100px;
  height: 161px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 179.833 289.527' data-name='Component 22 – 1'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='.5' x2='.5' y2='.64' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23a3832a' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23a3832a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M-3417.048 21219.8a33.58 33.58 0 0 1 16.7-27.994s4.618-2.494 6.988-3.68c25.1-12.219 79.339-36.064 84.549-38.91l-.117-.117c5.21-2.852 40.022-20.168 42.034-38.559v56.709a33.849 33.849 0 0 1-14.921 27.049l-8.643 5.455c-13.26 8.066-37.539 20.762-89.994 42.943 0 0-35.527 14.947-36.594 28.475Zm114.5-81.389a127.319 127.319 0 0 1-16.923-13.266 17.68 17.68 0 0 1-1.319-1.555h-.117a14.06 14.06 0 0 1-3.6-9.555 14.933 14.933 0 0 1 .838-5.141 36.292 36.292 0 0 1 11.163-15.652h.123a141.288 141.288 0 0 1 17.878-12.311l-.117.117h.24l2.76 1.553a67.361 67.361 0 0 1 17.761 14.463l.24.24a14.234 14.234 0 0 1 3.24 9.08 15.485 15.485 0 0 1-2.52 8.242c-6.6 9.8-20.04 18.525-29.4 23.783Zm-28.945-83.273a33.866 33.866 0 0 1 14.824-27.988 533 533 0 0 1 69.853-38.6 28.788 28.788 0 0 0 9.6-6.908v43.477a33.759 33.759 0 0 1-19.688 30.732l-.593.357c-12.1 5.361-28.459 13.1-42.931 21.8a147.81 147.81 0 0 0-17.9 12.508h-.117a35.339 35.339 0 0 0-12.812 22.752l-.235 1.074Z' transform='translate(3417.048 -20981.643)'/%3E%3C/svg%3E");
  background-size: cover;
  position: absolute;
  top: -71px;
  right: 0;
}
.home footer {
  margin-top: 0;
}
footer h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin: 0 0 1.3ch 0 !important;
  color: #fff !important;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer li {
  margin-bottom: 0.6ch;
}
footer p, footer li {
  font-size: 1.5rem;
}
footer a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out;
}
footer a:focus-visible {
  outline: 2px solid #a57c08;
  outline-offset: -2px;
  border-radius: 2px;
}
footer a:hover, footer a:active, footer a:focus {
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1px !important;
}
footer p {
  line-height: 1.6;
}
footer .col {
  margin-bottom: 20px;
}
footer .sub-footer {
  padding-top: 3rem;
  border-top: 1px solid #333;
}
footer .sub-footer p {
  margin-bottom: 0;
}
footer .sub-footer p + p {
  margin-top: 1.5ch;
}
footer .cd-top {
  position: fixed;
  z-index: 9;
  width: 60px;
  height: 60px;
  padding: 1rem;
  right: -100px;
  bottom: 20px;
  border-radius: 10rem;
  background: #333;
  transition: all 0.33s ease-in-out;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
footer .cd-top.cd-is-visible {
  right: 20px;
}
footer .cd-top:hover {
  cursor: pointer;
}
footer .cd-top:hover svg {
  transform: rotate(-360deg);
}
footer .cd-top svg {
  fill: #2b70a7;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
footer .signup {
  margin-bottom: 30px;
}
footer .signup .btn {
  all: unset;
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25ch 3rem;
  color: #fff;
  background: #a57c08;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  font-size: 1.35rem;
  margin-top: 0 !important;
  padding: 1.25ch 2rem;
}
* + footer .signup .btn {
  margin-top: 3ch;
}
footer .signup .btn svg,
footer .signup .btn span {
  z-index: 2;
  position: relative;
}
footer .signup .btn svg path,
footer .signup .btn span path {
  fill: #fff;
}
footer .signup .btn span {
  width: calc(100% - 24px);
  padding-right: 1ch;
}
footer .signup .btn svg {
  width: 24px;
  height: 11px;
  fill: #fff;
}
footer .signup .btn:focus-visible {
  outline: 1px solid #2b70a7;
  outline-offset: 0.5rem;
}
footer .signup .btn:hover, footer .signup .btn:active, footer .signup .btn:focus {
  text-decoration: none;
  color: #fff;
  background: #2b70a7;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
footer .signup .btn.btn-primary, footer .signup .btn.is-style-btn-primary {
  color: #333;
  background: #2b70a7;
}
footer .signup .btn.btn-primary path, footer .signup .btn.is-style-btn-primary path {
  fill: #333;
}
footer .signup .btn.btn-primary:hover, footer .signup .btn.btn-primary:active, footer .signup .btn.btn-primary:focus, footer .signup .btn.is-style-btn-primary:hover, footer .signup .btn.is-style-btn-primary:active, footer .signup .btn.is-style-btn-primary:focus {
  background: #333;
}
footer .signup .btn.btn-primary:hover svg,
footer .signup .btn.btn-primary:hover span, footer .signup .btn.btn-primary:active svg,
footer .signup .btn.btn-primary:active span, footer .signup .btn.btn-primary:focus svg,
footer .signup .btn.btn-primary:focus span, footer .signup .btn.is-style-btn-primary:hover svg,
footer .signup .btn.is-style-btn-primary:hover span, footer .signup .btn.is-style-btn-primary:active svg,
footer .signup .btn.is-style-btn-primary:active span, footer .signup .btn.is-style-btn-primary:focus svg,
footer .signup .btn.is-style-btn-primary:focus span {
  color: #2b70a7;
}
footer .signup .btn.btn-primary:hover svg path,
footer .signup .btn.btn-primary:hover span path, footer .signup .btn.btn-primary:active svg path,
footer .signup .btn.btn-primary:active span path, footer .signup .btn.btn-primary:focus svg path,
footer .signup .btn.btn-primary:focus span path, footer .signup .btn.is-style-btn-primary:hover svg path,
footer .signup .btn.is-style-btn-primary:hover span path, footer .signup .btn.is-style-btn-primary:active svg path,
footer .signup .btn.is-style-btn-primary:active span path, footer .signup .btn.is-style-btn-primary:focus svg path,
footer .signup .btn.is-style-btn-primary:focus span path {
  fill: #2b70a7;
}
footer .signup .btn.btn-secondary, footer .signup .btn.is-style-btn-secondary {
  background: #333;
  color: #2b70a7;
}
footer .signup .btn.btn-secondary path, footer .signup .btn.is-style-btn-secondary path {
  fill: #a57c08;
}
footer .signup .btn.btn-secondary:hover, footer .signup .btn.btn-secondary:active, footer .signup .btn.btn-secondary:focus, footer .signup .btn.is-style-btn-secondary:hover, footer .signup .btn.is-style-btn-secondary:active, footer .signup .btn.is-style-btn-secondary:focus {
  background: #2b70a7;
}
footer .signup .btn.btn-secondary:hover svg,
footer .signup .btn.btn-secondary:hover span, footer .signup .btn.btn-secondary:active svg,
footer .signup .btn.btn-secondary:active span, footer .signup .btn.btn-secondary:focus svg,
footer .signup .btn.btn-secondary:focus span, footer .signup .btn.is-style-btn-secondary:hover svg,
footer .signup .btn.is-style-btn-secondary:hover span, footer .signup .btn.is-style-btn-secondary:active svg,
footer .signup .btn.is-style-btn-secondary:active span, footer .signup .btn.is-style-btn-secondary:focus svg,
footer .signup .btn.is-style-btn-secondary:focus span {
  color: #333;
}
footer .signup .btn.btn-secondary:hover svg path,
footer .signup .btn.btn-secondary:hover span path, footer .signup .btn.btn-secondary:active svg path,
footer .signup .btn.btn-secondary:active span path, footer .signup .btn.btn-secondary:focus svg path,
footer .signup .btn.btn-secondary:focus span path, footer .signup .btn.is-style-btn-secondary:hover svg path,
footer .signup .btn.is-style-btn-secondary:hover span path, footer .signup .btn.is-style-btn-secondary:active svg path,
footer .signup .btn.is-style-btn-secondary:active span path, footer .signup .btn.is-style-btn-secondary:focus svg path,
footer .signup .btn.is-style-btn-secondary:focus span path {
  fill: #333;
}
footer .signup .btn.btn-white, footer .signup .btn.is-style-btn-white {
  background: #fff;
  color: #333;
}
footer .signup .btn.btn-white path, footer .signup .btn.is-style-btn-white path {
  fill: #333;
}
footer .signup .btn.btn-white:hover, footer .signup .btn.btn-white:active, footer .signup .btn.btn-white:focus, footer .signup .btn.is-style-btn-white:hover, footer .signup .btn.is-style-btn-white:active, footer .signup .btn.is-style-btn-white:focus {
  background: #333;
}
footer .signup .btn.btn-white:hover svg,
footer .signup .btn.btn-white:hover span, footer .signup .btn.btn-white:active svg,
footer .signup .btn.btn-white:active span, footer .signup .btn.btn-white:focus svg,
footer .signup .btn.btn-white:focus span, footer .signup .btn.is-style-btn-white:hover svg,
footer .signup .btn.is-style-btn-white:hover span, footer .signup .btn.is-style-btn-white:active svg,
footer .signup .btn.is-style-btn-white:active span, footer .signup .btn.is-style-btn-white:focus svg,
footer .signup .btn.is-style-btn-white:focus span {
  color: #fff;
}
footer .signup .btn.btn-white:hover svg path,
footer .signup .btn.btn-white:hover span path, footer .signup .btn.btn-white:active svg path,
footer .signup .btn.btn-white:active span path, footer .signup .btn.btn-white:focus svg path,
footer .signup .btn.btn-white:focus span path, footer .signup .btn.is-style-btn-white:hover svg path,
footer .signup .btn.is-style-btn-white:hover span path, footer .signup .btn.is-style-btn-white:active svg path,
footer .signup .btn.is-style-btn-white:active span path, footer .signup .btn.is-style-btn-white:focus svg path,
footer .signup .btn.is-style-btn-white:focus span path {
  fill: #fff;
}
footer .signup .btn.full-width {
  display: block;
}
footer .signup .btn.aligncenter, footer .signup .btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
@media (min-width: 620px) {
  footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
  }
  footer .footer-columns > div {
    width: 50%;
  }
  footer .footer-columns > div:nth-child(even) {
    padding-left: 15px;
  }
  footer .footer-columns > div:nth-child(odd) {
    padding-right: 15px;
  }
  footer .footer-columns > div.signup {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  footer {
    margin-top: 3rem;
  }
}
@media (min-width: 1024px) {
  footer {
    margin-top: 170px;
  }
  footer .wrap:before {
    top: -112px;
  }
  footer .footer-columns {
    margin: 0 -15px;
  }
  footer .footer-columns > div {
    width: 26%;
    padding: 0 15px;
    margin-bottom: 12px;
  }
  footer .footer-columns > div.col4 {
    width: 22%;
  }
  footer .footer-columns > div.signup {
    width: 100%;
    margin-bottom: 3rem;
  }
  footer .sub-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2.2rem;
  }
  footer .sub-footer p {
    margin: 0;
  }
  footer .sub-footer p + p {
    margin: 0;
  }
}
@media (min-width: 1250px) {
  footer .wrap:before {
    width: 180px;
    height: 290px;
    top: -171px;
  }
}

.layout-sidebar .content .alignfull > *:not(.btn) {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
.layout-sidebar .content .alignfull > *.btn:not(.aligncenter) {
  margin-left: 6vw !important;
}
@media (min-width: 1024px) {
  .layout-sidebar .content .alignfull > *.btn:not(.aligncenter) {
    margin-left: calc(6vw + 28rem) !important;
    padding-left: 3rem;
  }
}
@media (min-width: 1365px) {
  .layout-sidebar .content .alignfull > *.btn:not(.aligncenter) {
    margin-left: calc(50% - 320px) !important;
  }
}
.layout-sidebar .content .wp-block-image.alignfull:last-child {
  max-height: 45rem;
  margin-top: var(--spacer) !important;
  margin-bottom: -100px;
}
.layout-sidebar .content .wp-block-image.alignfull:last-child.mt0 {
  margin-top: 0 !important;
}
@media (min-width: 1024px) {
  .layout-sidebar .content .wp-block-image.alignfull:last-child {
    margin-bottom: -170px;
  }
}
@media (min-width: 1024px) {
  .layout-sidebar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 6rem;
  }
  .layout-sidebar .content {
    width: calc(100% - 28rem);
  }
  .layout-sidebar .content .alignfull > * {
    padding-left: 28rem;
  }
  .layout-sidebar .sidebar {
    width: 22rem;
  }
}

.layout-narrow > .content {
  max-width: 90rem;
}

.operations-map .btn {
  display: flex;
  max-width: 265px;
  justify-content: space-between;
}
.operations-map .btn + .btn {
  margin-top: 15px;
}

.results-list {
  display: grid;
  grid-gap: 2rem;
  margin: 3rem 0;
  padding: 0;
}
.results-list li {
  margin-bottom: 3ch;
  padding: 0 !important;
}
.results-list li:before {
  display: none;
}
.results-list .result-item {
  display: block;
  text-decoration: none;
  position: relative;
}
.results-list .result-item .title {
  font-family: "Poppins", sans-serif;
  font-size: var(--wp--preset--font-size--r-2-2);
  margin: 0;
  color: #2b70a7;
  transition: color 0.18s ease-in-out;
}
.results-list .result-item .excerpt {
  margin: 0;
}
.results-list .result-item .read-more {
  all: unset;
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25ch 3rem;
  color: #fff;
  background: #a57c08;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  margin-top: 1.2ch;
}
* + .results-list .result-item .read-more {
  margin-top: 3ch;
}
.results-list .result-item .read-more svg,
.results-list .result-item .read-more span {
  z-index: 2;
  position: relative;
}
.results-list .result-item .read-more svg path,
.results-list .result-item .read-more span path {
  fill: #fff;
}
.results-list .result-item .read-more span {
  width: calc(100% - 24px);
  padding-right: 1ch;
}
.results-list .result-item .read-more svg {
  width: 24px;
  height: 11px;
  fill: #fff;
}
.results-list .result-item .read-more:focus-visible {
  outline: 1px solid #2b70a7;
  outline-offset: 0.5rem;
}
.results-list .result-item .read-more:hover, .results-list .result-item .read-more:active, .results-list .result-item .read-more:focus {
  text-decoration: none;
  color: #fff;
  background: #2b70a7;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.results-list .result-item .read-more.btn-primary, .results-list .result-item .read-more.is-style-btn-primary {
  color: #333;
  background: #2b70a7;
}
.results-list .result-item .read-more.btn-primary path, .results-list .result-item .read-more.is-style-btn-primary path {
  fill: #333;
}
.results-list .result-item .read-more.btn-primary:hover, .results-list .result-item .read-more.btn-primary:active, .results-list .result-item .read-more.btn-primary:focus, .results-list .result-item .read-more.is-style-btn-primary:hover, .results-list .result-item .read-more.is-style-btn-primary:active, .results-list .result-item .read-more.is-style-btn-primary:focus {
  background: #333;
}
.results-list .result-item .read-more.btn-primary:hover svg,
.results-list .result-item .read-more.btn-primary:hover span, .results-list .result-item .read-more.btn-primary:active svg,
.results-list .result-item .read-more.btn-primary:active span, .results-list .result-item .read-more.btn-primary:focus svg,
.results-list .result-item .read-more.btn-primary:focus span, .results-list .result-item .read-more.is-style-btn-primary:hover svg,
.results-list .result-item .read-more.is-style-btn-primary:hover span, .results-list .result-item .read-more.is-style-btn-primary:active svg,
.results-list .result-item .read-more.is-style-btn-primary:active span, .results-list .result-item .read-more.is-style-btn-primary:focus svg,
.results-list .result-item .read-more.is-style-btn-primary:focus span {
  color: #2b70a7;
}
.results-list .result-item .read-more.btn-primary:hover svg path,
.results-list .result-item .read-more.btn-primary:hover span path, .results-list .result-item .read-more.btn-primary:active svg path,
.results-list .result-item .read-more.btn-primary:active span path, .results-list .result-item .read-more.btn-primary:focus svg path,
.results-list .result-item .read-more.btn-primary:focus span path, .results-list .result-item .read-more.is-style-btn-primary:hover svg path,
.results-list .result-item .read-more.is-style-btn-primary:hover span path, .results-list .result-item .read-more.is-style-btn-primary:active svg path,
.results-list .result-item .read-more.is-style-btn-primary:active span path, .results-list .result-item .read-more.is-style-btn-primary:focus svg path,
.results-list .result-item .read-more.is-style-btn-primary:focus span path {
  fill: #2b70a7;
}
.results-list .result-item .read-more.btn-secondary, .results-list .result-item .read-more.is-style-btn-secondary {
  background: #333;
  color: #2b70a7;
}
.results-list .result-item .read-more.btn-secondary path, .results-list .result-item .read-more.is-style-btn-secondary path {
  fill: #a57c08;
}
.results-list .result-item .read-more.btn-secondary:hover, .results-list .result-item .read-more.btn-secondary:active, .results-list .result-item .read-more.btn-secondary:focus, .results-list .result-item .read-more.is-style-btn-secondary:hover, .results-list .result-item .read-more.is-style-btn-secondary:active, .results-list .result-item .read-more.is-style-btn-secondary:focus {
  background: #2b70a7;
}
.results-list .result-item .read-more.btn-secondary:hover svg,
.results-list .result-item .read-more.btn-secondary:hover span, .results-list .result-item .read-more.btn-secondary:active svg,
.results-list .result-item .read-more.btn-secondary:active span, .results-list .result-item .read-more.btn-secondary:focus svg,
.results-list .result-item .read-more.btn-secondary:focus span, .results-list .result-item .read-more.is-style-btn-secondary:hover svg,
.results-list .result-item .read-more.is-style-btn-secondary:hover span, .results-list .result-item .read-more.is-style-btn-secondary:active svg,
.results-list .result-item .read-more.is-style-btn-secondary:active span, .results-list .result-item .read-more.is-style-btn-secondary:focus svg,
.results-list .result-item .read-more.is-style-btn-secondary:focus span {
  color: #333;
}
.results-list .result-item .read-more.btn-secondary:hover svg path,
.results-list .result-item .read-more.btn-secondary:hover span path, .results-list .result-item .read-more.btn-secondary:active svg path,
.results-list .result-item .read-more.btn-secondary:active span path, .results-list .result-item .read-more.btn-secondary:focus svg path,
.results-list .result-item .read-more.btn-secondary:focus span path, .results-list .result-item .read-more.is-style-btn-secondary:hover svg path,
.results-list .result-item .read-more.is-style-btn-secondary:hover span path, .results-list .result-item .read-more.is-style-btn-secondary:active svg path,
.results-list .result-item .read-more.is-style-btn-secondary:active span path, .results-list .result-item .read-more.is-style-btn-secondary:focus svg path,
.results-list .result-item .read-more.is-style-btn-secondary:focus span path {
  fill: #333;
}
.results-list .result-item .read-more.btn-white, .results-list .result-item .read-more.is-style-btn-white {
  background: #fff;
  color: #333;
}
.results-list .result-item .read-more.btn-white path, .results-list .result-item .read-more.is-style-btn-white path {
  fill: #333;
}
.results-list .result-item .read-more.btn-white:hover, .results-list .result-item .read-more.btn-white:active, .results-list .result-item .read-more.btn-white:focus, .results-list .result-item .read-more.is-style-btn-white:hover, .results-list .result-item .read-more.is-style-btn-white:active, .results-list .result-item .read-more.is-style-btn-white:focus {
  background: #333;
}
.results-list .result-item .read-more.btn-white:hover svg,
.results-list .result-item .read-more.btn-white:hover span, .results-list .result-item .read-more.btn-white:active svg,
.results-list .result-item .read-more.btn-white:active span, .results-list .result-item .read-more.btn-white:focus svg,
.results-list .result-item .read-more.btn-white:focus span, .results-list .result-item .read-more.is-style-btn-white:hover svg,
.results-list .result-item .read-more.is-style-btn-white:hover span, .results-list .result-item .read-more.is-style-btn-white:active svg,
.results-list .result-item .read-more.is-style-btn-white:active span, .results-list .result-item .read-more.is-style-btn-white:focus svg,
.results-list .result-item .read-more.is-style-btn-white:focus span {
  color: #fff;
}
.results-list .result-item .read-more.btn-white:hover svg path,
.results-list .result-item .read-more.btn-white:hover span path, .results-list .result-item .read-more.btn-white:active svg path,
.results-list .result-item .read-more.btn-white:active span path, .results-list .result-item .read-more.btn-white:focus svg path,
.results-list .result-item .read-more.btn-white:focus span path, .results-list .result-item .read-more.is-style-btn-white:hover svg path,
.results-list .result-item .read-more.is-style-btn-white:hover span path, .results-list .result-item .read-more.is-style-btn-white:active svg path,
.results-list .result-item .read-more.is-style-btn-white:active span path, .results-list .result-item .read-more.is-style-btn-white:focus svg path,
.results-list .result-item .read-more.is-style-btn-white:focus span path {
  fill: #fff;
}
.results-list .result-item .read-more.full-width {
  display: block;
}
.results-list .result-item .read-more.aligncenter, .results-list .result-item .read-more.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.results-list .result-item:hover .title {
  color: #a57c08;
}

@media (max-width: 1023px) {
  .sidebar {
    padding-top: 4rem;
  }
}
.sidebar-widget {
  position: sticky;
  top: 120px;
  z-index: 7;
}
@media (min-width: 1024px) {
  .sidebar-widget {
    margin: -10px 0 0 -20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.sidebar-widget .widget + .widget {
  margin-top: 3rem;
}
.sidebar-widget .sidebar-title,
.sidebar-widget .parent-link {
  font-family: "Libre Franklin", sans-serif;
  font-size: var(--wp--preset--font-size--r-2-6);
  font-weight: 700;
  color: #a57c08;
  padding: 0 1rem 1.5rem 1rem;
  transition: color 0.2s ease-in-out;
}
.sidebar-widget .sidebar-title:hover, .sidebar-widget .sidebar-title:focus,
.sidebar-widget .parent-link:hover,
.sidebar-widget .parent-link:focus {
  color: #333;
  background: transparent;
}
.sidebar-widget ul {
  margin: 0;
  padding: 0;
}
.sidebar-widget ul.children > li > a:before {
  content: "- ";
}
.sidebar-widget li {
  list-style: none;
  margin: 0 0 1px 0;
  padding: 0;
}
.sidebar-widget li.current-year > a, .sidebar-widget li.current-post > a, .sidebar-widget li.current_page_item > a {
  background: rgba(165, 124, 8, 0.11);
}
.sidebar-widget a {
  display: block;
  font-size: 1.6rem;
  text-decoration: none !important;
  padding: 0.7rem 1rem 0.4rem 1rem;
  color: #585758;
  transition: background 0.2s ease-in-out;
}
.sidebar-widget a:focus, .sidebar-widget a:hover {
  text-decoration: none;
  background: rgba(165, 124, 8, 0.11);
}
.sidebar-widget .block-cta {
  display: block;
  margin-top: 3rem;
  padding: 0;
  background: transparent;
}
.sidebar-widget .block-cta .cta-bg {
  display: block;
  background-size: 100%;
  background-position: center;
  aspect-ratio: 1.817;
  -o-object-fit: cover;
     object-fit: cover;
  transition: background-size 0.5s ease-in-out;
}
.sidebar-widget .block-cta .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #a57c08;
}
.sidebar-widget .block-cta .title h3 {
  font-size: var(--wp--preset--font-size--r-2-2);
  line-height: 1.05;
  margin: 0;
  color: #fff;
}
.sidebar-widget .block-cta .title svg {
  width: 50px;
  height: 50px;
}
.sidebar-widget .block-cta:hover, .sidebar-widget .block-cta:active, .sidebar-widget .block-cta:focus {
  text-decoration: none;
}
.sidebar-widget .block-cta:hover .cta-bg, .sidebar-widget .block-cta:active .cta-bg, .sidebar-widget .block-cta:focus .cta-bg {
  background-size: 105%;
}
.sidebar-widget.committees-widget {
  margin: 20px 0 0 0;
  padding: 15px;
  background: linear-gradient(140deg, rgba(165, 124, 8, 0.15) 0%, rgba(165, 124, 8, 0.015) 100%);
}
.sidebar-widget.committees-widget h3 {
  font-size: var(--wp--preset--font-size--r-2-2);
}
.sidebar-widget.committees-widget ul li {
  min-height: 24px;
  font-size: 1.5rem;
  margin: 0 0 1ch 0;
  padding: 0 0 0 32px;
  position: relative;
}
.sidebar-widget.committees-widget ul li .committee {
  width: 24px;
  height: 24px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 3px;
  color: #2b70a7;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #2b70a7;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 0;
}
.sidebar-widget.committees-widget ul li.chair .committee {
  border-color: #a57c08;
}

.sidebar .nav-links > div {
  margin: 0 0 1rem 0;
  position: relative;
}
.sidebar .nav-links > div a {
  display: block;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 1.15;
  padding: 1.5ch;
  background: linear-gradient(140deg, rgba(165, 124, 8, 0.15) 0%, rgba(165, 124, 8, 0.015) 100%);
}
.sidebar .nav-links > div a span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #a4a3a2;
  margin-bottom: 0.4ch;
}
.sidebar .nav-links > div a strong {
  display: block;
  font-weight: 500;
  color: #333;
  transition: color 0.25s ease-in-out;
}
.sidebar .nav-links > div a:focus-visible strong {
  color: #2b70a7;
}
.sidebar .nav-links > div:last-child:after {
  display: none;
}
.sidebar .nav-links > div:hover a, .sidebar .nav-links > div:active a, .sidebar .nav-links > div:focus a {
  text-decoration: none;
}
.sidebar .nav-links > div:hover a strong, .sidebar .nav-links > div:active a strong, .sidebar .nav-links > div:focus a strong {
  color: #2b70a7;
}
.sidebar .btn {
  all: unset;
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25ch 3rem;
  color: #fff;
  background: #a57c08;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
* + .sidebar .btn {
  margin-top: 3ch;
}
.sidebar .btn svg,
.sidebar .btn span {
  z-index: 2;
  position: relative;
}
.sidebar .btn svg path,
.sidebar .btn span path {
  fill: #fff;
}
.sidebar .btn span {
  width: calc(100% - 24px);
  padding-right: 1ch;
}
.sidebar .btn svg {
  width: 24px;
  height: 11px;
  fill: #fff;
}
.sidebar .btn:focus-visible {
  outline: 1px solid #2b70a7;
  outline-offset: 0.5rem;
}
.sidebar .btn:hover, .sidebar .btn:active, .sidebar .btn:focus {
  text-decoration: none;
  color: #fff;
  background: #2b70a7;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.sidebar .btn.btn-primary, .sidebar .btn.is-style-btn-primary {
  color: #333;
  background: #2b70a7;
}
.sidebar .btn.btn-primary path, .sidebar .btn.is-style-btn-primary path {
  fill: #333;
}
.sidebar .btn.btn-primary:hover, .sidebar .btn.btn-primary:active, .sidebar .btn.btn-primary:focus, .sidebar .btn.is-style-btn-primary:hover, .sidebar .btn.is-style-btn-primary:active, .sidebar .btn.is-style-btn-primary:focus {
  background: #333;
}
.sidebar .btn.btn-primary:hover svg,
.sidebar .btn.btn-primary:hover span, .sidebar .btn.btn-primary:active svg,
.sidebar .btn.btn-primary:active span, .sidebar .btn.btn-primary:focus svg,
.sidebar .btn.btn-primary:focus span, .sidebar .btn.is-style-btn-primary:hover svg,
.sidebar .btn.is-style-btn-primary:hover span, .sidebar .btn.is-style-btn-primary:active svg,
.sidebar .btn.is-style-btn-primary:active span, .sidebar .btn.is-style-btn-primary:focus svg,
.sidebar .btn.is-style-btn-primary:focus span {
  color: #2b70a7;
}
.sidebar .btn.btn-primary:hover svg path,
.sidebar .btn.btn-primary:hover span path, .sidebar .btn.btn-primary:active svg path,
.sidebar .btn.btn-primary:active span path, .sidebar .btn.btn-primary:focus svg path,
.sidebar .btn.btn-primary:focus span path, .sidebar .btn.is-style-btn-primary:hover svg path,
.sidebar .btn.is-style-btn-primary:hover span path, .sidebar .btn.is-style-btn-primary:active svg path,
.sidebar .btn.is-style-btn-primary:active span path, .sidebar .btn.is-style-btn-primary:focus svg path,
.sidebar .btn.is-style-btn-primary:focus span path {
  fill: #2b70a7;
}
.sidebar .btn.btn-secondary, .sidebar .btn.is-style-btn-secondary {
  background: #333;
  color: #2b70a7;
}
.sidebar .btn.btn-secondary path, .sidebar .btn.is-style-btn-secondary path {
  fill: #a57c08;
}
.sidebar .btn.btn-secondary:hover, .sidebar .btn.btn-secondary:active, .sidebar .btn.btn-secondary:focus, .sidebar .btn.is-style-btn-secondary:hover, .sidebar .btn.is-style-btn-secondary:active, .sidebar .btn.is-style-btn-secondary:focus {
  background: #2b70a7;
}
.sidebar .btn.btn-secondary:hover svg,
.sidebar .btn.btn-secondary:hover span, .sidebar .btn.btn-secondary:active svg,
.sidebar .btn.btn-secondary:active span, .sidebar .btn.btn-secondary:focus svg,
.sidebar .btn.btn-secondary:focus span, .sidebar .btn.is-style-btn-secondary:hover svg,
.sidebar .btn.is-style-btn-secondary:hover span, .sidebar .btn.is-style-btn-secondary:active svg,
.sidebar .btn.is-style-btn-secondary:active span, .sidebar .btn.is-style-btn-secondary:focus svg,
.sidebar .btn.is-style-btn-secondary:focus span {
  color: #333;
}
.sidebar .btn.btn-secondary:hover svg path,
.sidebar .btn.btn-secondary:hover span path, .sidebar .btn.btn-secondary:active svg path,
.sidebar .btn.btn-secondary:active span path, .sidebar .btn.btn-secondary:focus svg path,
.sidebar .btn.btn-secondary:focus span path, .sidebar .btn.is-style-btn-secondary:hover svg path,
.sidebar .btn.is-style-btn-secondary:hover span path, .sidebar .btn.is-style-btn-secondary:active svg path,
.sidebar .btn.is-style-btn-secondary:active span path, .sidebar .btn.is-style-btn-secondary:focus svg path,
.sidebar .btn.is-style-btn-secondary:focus span path {
  fill: #333;
}
.sidebar .btn.btn-white, .sidebar .btn.is-style-btn-white {
  background: #fff;
  color: #333;
}
.sidebar .btn.btn-white path, .sidebar .btn.is-style-btn-white path {
  fill: #333;
}
.sidebar .btn.btn-white:hover, .sidebar .btn.btn-white:active, .sidebar .btn.btn-white:focus, .sidebar .btn.is-style-btn-white:hover, .sidebar .btn.is-style-btn-white:active, .sidebar .btn.is-style-btn-white:focus {
  background: #333;
}
.sidebar .btn.btn-white:hover svg,
.sidebar .btn.btn-white:hover span, .sidebar .btn.btn-white:active svg,
.sidebar .btn.btn-white:active span, .sidebar .btn.btn-white:focus svg,
.sidebar .btn.btn-white:focus span, .sidebar .btn.is-style-btn-white:hover svg,
.sidebar .btn.is-style-btn-white:hover span, .sidebar .btn.is-style-btn-white:active svg,
.sidebar .btn.is-style-btn-white:active span, .sidebar .btn.is-style-btn-white:focus svg,
.sidebar .btn.is-style-btn-white:focus span {
  color: #fff;
}
.sidebar .btn.btn-white:hover svg path,
.sidebar .btn.btn-white:hover span path, .sidebar .btn.btn-white:active svg path,
.sidebar .btn.btn-white:active span path, .sidebar .btn.btn-white:focus svg path,
.sidebar .btn.btn-white:focus span path, .sidebar .btn.is-style-btn-white:hover svg path,
.sidebar .btn.is-style-btn-white:hover span path, .sidebar .btn.is-style-btn-white:active svg path,
.sidebar .btn.is-style-btn-white:active span path, .sidebar .btn.is-style-btn-white:focus svg path,
.sidebar .btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.sidebar .btn.full-width {
  display: block;
}
.sidebar .btn.aligncenter, .sidebar .btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.sidebar .btn.sm {
  width: 100%;
  max-width: 20rem;
  font-size: 88%;
  padding: 1.65ch 1rem;
}
.sidebar .btn.sm span {
  padding: 0;
}

html[lang=pt-br] .sidebar-widget .sidebar-title,
html[lang=pt-br] .sidebar-widget .parent-link {
  font-size: var(--wp--preset--font-size--r-2-2);
}

.posts {
  display: grid;
  grid-gap: 2rem;
}
.posts .excerpt {
  background: #fff;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.posts .excerpt h3,
.posts .excerpt p {
  margin-bottom: 1rem;
}
.posts p.meta {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
}
.posts h3 {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Libre Franklin", sans-serif;
}
.posts .btn-sm {
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid #333;
  border-radius: 10rem;
  fill: #333;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  white-space: nowrap;
}
.posts .btn-sm svg {
  width: 25px;
  height: auto;
  fill: #333;
}

.single-latest_news .post-nav .nav-links,
.single-post .post-nav .nav-links {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 501px) {
  .single-latest_news .post-nav .nav-links,
  .single-post .post-nav .nav-links {
    grid-template-columns: 1fr 1fr;
  }
  .single-latest_news .post-nav .nav-links .nav-next,
  .single-post .post-nav .nav-links .nav-next {
    grid-column: 2/2;
  }
  .single-latest_news .post-nav .nav-links .nav-previous,
  .single-post .post-nav .nav-links .nav-previous {
    grid-column: 1/1;
  }
}
.single-latest_news .post-nav .nav-links > div,
.single-post .post-nav .nav-links > div {
  flex: 1;
}
.single-latest_news .post-nav .nav-links a,
.single-post .post-nav .nav-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 3rem;
  padding: 2rem;
  background: whitesmoke;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.single-latest_news .post-nav .nav-links a:hover,
.single-post .post-nav .nav-links a:hover {
  background: #333;
  text-decoration: none;
}
.single-latest_news .post-nav .nav-links a:hover span,
.single-post .post-nav .nav-links a:hover span {
  color: #fff;
}
.single-latest_news .post-nav .nav-links a:hover svg,
.single-post .post-nav .nav-links a:hover svg {
  fill: #fff;
}
.single-latest_news .post-nav .nav-links a span,
.single-post .post-nav .nav-links a span {
  font-weight: 500;
  font-size: 1.6rem;
  color: #333;
  transition: all 0.25s ease-in-out;
}
.single-latest_news .post-nav .nav-links a svg,
.single-post .post-nav .nav-links a svg {
  width: 100%;
  max-width: 20px;
  height: 30px;
  fill: #333;
  transition: all 0.25s ease-in-out;
}

.bir-pagination {
  margin-top: 3rem;
}
.bir-pagination .nav-links {
  display: flex;
  gap: 1.5rem;
}
.bir-pagination .page-numbers {
  line-height: 1;
  background: whitesmoke;
  color: #000;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.bir-pagination .page-numbers.current {
  background: #1a1a1a;
  color: #fff;
}

.single h1.page-title {
  font-size: var(--wp--preset--font-size--r-3);
}
.single .post-meta {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #a4a3a2;
  margin: 0 0 3ch 0;
}
.single .btn {
  all: unset;
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25ch 3rem;
  color: #fff;
  background: #a57c08;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
* + .single .btn {
  margin-top: 3ch;
}
.single .btn svg,
.single .btn span {
  z-index: 2;
  position: relative;
}
.single .btn svg path,
.single .btn span path {
  fill: #fff;
}
.single .btn span {
  width: calc(100% - 24px);
  padding-right: 1ch;
}
.single .btn svg {
  width: 24px;
  height: 11px;
  fill: #fff;
}
.single .btn:focus-visible {
  outline: 1px solid #2b70a7;
  outline-offset: 0.5rem;
}
.single .btn:hover, .single .btn:active, .single .btn:focus {
  text-decoration: none;
  color: #fff;
  background: #2b70a7;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.single .btn.btn-primary, .single .btn.is-style-btn-primary {
  color: #333;
  background: #2b70a7;
}
.single .btn.btn-primary path, .single .btn.is-style-btn-primary path {
  fill: #333;
}
.single .btn.btn-primary:hover, .single .btn.btn-primary:active, .single .btn.btn-primary:focus, .single .btn.is-style-btn-primary:hover, .single .btn.is-style-btn-primary:active, .single .btn.is-style-btn-primary:focus {
  background: #333;
}
.single .btn.btn-primary:hover svg,
.single .btn.btn-primary:hover span, .single .btn.btn-primary:active svg,
.single .btn.btn-primary:active span, .single .btn.btn-primary:focus svg,
.single .btn.btn-primary:focus span, .single .btn.is-style-btn-primary:hover svg,
.single .btn.is-style-btn-primary:hover span, .single .btn.is-style-btn-primary:active svg,
.single .btn.is-style-btn-primary:active span, .single .btn.is-style-btn-primary:focus svg,
.single .btn.is-style-btn-primary:focus span {
  color: #2b70a7;
}
.single .btn.btn-primary:hover svg path,
.single .btn.btn-primary:hover span path, .single .btn.btn-primary:active svg path,
.single .btn.btn-primary:active span path, .single .btn.btn-primary:focus svg path,
.single .btn.btn-primary:focus span path, .single .btn.is-style-btn-primary:hover svg path,
.single .btn.is-style-btn-primary:hover span path, .single .btn.is-style-btn-primary:active svg path,
.single .btn.is-style-btn-primary:active span path, .single .btn.is-style-btn-primary:focus svg path,
.single .btn.is-style-btn-primary:focus span path {
  fill: #2b70a7;
}
.single .btn.btn-secondary, .single .btn.is-style-btn-secondary {
  background: #333;
  color: #2b70a7;
}
.single .btn.btn-secondary path, .single .btn.is-style-btn-secondary path {
  fill: #a57c08;
}
.single .btn.btn-secondary:hover, .single .btn.btn-secondary:active, .single .btn.btn-secondary:focus, .single .btn.is-style-btn-secondary:hover, .single .btn.is-style-btn-secondary:active, .single .btn.is-style-btn-secondary:focus {
  background: #2b70a7;
}
.single .btn.btn-secondary:hover svg,
.single .btn.btn-secondary:hover span, .single .btn.btn-secondary:active svg,
.single .btn.btn-secondary:active span, .single .btn.btn-secondary:focus svg,
.single .btn.btn-secondary:focus span, .single .btn.is-style-btn-secondary:hover svg,
.single .btn.is-style-btn-secondary:hover span, .single .btn.is-style-btn-secondary:active svg,
.single .btn.is-style-btn-secondary:active span, .single .btn.is-style-btn-secondary:focus svg,
.single .btn.is-style-btn-secondary:focus span {
  color: #333;
}
.single .btn.btn-secondary:hover svg path,
.single .btn.btn-secondary:hover span path, .single .btn.btn-secondary:active svg path,
.single .btn.btn-secondary:active span path, .single .btn.btn-secondary:focus svg path,
.single .btn.btn-secondary:focus span path, .single .btn.is-style-btn-secondary:hover svg path,
.single .btn.is-style-btn-secondary:hover span path, .single .btn.is-style-btn-secondary:active svg path,
.single .btn.is-style-btn-secondary:active span path, .single .btn.is-style-btn-secondary:focus svg path,
.single .btn.is-style-btn-secondary:focus span path {
  fill: #333;
}
.single .btn.btn-white, .single .btn.is-style-btn-white {
  background: #fff;
  color: #333;
}
.single .btn.btn-white path, .single .btn.is-style-btn-white path {
  fill: #333;
}
.single .btn.btn-white:hover, .single .btn.btn-white:active, .single .btn.btn-white:focus, .single .btn.is-style-btn-white:hover, .single .btn.is-style-btn-white:active, .single .btn.is-style-btn-white:focus {
  background: #333;
}
.single .btn.btn-white:hover svg,
.single .btn.btn-white:hover span, .single .btn.btn-white:active svg,
.single .btn.btn-white:active span, .single .btn.btn-white:focus svg,
.single .btn.btn-white:focus span, .single .btn.is-style-btn-white:hover svg,
.single .btn.is-style-btn-white:hover span, .single .btn.is-style-btn-white:active svg,
.single .btn.is-style-btn-white:active span, .single .btn.is-style-btn-white:focus svg,
.single .btn.is-style-btn-white:focus span {
  color: #fff;
}
.single .btn.btn-white:hover svg path,
.single .btn.btn-white:hover span path, .single .btn.btn-white:active svg path,
.single .btn.btn-white:active span path, .single .btn.btn-white:focus svg path,
.single .btn.btn-white:focus span path, .single .btn.is-style-btn-white:hover svg path,
.single .btn.is-style-btn-white:hover span path, .single .btn.is-style-btn-white:active svg path,
.single .btn.is-style-btn-white:active span path, .single .btn.is-style-btn-white:focus svg path,
.single .btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.single .btn.full-width {
  display: block;
}
.single .btn.aligncenter, .single .btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.single .btn.ext-link span {
  width: calc(100% - 20px);
}
.single .btn.ext-link svg {
  width: 20px;
  height: 20px;
  margin-top: -5px;
}
.single .btn.ext-link svg path {
  fill: none;
}

.gform_wrapper :focus-visible {
  outline: none;
}
.gform_wrapper #field_1_9,
.gform_wrapper .gform_required_legend {
  display: none;
}
@media (min-width: 782px) {
  .gform_wrapper .gform_heading {
    margin-top: var(--spacer-sm);
  }
}

form .gfield {
  margin: 0 0 20px 0;
}
form .gform_validation_container {
  display: none;
}
form label,
form .gfield_label {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.45ch;
  color: #333;
}
form .hidden_label > label,
form .hidden_label > legend {
  display: none;
}
form input,
form textarea,
form select {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  padding: 12px 18px;
  color: #585758;
  background: #fff;
  border: 1px solid #585758;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border 0.18s ease-in-out;
}
form input:active, form input:focus, form input:focus-visible,
form textarea:active,
form textarea:focus,
form textarea:focus-visible,
form select:active,
form select:focus,
form select:focus-visible {
  outline: none !important;
  border-color: #a57c08;
  border-radius: 0;
}
form input[type=submit],
form textarea[type=submit],
form select[type=submit] {
  all: unset;
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.2rem) * 0.625, 2rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25ch 3rem;
  color: #fff;
  background: #a57c08;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  width: auto;
  max-width: 160px;
  margin-top: 0 !important;
  cursor: pointer;
}
* + form input[type=submit],
* + form textarea[type=submit],
* + form select[type=submit] {
  margin-top: 3ch;
}
form input[type=submit] svg,
form input[type=submit] span,
form textarea[type=submit] svg,
form textarea[type=submit] span,
form select[type=submit] svg,
form select[type=submit] span {
  z-index: 2;
  position: relative;
}
form input[type=submit] svg path,
form input[type=submit] span path,
form textarea[type=submit] svg path,
form textarea[type=submit] span path,
form select[type=submit] svg path,
form select[type=submit] span path {
  fill: #fff;
}
form input[type=submit] span,
form textarea[type=submit] span,
form select[type=submit] span {
  width: calc(100% - 24px);
  padding-right: 1ch;
}
form input[type=submit] svg,
form textarea[type=submit] svg,
form select[type=submit] svg {
  width: 24px;
  height: 11px;
  fill: #fff;
}
form input[type=submit]:focus-visible,
form textarea[type=submit]:focus-visible,
form select[type=submit]:focus-visible {
  outline: 1px solid #2b70a7;
  outline-offset: 0.5rem;
}
form input[type=submit]:hover, form input[type=submit]:active, form input[type=submit]:focus,
form textarea[type=submit]:hover,
form textarea[type=submit]:active,
form textarea[type=submit]:focus,
form select[type=submit]:hover,
form select[type=submit]:active,
form select[type=submit]:focus {
  text-decoration: none;
  color: #fff;
  background: #2b70a7;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
form input[type=submit].btn-primary, form input[type=submit].is-style-btn-primary,
form textarea[type=submit].btn-primary,
form textarea[type=submit].is-style-btn-primary,
form select[type=submit].btn-primary,
form select[type=submit].is-style-btn-primary {
  color: #333;
  background: #2b70a7;
}
form input[type=submit].btn-primary path, form input[type=submit].is-style-btn-primary path,
form textarea[type=submit].btn-primary path,
form textarea[type=submit].is-style-btn-primary path,
form select[type=submit].btn-primary path,
form select[type=submit].is-style-btn-primary path {
  fill: #333;
}
form input[type=submit].btn-primary:hover, form input[type=submit].btn-primary:active, form input[type=submit].btn-primary:focus, form input[type=submit].is-style-btn-primary:hover, form input[type=submit].is-style-btn-primary:active, form input[type=submit].is-style-btn-primary:focus,
form textarea[type=submit].btn-primary:hover,
form textarea[type=submit].btn-primary:active,
form textarea[type=submit].btn-primary:focus,
form textarea[type=submit].is-style-btn-primary:hover,
form textarea[type=submit].is-style-btn-primary:active,
form textarea[type=submit].is-style-btn-primary:focus,
form select[type=submit].btn-primary:hover,
form select[type=submit].btn-primary:active,
form select[type=submit].btn-primary:focus,
form select[type=submit].is-style-btn-primary:hover,
form select[type=submit].is-style-btn-primary:active,
form select[type=submit].is-style-btn-primary:focus {
  background: #333;
}
form input[type=submit].btn-primary:hover svg,
form input[type=submit].btn-primary:hover span, form input[type=submit].btn-primary:active svg,
form input[type=submit].btn-primary:active span, form input[type=submit].btn-primary:focus svg,
form input[type=submit].btn-primary:focus span, form input[type=submit].is-style-btn-primary:hover svg,
form input[type=submit].is-style-btn-primary:hover span, form input[type=submit].is-style-btn-primary:active svg,
form input[type=submit].is-style-btn-primary:active span, form input[type=submit].is-style-btn-primary:focus svg,
form input[type=submit].is-style-btn-primary:focus span,
form textarea[type=submit].btn-primary:hover svg,
form textarea[type=submit].btn-primary:hover span,
form textarea[type=submit].btn-primary:active svg,
form textarea[type=submit].btn-primary:active span,
form textarea[type=submit].btn-primary:focus svg,
form textarea[type=submit].btn-primary:focus span,
form textarea[type=submit].is-style-btn-primary:hover svg,
form textarea[type=submit].is-style-btn-primary:hover span,
form textarea[type=submit].is-style-btn-primary:active svg,
form textarea[type=submit].is-style-btn-primary:active span,
form textarea[type=submit].is-style-btn-primary:focus svg,
form textarea[type=submit].is-style-btn-primary:focus span,
form select[type=submit].btn-primary:hover svg,
form select[type=submit].btn-primary:hover span,
form select[type=submit].btn-primary:active svg,
form select[type=submit].btn-primary:active span,
form select[type=submit].btn-primary:focus svg,
form select[type=submit].btn-primary:focus span,
form select[type=submit].is-style-btn-primary:hover svg,
form select[type=submit].is-style-btn-primary:hover span,
form select[type=submit].is-style-btn-primary:active svg,
form select[type=submit].is-style-btn-primary:active span,
form select[type=submit].is-style-btn-primary:focus svg,
form select[type=submit].is-style-btn-primary:focus span {
  color: #2b70a7;
}
form input[type=submit].btn-primary:hover svg path,
form input[type=submit].btn-primary:hover span path, form input[type=submit].btn-primary:active svg path,
form input[type=submit].btn-primary:active span path, form input[type=submit].btn-primary:focus svg path,
form input[type=submit].btn-primary:focus span path, form input[type=submit].is-style-btn-primary:hover svg path,
form input[type=submit].is-style-btn-primary:hover span path, form input[type=submit].is-style-btn-primary:active svg path,
form input[type=submit].is-style-btn-primary:active span path, form input[type=submit].is-style-btn-primary:focus svg path,
form input[type=submit].is-style-btn-primary:focus span path,
form textarea[type=submit].btn-primary:hover svg path,
form textarea[type=submit].btn-primary:hover span path,
form textarea[type=submit].btn-primary:active svg path,
form textarea[type=submit].btn-primary:active span path,
form textarea[type=submit].btn-primary:focus svg path,
form textarea[type=submit].btn-primary:focus span path,
form textarea[type=submit].is-style-btn-primary:hover svg path,
form textarea[type=submit].is-style-btn-primary:hover span path,
form textarea[type=submit].is-style-btn-primary:active svg path,
form textarea[type=submit].is-style-btn-primary:active span path,
form textarea[type=submit].is-style-btn-primary:focus svg path,
form textarea[type=submit].is-style-btn-primary:focus span path,
form select[type=submit].btn-primary:hover svg path,
form select[type=submit].btn-primary:hover span path,
form select[type=submit].btn-primary:active svg path,
form select[type=submit].btn-primary:active span path,
form select[type=submit].btn-primary:focus svg path,
form select[type=submit].btn-primary:focus span path,
form select[type=submit].is-style-btn-primary:hover svg path,
form select[type=submit].is-style-btn-primary:hover span path,
form select[type=submit].is-style-btn-primary:active svg path,
form select[type=submit].is-style-btn-primary:active span path,
form select[type=submit].is-style-btn-primary:focus svg path,
form select[type=submit].is-style-btn-primary:focus span path {
  fill: #2b70a7;
}
form input[type=submit].btn-secondary, form input[type=submit].is-style-btn-secondary,
form textarea[type=submit].btn-secondary,
form textarea[type=submit].is-style-btn-secondary,
form select[type=submit].btn-secondary,
form select[type=submit].is-style-btn-secondary {
  background: #333;
  color: #2b70a7;
}
form input[type=submit].btn-secondary path, form input[type=submit].is-style-btn-secondary path,
form textarea[type=submit].btn-secondary path,
form textarea[type=submit].is-style-btn-secondary path,
form select[type=submit].btn-secondary path,
form select[type=submit].is-style-btn-secondary path {
  fill: #a57c08;
}
form input[type=submit].btn-secondary:hover, form input[type=submit].btn-secondary:active, form input[type=submit].btn-secondary:focus, form input[type=submit].is-style-btn-secondary:hover, form input[type=submit].is-style-btn-secondary:active, form input[type=submit].is-style-btn-secondary:focus,
form textarea[type=submit].btn-secondary:hover,
form textarea[type=submit].btn-secondary:active,
form textarea[type=submit].btn-secondary:focus,
form textarea[type=submit].is-style-btn-secondary:hover,
form textarea[type=submit].is-style-btn-secondary:active,
form textarea[type=submit].is-style-btn-secondary:focus,
form select[type=submit].btn-secondary:hover,
form select[type=submit].btn-secondary:active,
form select[type=submit].btn-secondary:focus,
form select[type=submit].is-style-btn-secondary:hover,
form select[type=submit].is-style-btn-secondary:active,
form select[type=submit].is-style-btn-secondary:focus {
  background: #2b70a7;
}
form input[type=submit].btn-secondary:hover svg,
form input[type=submit].btn-secondary:hover span, form input[type=submit].btn-secondary:active svg,
form input[type=submit].btn-secondary:active span, form input[type=submit].btn-secondary:focus svg,
form input[type=submit].btn-secondary:focus span, form input[type=submit].is-style-btn-secondary:hover svg,
form input[type=submit].is-style-btn-secondary:hover span, form input[type=submit].is-style-btn-secondary:active svg,
form input[type=submit].is-style-btn-secondary:active span, form input[type=submit].is-style-btn-secondary:focus svg,
form input[type=submit].is-style-btn-secondary:focus span,
form textarea[type=submit].btn-secondary:hover svg,
form textarea[type=submit].btn-secondary:hover span,
form textarea[type=submit].btn-secondary:active svg,
form textarea[type=submit].btn-secondary:active span,
form textarea[type=submit].btn-secondary:focus svg,
form textarea[type=submit].btn-secondary:focus span,
form textarea[type=submit].is-style-btn-secondary:hover svg,
form textarea[type=submit].is-style-btn-secondary:hover span,
form textarea[type=submit].is-style-btn-secondary:active svg,
form textarea[type=submit].is-style-btn-secondary:active span,
form textarea[type=submit].is-style-btn-secondary:focus svg,
form textarea[type=submit].is-style-btn-secondary:focus span,
form select[type=submit].btn-secondary:hover svg,
form select[type=submit].btn-secondary:hover span,
form select[type=submit].btn-secondary:active svg,
form select[type=submit].btn-secondary:active span,
form select[type=submit].btn-secondary:focus svg,
form select[type=submit].btn-secondary:focus span,
form select[type=submit].is-style-btn-secondary:hover svg,
form select[type=submit].is-style-btn-secondary:hover span,
form select[type=submit].is-style-btn-secondary:active svg,
form select[type=submit].is-style-btn-secondary:active span,
form select[type=submit].is-style-btn-secondary:focus svg,
form select[type=submit].is-style-btn-secondary:focus span {
  color: #333;
}
form input[type=submit].btn-secondary:hover svg path,
form input[type=submit].btn-secondary:hover span path, form input[type=submit].btn-secondary:active svg path,
form input[type=submit].btn-secondary:active span path, form input[type=submit].btn-secondary:focus svg path,
form input[type=submit].btn-secondary:focus span path, form input[type=submit].is-style-btn-secondary:hover svg path,
form input[type=submit].is-style-btn-secondary:hover span path, form input[type=submit].is-style-btn-secondary:active svg path,
form input[type=submit].is-style-btn-secondary:active span path, form input[type=submit].is-style-btn-secondary:focus svg path,
form input[type=submit].is-style-btn-secondary:focus span path,
form textarea[type=submit].btn-secondary:hover svg path,
form textarea[type=submit].btn-secondary:hover span path,
form textarea[type=submit].btn-secondary:active svg path,
form textarea[type=submit].btn-secondary:active span path,
form textarea[type=submit].btn-secondary:focus svg path,
form textarea[type=submit].btn-secondary:focus span path,
form textarea[type=submit].is-style-btn-secondary:hover svg path,
form textarea[type=submit].is-style-btn-secondary:hover span path,
form textarea[type=submit].is-style-btn-secondary:active svg path,
form textarea[type=submit].is-style-btn-secondary:active span path,
form textarea[type=submit].is-style-btn-secondary:focus svg path,
form textarea[type=submit].is-style-btn-secondary:focus span path,
form select[type=submit].btn-secondary:hover svg path,
form select[type=submit].btn-secondary:hover span path,
form select[type=submit].btn-secondary:active svg path,
form select[type=submit].btn-secondary:active span path,
form select[type=submit].btn-secondary:focus svg path,
form select[type=submit].btn-secondary:focus span path,
form select[type=submit].is-style-btn-secondary:hover svg path,
form select[type=submit].is-style-btn-secondary:hover span path,
form select[type=submit].is-style-btn-secondary:active svg path,
form select[type=submit].is-style-btn-secondary:active span path,
form select[type=submit].is-style-btn-secondary:focus svg path,
form select[type=submit].is-style-btn-secondary:focus span path {
  fill: #333;
}
form input[type=submit].btn-white, form input[type=submit].is-style-btn-white,
form textarea[type=submit].btn-white,
form textarea[type=submit].is-style-btn-white,
form select[type=submit].btn-white,
form select[type=submit].is-style-btn-white {
  background: #fff;
  color: #333;
}
form input[type=submit].btn-white path, form input[type=submit].is-style-btn-white path,
form textarea[type=submit].btn-white path,
form textarea[type=submit].is-style-btn-white path,
form select[type=submit].btn-white path,
form select[type=submit].is-style-btn-white path {
  fill: #333;
}
form input[type=submit].btn-white:hover, form input[type=submit].btn-white:active, form input[type=submit].btn-white:focus, form input[type=submit].is-style-btn-white:hover, form input[type=submit].is-style-btn-white:active, form input[type=submit].is-style-btn-white:focus,
form textarea[type=submit].btn-white:hover,
form textarea[type=submit].btn-white:active,
form textarea[type=submit].btn-white:focus,
form textarea[type=submit].is-style-btn-white:hover,
form textarea[type=submit].is-style-btn-white:active,
form textarea[type=submit].is-style-btn-white:focus,
form select[type=submit].btn-white:hover,
form select[type=submit].btn-white:active,
form select[type=submit].btn-white:focus,
form select[type=submit].is-style-btn-white:hover,
form select[type=submit].is-style-btn-white:active,
form select[type=submit].is-style-btn-white:focus {
  background: #333;
}
form input[type=submit].btn-white:hover svg,
form input[type=submit].btn-white:hover span, form input[type=submit].btn-white:active svg,
form input[type=submit].btn-white:active span, form input[type=submit].btn-white:focus svg,
form input[type=submit].btn-white:focus span, form input[type=submit].is-style-btn-white:hover svg,
form input[type=submit].is-style-btn-white:hover span, form input[type=submit].is-style-btn-white:active svg,
form input[type=submit].is-style-btn-white:active span, form input[type=submit].is-style-btn-white:focus svg,
form input[type=submit].is-style-btn-white:focus span,
form textarea[type=submit].btn-white:hover svg,
form textarea[type=submit].btn-white:hover span,
form textarea[type=submit].btn-white:active svg,
form textarea[type=submit].btn-white:active span,
form textarea[type=submit].btn-white:focus svg,
form textarea[type=submit].btn-white:focus span,
form textarea[type=submit].is-style-btn-white:hover svg,
form textarea[type=submit].is-style-btn-white:hover span,
form textarea[type=submit].is-style-btn-white:active svg,
form textarea[type=submit].is-style-btn-white:active span,
form textarea[type=submit].is-style-btn-white:focus svg,
form textarea[type=submit].is-style-btn-white:focus span,
form select[type=submit].btn-white:hover svg,
form select[type=submit].btn-white:hover span,
form select[type=submit].btn-white:active svg,
form select[type=submit].btn-white:active span,
form select[type=submit].btn-white:focus svg,
form select[type=submit].btn-white:focus span,
form select[type=submit].is-style-btn-white:hover svg,
form select[type=submit].is-style-btn-white:hover span,
form select[type=submit].is-style-btn-white:active svg,
form select[type=submit].is-style-btn-white:active span,
form select[type=submit].is-style-btn-white:focus svg,
form select[type=submit].is-style-btn-white:focus span {
  color: #fff;
}
form input[type=submit].btn-white:hover svg path,
form input[type=submit].btn-white:hover span path, form input[type=submit].btn-white:active svg path,
form input[type=submit].btn-white:active span path, form input[type=submit].btn-white:focus svg path,
form input[type=submit].btn-white:focus span path, form input[type=submit].is-style-btn-white:hover svg path,
form input[type=submit].is-style-btn-white:hover span path, form input[type=submit].is-style-btn-white:active svg path,
form input[type=submit].is-style-btn-white:active span path, form input[type=submit].is-style-btn-white:focus svg path,
form input[type=submit].is-style-btn-white:focus span path,
form textarea[type=submit].btn-white:hover svg path,
form textarea[type=submit].btn-white:hover span path,
form textarea[type=submit].btn-white:active svg path,
form textarea[type=submit].btn-white:active span path,
form textarea[type=submit].btn-white:focus svg path,
form textarea[type=submit].btn-white:focus span path,
form textarea[type=submit].is-style-btn-white:hover svg path,
form textarea[type=submit].is-style-btn-white:hover span path,
form textarea[type=submit].is-style-btn-white:active svg path,
form textarea[type=submit].is-style-btn-white:active span path,
form textarea[type=submit].is-style-btn-white:focus svg path,
form textarea[type=submit].is-style-btn-white:focus span path,
form select[type=submit].btn-white:hover svg path,
form select[type=submit].btn-white:hover span path,
form select[type=submit].btn-white:active svg path,
form select[type=submit].btn-white:active span path,
form select[type=submit].btn-white:focus svg path,
form select[type=submit].btn-white:focus span path,
form select[type=submit].is-style-btn-white:hover svg path,
form select[type=submit].is-style-btn-white:hover span path,
form select[type=submit].is-style-btn-white:active svg path,
form select[type=submit].is-style-btn-white:active span path,
form select[type=submit].is-style-btn-white:focus svg path,
form select[type=submit].is-style-btn-white:focus span path {
  fill: #fff;
}
form input[type=submit].full-width,
form textarea[type=submit].full-width,
form select[type=submit].full-width {
  display: block;
}
form input[type=submit].aligncenter, form input[type=submit].center,
form textarea[type=submit].aligncenter,
form textarea[type=submit].center,
form select[type=submit].aligncenter,
form select[type=submit].center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
form input[type=submit], form input[type=text], form input[type=email], form input[type=checkbox],
form textarea[type=submit],
form textarea[type=text],
form textarea[type=email],
form textarea[type=checkbox],
form select[type=submit],
form select[type=text],
form select[type=email],
form select[type=checkbox] {
  -webkit-appearance: none;
}
form textarea {
  max-height: 140px;
}
form select {
  font-family: "Poppins", sans-serif;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.314' height='7.071'%3E%3Cg fill='none' stroke='%23c0c1c6' stroke-width='2'%3E%3Cpath d='M10.607.707 4.95 6.364M6.364 6.364.707.707'/%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
}
form .ginput_container_consent {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: #333;
}
form .ginput_container_consent label {
  width: calc(100% - 20px);
  padding-left: 1.4rem;
  font-size: 1.6rem;
  margin: 0;
  color: #333;
}
form .ginput_container_consent a {
  text-decoration: none;
  color: #a57c08;
  transition: color 0.18s ease-in-out;
}
form .ginput_container_consent a:hover {
  text-decoration: underline;
}
form .ginput_container_consent input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  margin: 2px 0 0 0;
  padding: 0;
  transition: background 0.18s ease-in-out, box-shadow 0.2s ease-in-out;
}
form .ginput_container_consent input[type=checkbox]:checked {
  background: #a57c08;
  box-shadow: inset 0 0 0 3px #fff;
}
form .ginput_container_consent + .gfield_description {
  font-size: 1.4rem;
  line-height: 1.25;
  padding: 8px 0 8px 45px;
  color: #333;
}
form .ginput_container_consent + .gfield_description a {
  text-decoration: underline;
  color: #333;
  transition: color 0.18s ease-in-out;
}
form .ginput_container_consent + .gfield_description a:hover {
  text-decoration: none;
}
form .ginput_container_consent + .gfield_description.validation_message {
  margin-left: 35px;
  padding: 5px;
  color: #9e3e1e;
}
form .ginput_container_consent .gfield_required_asterisk {
  display: none;
}
form .gfield--type-fileupload {
  margin: -15px 0 20px 0;
}
form .ginput_container_fileupload .gform_fileupload_rules,
form .ginput_container_fileupload .validation_message--hidden-on-empty {
  display: none;
}
form .ginput_container_fileupload input {
  border: 1px dashed #585758;
}

.gform_submission_error {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2ch;
  padding: 1ch 0.7ch 1ch 1ch;
  color: #9e3e1e;
  background: rgba(158, 62, 30, 0.05);
  border: 1px solid rgba(158, 62, 30, 0.15);
}

.validation_message {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.015;
  margin-top: 4px;
  padding: 5px;
  color: #9e3e1e;
  background: rgba(158, 62, 30, 0.05);
  border: 1px solid rgba(158, 62, 30, 0.15);
}

.gform_description {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 3ch;
}

.gform_ajax_spinner {
  display: none !important;
}

::-moz-placeholder {
  color: #585758;
}

::placeholder {
  color: #585758;
}

:-ms-input-placeholder {
  color: #585758;
}

::-ms-input-placeholder {
  color: #585758;
}

@media (min-width: 1024px) {
  form#gform_1 {
    position: relative;
  }
  form#gform_1 .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 0px;
  }
  form#gform_1 .gform_fields .gfield#field_1_1 {
    grid-area: 1/1/2/2;
  }
  form#gform_1 .gform_fields .gfield#field_1_3 {
    grid-area: 2/1/3/2;
  }
  form#gform_1 .gform_fields .gfield#field_1_4 {
    grid-area: 3/1/4/2;
  }
  form#gform_1 .gform_fields .gfield#field_1_7 {
    grid-area: 4/1/5/2;
  }
  form#gform_1 .gform_fields .gfield#field_1_5 {
    grid-area: 1/2/5/3;
  }
  form#gform_1 .gform_fields .gfield#field_1_5 textarea {
    height: 345px;
  }
  form#gform_1 .gform_fields .gfield#field_1_6 {
    grid-area: 5/1/5/3;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding-right: 210px;
  }
  form#gform_1 .gform_fields .gfield#field_1_6 .ginput_container_consent {
    margin: 0;
  }
  form#gform_1 .gform_fields textarea {
    max-height: unset;
  }
  form#gform_1 .gform_footer {
    position: absolute;
    bottom: 36px;
    right: 0;
  }
}
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.unsupported-browser {
  display: none;
  visibility: hidden;
  opacity: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .unsupported-browser {
    display: block;
    visibility: inherit;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: #333;
    padding: 30px;
  }
  .unsupported-browser .unsupported-browser-wrapper {
    height: auto;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
  }
  .unsupported-browser .unsupported-browser-wrapper h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .unsupported-browser .unsupported-browser-wrapper p {
    font-size: 1.6rem;
  }
  .unsupported-browser .unsupported-browser-wrapper a {
    text-decoration: underline;
    color: #333;
  }
}
body.interim-login {
  background: linear-gradient(135deg, #a57c08 0%, #c0a45c 100%);
}
body.interim-login h1 a {
  display: none !important;
}

.login-action-login,
.login-action-lostpassword,
.login-action-rp {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #333;
  background: linear-gradient(135deg, #a57c08 0%, #c0a45c 100%);
}
.login-action-login #login,
.login-action-lostpassword #login,
.login-action-rp #login {
  padding: 25px;
  background: #f4f4f4;
  border-radius: 3px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.login-action-login #login h1 a,
.login-action-lostpassword #login h1 a,
.login-action-rp #login h1 a {
  width: 170px;
  height: 75px;
  margin-bottom: 10px;
  padding-bottom: 0;
  background-size: contain;
}
.login-action-login form,
.login-action-lostpassword form,
.login-action-rp form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.login-action-login form label,
.login-action-lostpassword form label,
.login-action-rp form label {
  font-weight: 300;
  padding-bottom: 3px;
  color: #333;
}
.login-action-login form input,
.login-action-lostpassword form input,
.login-action-rp form input {
  background: #f8f8f8;
  border: 1px solid #585758;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}
.login-action-login form input:active, .login-action-login form input:focus,
.login-action-lostpassword form input:active,
.login-action-lostpassword form input:focus,
.login-action-rp form input:active,
.login-action-rp form input:focus {
  border-color: #a57c08;
  outline: none !important;
  box-shadow: none !important;
}
.login-action-login form input.button,
.login-action-lostpassword form input.button,
.login-action-rp form input.button {
  display: inline-block;
  width: auto;
  min-width: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  padding: 8px 15px;
  color: #fff;
  background: #a57c08;
  border: 1px solid #a57c08;
  border-radius: 30px;
  transition: all 0.18s ease-in-out;
}
.login-action-login form input.button:hover, .login-action-login form input.button:active, .login-action-login form input.button:focus,
.login-action-lostpassword form input.button:hover,
.login-action-lostpassword form input.button:active,
.login-action-lostpassword form input.button:focus,
.login-action-rp form input.button:hover,
.login-action-rp form input.button:active,
.login-action-rp form input.button:focus {
  color: #fff;
  background: #2b70a7;
  border: 1px solid #2b70a7;
}
.login-action-login form .dashicons,
.login-action-lostpassword form .dashicons,
.login-action-rp form .dashicons {
  color: #a57c08;
  transition: color 0.2s ease-in-out;
}
.login-action-login form .dashicons:hover, .login-action-login form .dashicons:active, .login-action-login form .dashicons:focus,
.login-action-lostpassword form .dashicons:hover,
.login-action-lostpassword form .dashicons:active,
.login-action-lostpassword form .dashicons:focus,
.login-action-rp form .dashicons:hover,
.login-action-rp form .dashicons:active,
.login-action-rp form .dashicons:focus {
  color: #2b70a7;
}
.login-action-login #nav,
.login-action-lostpassword #nav,
.login-action-rp #nav {
  text-align: center;
  margin-top: 20px;
}
.login-action-login #nav a,
.login-action-lostpassword #nav a,
.login-action-rp #nav a {
  color: #333;
}
.login-action-login #nav a:hover, .login-action-login #nav a:active, .login-action-login #nav a:focus,
.login-action-lostpassword #nav a:hover,
.login-action-lostpassword #nav a:active,
.login-action-lostpassword #nav a:focus,
.login-action-rp #nav a:hover,
.login-action-rp #nav a:active,
.login-action-rp #nav a:focus {
  color: #a57c08;
  text-decoration: underline;
}
.login-action-login .privacy-policy-page-link,
.login-action-login .language-switcher,
.login-action-login #backtoblog,
.login-action-lostpassword .privacy-policy-page-link,
.login-action-lostpassword .language-switcher,
.login-action-lostpassword #backtoblog,
.login-action-rp .privacy-policy-page-link,
.login-action-rp .language-switcher,
.login-action-rp #backtoblog {
  display: none;
}
.login-action-login #login_error,
.login-action-login .message,
.login-action-login .success,
.login-action-lostpassword #login_error,
.login-action-lostpassword .message,
.login-action-lostpassword .success,
.login-action-rp #login_error,
.login-action-rp .message,
.login-action-rp .success {
  font-size: 1.4rem;
}

.error404 #content {
  margin: 60px 0 80px 0;
}
.error404 main .user-content h1 {
  margin: 0 0 3rem 0;
  opacity: 0.6;
}
.error404 main .user-content h1 strong {
  display: block;
  font-size: 11rem;
  color: #c0a45c;
  line-height: 12rem;
}
.error404 main .user-content h1 span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  margin-top: -1rem;
  color: #c0a45c;
}
.error404 main .user-content p {
  max-width: 50%;
  margin: 0 auto;
}

.fullscreen-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.97);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-search.active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen-search .close-search {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 1.25rem;
  z-index: 3;
  background: #333;
}
.fullscreen-search .close-search:hover {
  cursor: pointer;
  background: #000;
}
.fullscreen-search .close-search svg {
  fill: #2b70a7;
}
.fullscreen-search .search-form {
  display: flex;
  height: auto;
  width: 80%;
  max-width: 600px;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
}
.fullscreen-search .search-form form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.fullscreen-search .search-form label {
  width: 100%;
  display: inline-block;
  font-family: "Libre Franklin", sans-serif;
  color: #fff;
  font-size: 3.6rem;
  text-transform: none;
  line-height: 1;
  margin: 0 0 1rem;
}
.fullscreen-search .search-form input {
  -webkit-appearance: none;
  flex: 1;
  box-shadow: none;
  outline: none;
  padding: 1.6rem;
  font-size: 1.8rem;
  color: #333;
  line-height: 1;
  border: 0;
  background: #fff;
}
.fullscreen-search .search-form input:focus {
  background: lightgoldenrodyellow;
}
.fullscreen-search .search-form button {
  -webkit-appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: 0;
  background: #333;
  color: #fff;
  width: 5rem;
  font-size: 2rem;
  line-height: 1;
  padding: 1.2rem;
}
.fullscreen-search .search-form button svg {
  fill: #2b70a7;
}
.fullscreen-search .search-form button:hover {
  cursor: pointer;
  background: #000;
}

ul.soc {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 1ch 0;
  padding: 0;
}
ul.soc li {
  margin: 0;
}
ul.soc a {
  display: block;
  font-size: 21px;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 1;
  padding: 5px;
  border: 1px solid #fff;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}
ul.soc a path {
  fill: #fff;
  transition: fill 0.2s ease-in-out;
}
ul.soc a:hover, ul.soc a:active, ul.soc a:focus {
  background: #fff;
}
ul.soc a:hover path, ul.soc a:active path, ul.soc a:focus path {
  fill: #333;
}

.gdpr_lightbox {
  background-color: rgba(165, 124, 8, 0) !important;
}

#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme {
  position: fixed;
  inset: 0;
  top: 0px;
  bottom: 0px;
  height: 100%;
  bottom: 0;
  top: 0;
  max-height: none;
  display: grid;
  place-items: center;
  background-color: rgba(165, 124, 8, 0.95);
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container {
  background: #fff;
  padding: 2em 0;
  max-width: 670px;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.4;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
  padding-left: 0;
  margin-top: 1em;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton {
  text-transform: uppercase;
  font-size: 16px;
  padding: 1.25ch 3rem;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton::after {
  content: url('data:image/svg+xml,<svg role="img" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="11"><path fill="%23fff" d="m18.292 0-1.414 1.363L21.171 5.5l-4.293 4.137L18.292 11 24 5.5Z"></path><path fill="%23fff" d="M0 4.5h22.585v2H0Z"></path></svg>');
  margin-left: 0.5em;
}
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton:hover {
  background-color: #2b70a7;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #333 !important;
  border-top: 0 !important;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a:hover,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button:hover {
  background-color: #c0a45c !important;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button {
  text-decoration-color: #a57c08 !important;
  text-underline-position: under !important;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a:hover,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button:hover {
  color: #fff !important;
  text-decoration: none;
}

#moove_gdpr_save_popup_settings_button {
  transform: scale(0.85);
  transform-origin: bottom left;
  opacity: 0.75;
  cursor: pointer !important;
  transition: opacity 0.25s ease-in-out;
}
#moove_gdpr_save_popup_settings_button:hover {
  opacity: 1;
}

@media (max-width: 781px) {
  .moove-gdpr-cookie-notice {
    text-align: center;
  }
  .moove-gdpr-button-holder .mgbutton {
    margin: auto !important;
  }
}
.gdpr-infobar-visible footer {
  padding-bottom: 100px;
}

/* -------------------------------------------
***** Editor & User Content Styling *****
------------------------------------------- */
/* -------------------------------------------
***** Optional Imports *****
------------------------------------------- */
@media (min-width: 990px) {
  .animate-1 {
    animation-delay: 0.275s !important;
  }
  .animate-2 {
    animation-delay: 0.475s !important;
  }
  .animate-3 {
    animation-delay: 0.675s !important;
  }
  .animate-4 {
    animation-delay: 0.875s !important;
  }
  .animate-5 {
    animation-delay: 1.075s !important;
  }
  .animate-6 {
    animation-delay: 1.275s !important;
  }
  .animate-7 {
    animation-delay: 1.475s !important;
  }
  .animate-8 {
    animation-delay: 1.675s !important;
  }
  .animate-9 {
    animation-delay: 1.875s !important;
  }
  .animate-10 {
    animation-delay: 2.075s !important;
  }
  .animate-11 {
    animation-delay: 2.275s !important;
  }
  .animate-12 {
    animation-delay: 2.475s !important;
  }
  .animate-13 {
    animation-delay: 2.675s !important;
  }
  .animate-14 {
    animation-delay: 2.875s !important;
  }
  .animate-15 {
    animation-delay: 3.075s !important;
  }
  .animate-16 {
    animation-delay: 3.275s !important;
  }
  .animate-17 {
    animation-delay: 3.475s !important;
  }
  .animate-18 {
    animation-delay: 3.675s !important;
  }
  .animate-19 {
    animation-delay: 3.875s !important;
  }
  .animate-20 {
    animation-delay: 4.075s !important;
  }
  .animate-21 {
    animation-delay: 4.275s !important;
  }
  .animate-22 {
    animation-delay: 4.475s !important;
  }
  .animate-23 {
    animation-delay: 4.675s !important;
  }
  .animate-24 {
    animation-delay: 4.875s !important;
  }
  .animate-25 {
    animation-delay: 5.075s !important;
  }
  .animate-26 {
    animation-delay: 5.275s !important;
  }
  .animate-27 {
    animation-delay: 5.475s !important;
  }
  .animate-28 {
    animation-delay: 5.675s !important;
  }
  .animate-29 {
    animation-delay: 5.875s !important;
  }
  .animate-30 {
    animation-delay: 6.075s !important;
  }
  .anim-1 {
    animation-delay: 0.185s !important;
  }
  .anim-2 {
    animation-delay: 0.27s !important;
  }
  .anim-3 {
    animation-delay: 0.355s !important;
  }
  .anim-4 {
    animation-delay: 0.44s !important;
  }
  .anim-5 {
    animation-delay: 0.525s !important;
  }
  .anim-6 {
    animation-delay: 0.61s !important;
  }
  .anim-7 {
    animation-delay: 0.695s !important;
  }
  .anim-8 {
    animation-delay: 0.78s !important;
  }
  .anim-9 {
    animation-delay: 0.865s !important;
  }
  .anim-10 {
    animation-delay: 0.95s !important;
  }
  .anim-11 {
    animation-delay: 1.035s !important;
  }
  .anim-12 {
    animation-delay: 1.12s !important;
  }
  .anim-13 {
    animation-delay: 1.205s !important;
  }
  .anim-14 {
    animation-delay: 1.29s !important;
  }
  .anim-15 {
    animation-delay: 1.375s !important;
  }
  .anim-16 {
    animation-delay: 1.46s !important;
  }
  .anim-17 {
    animation-delay: 1.545s !important;
  }
  .anim-18 {
    animation-delay: 1.63s !important;
  }
  .anim-19 {
    animation-delay: 1.715s !important;
  }
  .anim-20 {
    animation-delay: 1.8s !important;
  }
  .anim-21 {
    animation-delay: 1.885s !important;
  }
  .anim-22 {
    animation-delay: 1.97s !important;
  }
  .anim-23 {
    animation-delay: 2.055s !important;
  }
  .anim-24 {
    animation-delay: 2.14s !important;
  }
  .anim-25 {
    animation-delay: 2.225s !important;
  }
  .anim-26 {
    animation-delay: 2.31s !important;
  }
  .anim-27 {
    animation-delay: 2.395s !important;
  }
  .anim-28 {
    animation-delay: 2.48s !important;
  }
  .anim-29 {
    animation-delay: 2.565s !important;
  }
  .anim-30 {
    animation-delay: 2.65s !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInSm {
  from {
    opacity: 0;
    transform: translateY(px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-in,
.content > .wp-block-group,
.content > .wp-block-image {
  opacity: 0;
}
.fade-in.in-view,
.content > .wp-block-group.in-view,
.content > .wp-block-image.in-view {
  animation: fadeIn 0.85s forwards 0.1s;
}

@keyframes fadeInleft {
  from {
    opacity: 0;
    transform: translateX(-10px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-5px) scale(0.995);
}
.fade-in-left.in-view {
  animation: fadeInleft 0.85s forwards 0.1s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.fade-in-right {
  opacity: 0;
  transform: translateX(10px) scale(0.995);
}
.fade-in-right.in-view {
  animation: fadeInRight 0.85s forwards 0.1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(-50px);
}
.fade-in-up.in-view {
  animation: fadeInUp 0.85s forwards 0.1s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
}
.zoom-in.in-view {
  animation: zoomIn 0.85s forwards 0.1s;
}

@keyframes zoomInSm {
  from {
    opacity: 0;
    transform: scale(0.995);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-in-sm {
  opacity: 0;
  transform: scale(0.98);
}
.zoom-in-sm.in-view {
  animation: zoomInSm 0.85s forwards 0.1s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}
.scale-in {
  opacity: 0;
  transform: scale(0.95);
}
.scale-in.in-view {
  animation: zoomIn 0.85s forwards 0.1s;
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}

.fa-1::before {
  content: "\31 ";
}

.fa-2::before {
  content: "\32 ";
}

.fa-3::before {
  content: "\33 ";
}

.fa-4::before {
  content: "\34 ";
}

.fa-5::before {
  content: "\35 ";
}

.fa-6::before {
  content: "\36 ";
}

.fa-7::before {
  content: "\37 ";
}

.fa-8::before {
  content: "\38 ";
}

.fa-9::before {
  content: "\39 ";
}

.fa-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

.fa-circle-chevron-right::before {
  content: "\f138";
}

.fa-chevron-circle-right::before {
  content: "\f138";
}

.fa-at::before {
  content: "\@";
}

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-message::before {
  content: "\f27a";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-info::before {
  content: "\f129";
}

.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}

.fa-compress-alt::before {
  content: "\f422";
}

.fa-explosion::before {
  content: "\e4e9";
}

.fa-file-lines::before {
  content: "\f15c";
}

.fa-file-alt::before {
  content: "\f15c";
}

.fa-file-text::before {
  content: "\f15c";
}

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-dice-three::before {
  content: "\f527";
}

.fa-calendar-days::before {
  content: "\f073";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

.fa-circle-minus::before {
  content: "\f056";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-door-open::before {
  content: "\f52b";
}

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-atom::before {
  content: "\f5d2";
}

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-pump-medical::before {
  content: "\e06a";
}

.fa-fingerprint::before {
  content: "\f577";
}

.fa-hand-point-right::before {
  content: "\f0a4";
}

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

.fa-forward-step::before {
  content: "\f051";
}

.fa-step-forward::before {
  content: "\f051";
}

.fa-face-smile-beam::before {
  content: "\f5b8";
}

.fa-smile-beam::before {
  content: "\f5b8";
}

.fa-flag-checkered::before {
  content: "\f11e";
}

.fa-football::before {
  content: "\f44e";
}

.fa-football-ball::before {
  content: "\f44e";
}

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

.fa-crop::before {
  content: "\f125";
}

.fa-angles-down::before {
  content: "\f103";
}

.fa-angle-double-down::before {
  content: "\f103";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-people-line::before {
  content: "\e534";
}

.fa-beer-mug-empty::before {
  content: "\f0fc";
}

.fa-beer::before {
  content: "\f0fc";
}

.fa-diagram-predecessor::before {
  content: "\e477";
}

.fa-arrow-up-long::before {
  content: "\f176";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-fire-flame-simple::before {
  content: "\f46a";
}

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-file-csv::before {
  content: "\f6dd";
}

.fa-menorah::before {
  content: "\f676";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

.fa-face-grin-stars::before {
  content: "\f587";
}

.fa-grin-stars::before {
  content: "\f587";
}

.fa-bong::before {
  content: "\f55c";
}

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-mail-bulk::before {
  content: "\f674";
}

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

.fa-circle-h::before {
  content: "\f47e";
}

.fa-hospital-symbol::before {
  content: "\f47e";
}

.fa-pager::before {
  content: "\f815";
}

.fa-address-book::before {
  content: "\f2b9";
}

.fa-contact-book::before {
  content: "\f2b9";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-k::before {
  content: "K";
}

.fa-landmark-flag::before {
  content: "\e51c";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

.fa-backward::before {
  content: "\f04a";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-comments::before {
  content: "\f086";
}

.fa-paste::before {
  content: "\f0ea";
}

.fa-file-clipboard::before {
  content: "\f0ea";
}

.fa-code-pull-request::before {
  content: "\e13c";
}

.fa-clipboard-list::before {
  content: "\f46d";
}

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-vial-virus::before {
  content: "\e597";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

.fa-blog::before {
  content: "\f781";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

.fa-broom-ball::before {
  content: "\f458";
}

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-toggle-off::before {
  content: "\f204";
}

.fa-box-archive::before {
  content: "\f187";
}

.fa-archive::before {
  content: "\f187";
}

.fa-person-drowning::before {
  content: "\e545";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-w::before {
  content: "W";
}

.fa-earth-africa::before {
  content: "\f57c";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-rainbow::before {
  content: "\f75b";
}

.fa-circle-notch::before {
  content: "\f1ce";
}

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-trowel-bricks::before {
  content: "\e58a";
}

.fa-face-flushed::before {
  content: "\f579";
}

.fa-flushed::before {
  content: "\f579";
}

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

.fa-gavel::before {
  content: "\f0e3";
}

.fa-legal::before {
  content: "\f0e3";
}

.fa-binoculars::before {
  content: "\f1e5";
}

.fa-microphone-slash::before {
  content: "\f131";
}

.fa-box-tissue::before {
  content: "\e05b";
}

.fa-motorcycle::before {
  content: "\f21c";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-concierge-bell::before {
  content: "\f562";
}

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

.fa-square-caret-right::before {
  content: "\f152";
}

.fa-caret-square-right::before {
  content: "\f152";
}

.fa-scissors::before {
  content: "\f0c4";
}

.fa-cut::before {
  content: "\f0c4";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-clover::before {
  content: "\e139";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

.fa-house-fire::before {
  content: "\e50c";
}

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

.fa-compass::before {
  content: "\f14e";
}

.fa-square-caret-down::before {
  content: "\f150";
}

.fa-caret-square-down::before {
  content: "\f150";
}

.fa-file-circle-question::before {
  content: "\e4ef";
}

.fa-laptop-code::before {
  content: "\f5fc";
}

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-navicon::before {
  content: "\f0c9";
}

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

.fa-hourglass-3::before {
  content: "\f253";
}

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

.fa-face-kiss-beam::before {
  content: "\f597";
}

.fa-kiss-beam::before {
  content: "\f597";
}

.fa-film::before {
  content: "\f008";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-caret-left::before {
  content: "\f0d9";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

.fa-circle-chevron-down::before {
  content: "\f13a";
}

.fa-chevron-circle-down::before {
  content: "\f13a";
}

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

.fa-cloud-showers-heavy::before {
  content: "\f740";
}

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-road-spikes::before {
  content: "\e568";
}

.fa-fire-burner::before {
  content: "\e4f1";
}

.fa-flag::before {
  content: "\f024";
}

.fa-hanukiah::before {
  content: "\f6e6";
}

.fa-feather::before {
  content: "\f52d";
}

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

.fa-comment-slash::before {
  content: "\f4b3";
}

.fa-cloud-sun-rain::before {
  content: "\f743";
}

.fa-compress::before {
  content: "\f066";
}

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

.fa-ankh::before {
  content: "\f644";
}

.fa-hands-holding-child::before {
  content: "\e4fa";
}

.fa-asterisk::before {
  content: "\*";
}

.fa-square-check::before {
  content: "\f14a";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

.fa-ghost::before {
  content: "\f6e2";
}

.fa-list::before {
  content: "\f03a";
}

.fa-list-squares::before {
  content: "\f03a";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-cart-plus::before {
  content: "\f217";
}

.fa-gamepad::before {
  content: "\f11b";
}

.fa-circle-dot::before {
  content: "\f192";
}

.fa-dot-circle::before {
  content: "\f192";
}

.fa-face-dizzy::before {
  content: "\f567";
}

.fa-dizzy::before {
  content: "\f567";
}

.fa-egg::before {
  content: "\f7fb";
}

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

.fa-campground::before {
  content: "\f6bb";
}

.fa-folder-plus::before {
  content: "\f65e";
}

.fa-futbol::before {
  content: "\f1e3";
}

.fa-futbol-ball::before {
  content: "\f1e3";
}

.fa-soccer-ball::before {
  content: "\f1e3";
}

.fa-paintbrush::before {
  content: "\f1fc";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-lock::before {
  content: "\f023";
}

.fa-gas-pump::before {
  content: "\f52f";
}

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

.fa-tree::before {
  content: "\f1bb";
}

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

.fa-car-side::before {
  content: "\f5e4";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-hourglass-half::before {
  content: "\f252";
}

.fa-hourglass-2::before {
  content: "\f252";
}

.fa-microscope::before {
  content: "\f610";
}

.fa-sink::before {
  content: "\e06d";
}

.fa-bag-shopping::before {
  content: "\f290";
}

.fa-shopping-bag::before {
  content: "\f290";
}

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-flask-vial::before {
  content: "\e4f3";
}

.fa-hand::before {
  content: "\f256";
}

.fa-hand-paper::before {
  content: "\f256";
}

.fa-om::before {
  content: "\f679";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

.fa-chevron-up::before {
  content: "\f077";
}

.fa-hand-spock::before {
  content: "\f259";
}

.fa-stopwatch::before {
  content: "\f2f2";
}

.fa-face-kiss::before {
  content: "\f596";
}

.fa-kiss::before {
  content: "\f596";
}

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

.fa-face-grin-tongue::before {
  content: "\f589";
}

.fa-grin-tongue::before {
  content: "\f589";
}

.fa-chess-bishop::before {
  content: "\f43a";
}

.fa-face-grin-wink::before {
  content: "\f58c";
}

.fa-grin-wink::before {
  content: "\f58c";
}

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-road-circle-check::before {
  content: "\e564";
}

.fa-dice-five::before {
  content: "\f523";
}

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-i::before {
  content: "I";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-pills::before {
  content: "\f484";
}

.fa-face-grin-wide::before {
  content: "\f581";
}

.fa-grin-alt::before {
  content: "\f581";
}

.fa-tooth::before {
  content: "\f5c9";
}

.fa-v::before {
  content: "V";
}

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6";
}

.fa-bicycle::before {
  content: "\f206";
}

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-joint::before {
  content: "\f595";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "Q";
}

.fa-g::before {
  content: "G";
}

.fa-notes-medical::before {
  content: "\f481";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

.fa-temperature-2::before {
  content: "\f2c9";
}

.fa-thermometer-2::before {
  content: "\f2c9";
}

.fa-thermometer-half::before {
  content: "\f2c9";
}

.fa-dong-sign::before {
  content: "\e169";
}

.fa-capsules::before {
  content: "\f46b";
}

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

.fa-face-frown-open::before {
  content: "\f57a";
}

.fa-frown-open::before {
  content: "\f57a";
}

.fa-hand-point-up::before {
  content: "\f0a6";
}

.fa-money-bill::before {
  content: "\f0d6";
}

.fa-bookmark::before {
  content: "\f02e";
}

.fa-align-justify::before {
  content: "\f039";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-bacon::before {
  content: "\f7e5";
}

.fa-hand-point-down::before {
  content: "\f0a7";
}

.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}

.fa-folder::before {
  content: "\f07b";
}

.fa-folder-blank::before {
  content: "\f07b";
}

.fa-file-waveform::before {
  content: "\f478";
}

.fa-file-medical-alt::before {
  content: "\f478";
}

.fa-radiation::before {
  content: "\f7b9";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

.fa-e::before {
  content: "E";
}

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-user::before {
  content: "\f007";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

.fa-dumpster::before {
  content: "\f793";
}

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-square-caret-left::before {
  content: "\f191";
}

.fa-caret-square-left::before {
  content: "\f191";
}

.fa-highlighter::before {
  content: "\f591";
}

.fa-key::before {
  content: "\f084";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-synagogue::before {
  content: "\f69b";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-c::before {
  content: "C";
}

.fa-tablet-button::before {
  content: "\f10a";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

.fa-chart-area::before {
  content: "\f1fe";
}

.fa-area-chart::before {
  content: "\f1fe";
}

.fa-house-flag::before {
  content: "\e50d";
}

.fa-person-circle-minus::before {
  content: "\e540";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-cancel::before {
  content: "\f05e";
}

.fa-camera-rotate::before {
  content: "\e0d8";
}

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-cross::before {
  content: "\f654";
}

.fa-box::before {
  content: "\f466";
}

.fa-venus-mars::before {
  content: "\f228";
}

.fa-arrow-pointer::before {
  content: "\f245";
}

.fa-mouse-pointer::before {
  content: "\f245";
}

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

.fa-charging-station::before {
  content: "\f5e7";
}

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

.fa-grip-lines-vertical::before {
  content: "\f7a5";
}

.fa-spider::before {
  content: "\f717";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

.fa-file-invoice-dollar::before {
  content: "\f571";
}

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-x-ray::before {
  content: "\f497";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-slash::before {
  content: "\f715";
}

.fa-computer-mouse::before {
  content: "\f8cc";
}

.fa-mouse::before {
  content: "\f8cc";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-hourglass-start::before {
  content: "\f251";
}

.fa-hourglass-1::before {
  content: "\f251";
}

.fa-blender-phone::before {
  content: "\f6b6";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-crown::before {
  content: "\f521";
}

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-file-prescription::before {
  content: "\f572";
}

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-arrow-up-a-z::before {
  content: "\f15e";
}

.fa-sort-alpha-up::before {
  content: "\f15e";
}

.fa-chess-knight::before {
  content: "\f441";
}

.fa-face-laugh-squint::before {
  content: "\f59b";
}

.fa-laugh-squint::before {
  content: "\f59b";
}

.fa-wheelchair::before {
  content: "\f193";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-arrow-circle-up::before {
  content: "\f0aa";
}

.fa-toggle-on::before {
  content: "\f205";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

.fa-l::before {
  content: "L";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-bed-pulse::before {
  content: "\f487";
}

.fa-procedures::before {
  content: "\f487";
}

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

.fa-face-laugh::before {
  content: "\f599";
}

.fa-laugh::before {
  content: "\f599";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-heart-circle-plus::before {
  content: "\e500";
}

.fa-code-fork::before {
  content: "\e13b";
}

.fa-city::before {
  content: "\f64f";
}

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-colon-sign::before {
  content: "\e140";
}

.fa-headset::before {
  content: "\f590";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

.fa-champagne-glasses::before {
  content: "\f79f";
}

.fa-glass-cheers::before {
  content: "\f79f";
}

.fa-clipboard::before {
  content: "\f328";
}

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

.fa-file-arrow-up::before {
  content: "\f574";
}

.fa-file-upload::before {
  content: "\f574";
}

.fa-wifi::before {
  content: "\f1eb";
}

.fa-wifi-3::before {
  content: "\f1eb";
}

.fa-wifi-strong::before {
  content: "\f1eb";
}

.fa-bath::before {
  content: "\f2cd";
}

.fa-bathtub::before {
  content: "\f2cd";
}

.fa-underline::before {
  content: "\f0cd";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-signature::before {
  content: "\f5b7";
}

.fa-stroopwafel::before {
  content: "\f551";
}

.fa-bold::before {
  content: "\f032";
}

.fa-anchor-lock::before {
  content: "\e4ad";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-not-equal::before {
  content: "\f53e";
}

.fa-border-top-left::before {
  content: "\f853";
}

.fa-border-style::before {
  content: "\f853";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-car-battery::before {
  content: "\f5df";
}

.fa-battery-car::before {
  content: "\f5df";
}

.fa-gift::before {
  content: "\f06b";
}

.fa-dice-two::before {
  content: "\f528";
}

.fa-chess-queen::before {
  content: "\f445";
}

.fa-glasses::before {
  content: "\f530";
}

.fa-chess-board::before {
  content: "\f43c";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

.fa-hand-back-fist::before {
  content: "\f255";
}

.fa-hand-rock::before {
  content: "\f255";
}

.fa-square-caret-up::before {
  content: "\f151";
}

.fa-caret-square-up::before {
  content: "\f151";
}

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

.fa-chart-bar::before {
  content: "\f080";
}

.fa-bar-chart::before {
  content: "\f080";
}

.fa-hands-bubbles::before {
  content: "\e05e";
}

.fa-hands-wash::before {
  content: "\e05e";
}

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

.fa-eye-low-vision::before {
  content: "\f2a8";
}

.fa-low-vision::before {
  content: "\f2a8";
}

.fa-crow::before {
  content: "\f520";
}

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

.fa-frog::before {
  content: "\f52e";
}

.fa-bucket::before {
  content: "\e4cf";
}

.fa-image::before {
  content: "\f03e";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

.fa-caret-up::before {
  content: "\f0d8";
}

.fa-screwdriver::before {
  content: "\f54a";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

.fa-rotate-backward::before {
  content: "\f2ea";
}

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-gem::before {
  content: "\f3a5";
}

.fa-dolly::before {
  content: "\f472";
}

.fa-dolly-box::before {
  content: "\f472";
}

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-snowplow::before {
  content: "\f7d2";
}

.fa-angles-right::before {
  content: "\f101";
}

.fa-angle-double-right::before {
  content: "\f101";
}

.fa-cannabis::before {
  content: "\f55f";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-tablets::before {
  content: "\f490";
}

.fa-ethernet::before {
  content: "\f796";
}

.fa-euro-sign::before {
  content: "\f153";
}

.fa-eur::before {
  content: "\f153";
}

.fa-euro::before {
  content: "\f153";
}

.fa-chair::before {
  content: "\f6c0";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-circle-stop::before {
  content: "\f28d";
}

.fa-stop-circle::before {
  content: "\f28d";
}

.fa-compass-drafting::before {
  content: "\f568";
}

.fa-drafting-compass::before {
  content: "\f568";
}

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-marker::before {
  content: "\f5a1";
}

.fa-face-laugh-beam::before {
  content: "\f59a";
}

.fa-laugh-beam::before {
  content: "\f59a";
}

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-universal-access::before {
  content: "\f29a";
}

.fa-circle-chevron-up::before {
  content: "\f139";
}

.fa-chevron-circle-up::before {
  content: "\f139";
}

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-arrow-down-long::before {
  content: "\f175";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

.fa-certificate::before {
  content: "\f0a3";
}

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

.fa-filter-circle-dollar::before {
  content: "\f662";
}

.fa-funnel-dollar::before {
  content: "\f662";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-circle-arrow-down::before {
  content: "\f0ab";
}

.fa-arrow-circle-down::before {
  content: "\f0ab";
}

.fa-file-import::before {
  content: "\f56f";
}

.fa-arrow-right-to-file::before {
  content: "\f56f";
}

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

.fa-box-open::before {
  content: "\f49e";
}

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

.fa-temperature-0::before {
  content: "\f2cb";
}

.fa-thermometer-0::before {
  content: "\f2cb";
}

.fa-thermometer-empty::before {
  content: "\f2cb";
}

.fa-bomb::before {
  content: "\f1e2";
}

.fa-registered::before {
  content: "\f25d";
}

.fa-address-card::before {
  content: "\f2bb";
}

.fa-contact-card::before {
  content: "\f2bb";
}

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-subscript::before {
  content: "\f12c";
}

.fa-diamond-turn-right::before {
  content: "\f5eb";
}

.fa-directions::before {
  content: "\f5eb";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

.fa-face-tired::before {
  content: "\f5c8";
}

.fa-tired::before {
  content: "\f5c8";
}

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-smog::before {
  content: "\f75f";
}

.fa-crutch::before {
  content: "\f7f7";
}

.fa-cloud-arrow-up::before {
  content: "\f0ee";
}

.fa-cloud-upload::before {
  content: "\f0ee";
}

.fa-cloud-upload-alt::before {
  content: "\f0ee";
}

.fa-palette::before {
  content: "\f53f";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

.fa-circle-arrow-left::before {
  content: "\f0a8";
}

.fa-arrow-circle-left::before {
  content: "\f0a8";
}

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

.fa-candy-cane::before {
  content: "\f786";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

.fa-cloud-bolt::before {
  content: "\f76c";
}

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

.fa-face-smile-wink::before {
  content: "\f4da";
}

.fa-smile-wink::before {
  content: "\f4da";
}

.fa-file-word::before {
  content: "\f1c2";
}

.fa-file-powerpoint::before {
  content: "\f1c4";
}

.fa-arrows-left-right::before {
  content: "\f07e";
}

.fa-arrows-h::before {
  content: "\f07e";
}

.fa-house-lock::before {
  content: "\e510";
}

.fa-cloud-arrow-down::before {
  content: "\f0ed";
}

.fa-cloud-download::before {
  content: "\f0ed";
}

.fa-cloud-download-alt::before {
  content: "\f0ed";
}

.fa-children::before {
  content: "\e4e1";
}

.fa-chalkboard::before {
  content: "\f51b";
}

.fa-blackboard::before {
  content: "\f51b";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

.fa-guarani-sign::before {
  content: "\e19a";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-fire-extinguisher::before {
  content: "\f134";
}

.fa-cruzeiro-sign::before {
  content: "\e152";
}

.fa-greater-than-equal::before {
  content: "\f532";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

.fa-book-atlas::before {
  content: "\f558";
}

.fa-atlas::before {
  content: "\f558";
}

.fa-virus::before {
  content: "\e074";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

.fa-archway::before {
  content: "\f557";
}

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

.fa-file-zipper::before {
  content: "\f1c6";
}

.fa-file-archive::before {
  content: "\f1c6";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

.fa-couch::before {
  content: "\f4b8";
}

.fa-cedi-sign::before {
  content: "\e0df";
}

.fa-italic::before {
  content: "\f033";
}

.fa-church::before {
  content: "\f51d";
}

.fa-comments-dollar::before {
  content: "\f653";
}

.fa-democrat::before {
  content: "\f747";
}

.fa-z::before {
  content: "Z";
}

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-road-lock::before {
  content: "\e567";
}

.fa-a::before {
  content: "A";
}

.fa-temperature-arrow-down::before {
  content: "\e03f";
}

.fa-temperature-down::before {
  content: "\e03f";
}

.fa-feather-pointed::before {
  content: "\f56b";
}

.fa-feather-alt::before {
  content: "\f56b";
}

.fa-p::before {
  content: "P";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

.fa-circle-arrow-right::before {
  content: "\f0a9";
}

.fa-arrow-circle-right::before {
  content: "\f0a9";
}

.fa-filter-circle-xmark::before {
  content: "\e17b";
}

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

.fa-bread-slice::before {
  content: "\f7ec";
}

.fa-language::before {
  content: "\f1ab";
}

.fa-face-kiss-wink-heart::before {
  content: "\f598";
}

.fa-kiss-wink-heart::before {
  content: "\f598";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-question::before {
  content: "\?";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-puzzle-piece::before {
  content: "\f12e";
}

.fa-money-check::before {
  content: "\f53c";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

.fa-code::before {
  content: "\f121";
}

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-cubes-stacked::before {
  content: "\e4e6";
}

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

.fa-austral-sign::before {
  content: "\e0a9";
}

.fa-f::before {
  content: "F";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

.fa-chart-pie::before {
  content: "\f200";
}

.fa-pie-chart::before {
  content: "\f200";
}

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

.fa-file-excel::before {
  content: "\f1c3";
}

.fa-file-contract::before {
  content: "\f56c";
}

.fa-fish-fins::before {
  content: "\e4f2";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-face-grin-beam::before {
  content: "\f582";
}

.fa-grin-beam::before {
  content: "\f582";
}

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-poop::before {
  content: "\f619";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

.fa-eject::before {
  content: "\f052";
}

.fa-circle-right::before {
  content: "\f35a";
}

.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}

.fa-plane-circle-check::before {
  content: "\e555";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}

.fa-object-group::before {
  content: "\f247";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-line-chart::before {
  content: "\f201";
}

.fa-mask-ventilator::before {
  content: "\e524";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-cash-register::before {
  content: "\f788";
}

.fa-person-circle-question::before {
  content: "\e542";
}

.fa-h::before {
  content: "H";
}

.fa-tarp::before {
  content: "\e57b";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-heart::before {
  content: "\f004";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-dumpster-fire::before {
  content: "\f794";
}

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

.fa-face-surprise::before {
  content: "\f5c2";
}

.fa-surprise::before {
  content: "\f5c2";
}

.fa-bottle-water::before {
  content: "\e4c5";
}

.fa-circle-pause::before {
  content: "\f28b";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-toilet-paper-slash::before {
  content: "\e072";
}

.fa-apple-whole::before {
  content: "\f5d1";
}

.fa-apple-alt::before {
  content: "\f5d1";
}

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-r::before {
  content: "R";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

.fa-temperature-1::before {
  content: "\f2ca";
}

.fa-thermometer-1::before {
  content: "\f2ca";
}

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-bitcoin-sign::before {
  content: "\e0b4";
}

.fa-shield-dog::before {
  content: "\e573";
}

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

.fa-elevator::before {
  content: "\e16d";
}

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

.fa-poll-h::before {
  content: "\f682";
}

.fa-circle::before {
  content: "\f111";
}

.fa-backward-fast::before {
  content: "\f049";
}

.fa-fast-backward::before {
  content: "\f049";
}

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-trademark::before {
  content: "\f25c";
}

.fa-basketball::before {
  content: "\f434";
}

.fa-basketball-ball::before {
  content: "\f434";
}

.fa-satellite-dish::before {
  content: "\f7c0";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-clipboard-check::before {
  content: "\f46c";
}

.fa-file-audio::before {
  content: "\f1c7";
}

.fa-burger::before {
  content: "\f805";
}

.fa-hamburger::before {
  content: "\f805";
}

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

.fa-file-image::before {
  content: "\f1c5";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-book-bookmark::before {
  content: "\e0bb";
}

.fa-code-branch::before {
  content: "\f126";
}

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-truck-front::before {
  content: "\e2b7";
}

.fa-cat::before {
  content: "\f6be";
}

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

.fa-clipboard-question::before {
  content: "\e4e3";
}

.fa-panorama::before {
  content: "\e209";
}

.fa-comment-medical::before {
  content: "\f7f5";
}

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

.fa-forward-fast::before {
  content: "\f050";
}

.fa-fast-forward::before {
  content: "\f050";
}

.fa-face-meh-blank::before {
  content: "\f5a4";
}

.fa-meh-blank::before {
  content: "\f5a4";
}

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

.fa-faucet-drip::before {
  content: "\e006";
}

.fa-cart-flatbed::before {
  content: "\f474";
}

.fa-dolly-flatbed::before {
  content: "\f474";
}

.fa-ban-smoking::before {
  content: "\f54d";
}

.fa-smoking-ban::before {
  content: "\f54d";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

.fa-basket-shopping::before {
  content: "\f291";
}

.fa-shopping-basket::before {
  content: "\f291";
}

.fa-tape::before {
  content: "\f4db";
}

.fa-bus-simple::before {
  content: "\f55e";
}

.fa-bus-alt::before {
  content: "\f55e";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-face-sad-cry::before {
  content: "\f5b3";
}

.fa-sad-cry::before {
  content: "\f5b3";
}

.fa-audio-description::before {
  content: "\f29e";
}

.fa-person-military-to-person::before {
  content: "\e54c";
}

.fa-file-shield::before {
  content: "\e4f0";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

.fa-file-code::before {
  content: "\f1c9";
}

.fa-signal::before {
  content: "\f012";
}

.fa-signal-5::before {
  content: "\f012";
}

.fa-signal-perfect::before {
  content: "\f012";
}

.fa-bus::before {
  content: "\f207";
}

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

.fa-face-frown::before {
  content: "\f119";
}

.fa-frown::before {
  content: "\f119";
}

.fa-prescription::before {
  content: "\f5b1";
}

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

.fa-floppy-disk::before {
  content: "\f0c7";
}

.fa-save::before {
  content: "\f0c7";
}

.fa-vihara::before {
  content: "\f6a7";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

.fa-comment-dots::before {
  content: "\f4ad";
}

.fa-commenting::before {
  content: "\f4ad";
}

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-face-grin-squint::before {
  content: "\f585";
}

.fa-grin-squint::before {
  content: "\f585";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-holding-usd::before {
  content: "\f4c0";
}

.fa-bacterium::before {
  content: "\e05a";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-drum-steelpan::before {
  content: "\f56a";
}

.fa-hand-scissors::before {
  content: "\f257";
}

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

.fa-arrow-rotate-right::before {
  content: "\f01e";
}

.fa-arrow-right-rotate::before {
  content: "\f01e";
}

.fa-arrow-rotate-forward::before {
  content: "\f01e";
}

.fa-redo::before {
  content: "\f01e";
}

.fa-biohazard::before {
  content: "\f780";
}

.fa-location-crosshairs::before {
  content: "\f601";
}

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

.fa-child-dress::before {
  content: "\e59c";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

.fa-face-grin-tears::before {
  content: "\f588";
}

.fa-grin-tears::before {
  content: "\f588";
}

.fa-phone::before {
  content: "\f095";
}

.fa-calendar-xmark::before {
  content: "\f273";
}

.fa-calendar-times::before {
  content: "\f273";
}

.fa-child-reaching::before {
  content: "\e59d";
}

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-arrow-up-1-9::before {
  content: "\f163";
}

.fa-sort-numeric-up::before {
  content: "\f163";
}

.fa-door-closed::before {
  content: "\f52a";
}

.fa-shield-virus::before {
  content: "\e06c";
}

.fa-dice-six::before {
  content: "\f526";
}

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

.fa-book-medical::before {
  content: "\f7e6";
}

.fa-poo::before {
  content: "\f2fe";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

.fa-cubes::before {
  content: "\f1b3";
}

.fa-divide::before {
  content: "\f529";
}

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

.fa-hands-holding::before {
  content: "\f4c2";
}

.fa-hands-clapping::before {
  content: "\e1a8";
}

.fa-republican::before {
  content: "\f75e";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

.fa-align-left::before {
  content: "\f036";
}

.fa-dice-d6::before {
  content: "\f6d1";
}

.fa-restroom::before {
  content: "\f7bd";
}

.fa-j::before {
  content: "J";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-file-video::before {
  content: "\f1c8";
}

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

.fa-file-pdf::before {
  content: "\f1c1";
}

.fa-book-bible::before {
  content: "\f647";
}

.fa-bible::before {
  content: "\f647";
}

.fa-o::before {
  content: "O";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

.fa-comment-dollar::before {
  content: "\f651";
}

.fa-business-time::before {
  content: "\f64a";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

.fa-book-tanakh::before {
  content: "\f827";
}

.fa-tanakh::before {
  content: "\f827";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

.fa-clipboard-user::before {
  content: "\f7f3";
}

.fa-child::before {
  content: "\f1ae";
}

.fa-lira-sign::before {
  content: "\f195";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-comment::before {
  content: "\f075";
}

.fa-cake-candles::before {
  content: "\f1fd";
}

.fa-birthday-cake::before {
  content: "\f1fd";
}

.fa-cake::before {
  content: "\f1fd";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-angles-up::before {
  content: "\f102";
}

.fa-angle-double-up::before {
  content: "\f102";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

.fa-arrow-up-9-1::before {
  content: "\f887";
}

.fa-sort-numeric-up-alt::before {
  content: "\f887";
}

.fa-litecoin-sign::before {
  content: "\e1d3";
}

.fa-border-none::before {
  content: "\f850";
}

.fa-circle-nodes::before {
  content: "\e4e2";
}

.fa-parachute-box::before {
  content: "\f4cd";
}

.fa-indent::before {
  content: "\f03c";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-cloud-meatball::before {
  content: "\f73b";
}

.fa-camera::before {
  content: "\f030";
}

.fa-camera-alt::before {
  content: "\f030";
}

.fa-square-virus::before {
  content: "\e578";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

.fa-arrow-down-1-9::before {
  content: "\f162";
}

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

.fa-hand-holding-droplet::before {
  content: "\f4c1";
}

.fa-hand-holding-water::before {
  content: "\f4c1";
}

.fa-water::before {
  content: "\f773";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-braille::before {
  content: "\f2a1";
}

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

.fa-crosshairs::before {
  content: "\f05b";
}

.fa-person-cane::before {
  content: "\e53c";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-vest-patches::before {
  content: "\e086";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-arrow-down-a-z::before {
  content: "\f15d";
}

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

.fa-cookie::before {
  content: "\f563";
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.fa-arrow-left-rotate::before {
  content: "\f0e2";
}

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

.fa-face-grin-squint-tears::before {
  content: "\f586";
}

.fa-grin-squint-tears::before {
  content: "\f586";
}

.fa-dumbbell::before {
  content: "\f44b";
}

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

.fa-calendar-plus::before {
  content: "\f271";
}

.fa-plane-arrival::before {
  content: "\f5af";
}

.fa-circle-left::before {
  content: "\f359";
}

.fa-arrow-alt-circle-left::before {
  content: "\f359";
}

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

.fa-chart-gantt::before {
  content: "\e0e4";
}

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

.fa-crop-simple::before {
  content: "\f565";
}

.fa-crop-alt::before {
  content: "\f565";
}

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

.fa-dna::before {
  content: "\f471";
}

.fa-virus-slash::before {
  content: "\e075";
}

.fa-minus::before {
  content: "\f068";
}

.fa-subtract::before {
  content: "\f068";
}

.fa-chess::before {
  content: "\f439";
}

.fa-arrow-left-long::before {
  content: "\f177";
}

.fa-long-arrow-left::before {
  content: "\f177";
}

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-street-view::before {
  content: "\f21d";
}

.fa-franc-sign::before {
  content: "\e18f";
}

.fa-volume-off::before {
  content: "\f026";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-asl-interpreting::before {
  content: "\f2a3";
}

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-gear::before {
  content: "\f013";
}

.fa-cog::before {
  content: "\f013";
}

.fa-droplet-slash::before {
  content: "\f5c7";
}

.fa-tint-slash::before {
  content: "\f5c7";
}

.fa-mosque::before {
  content: "\f678";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

.fa-cart-shopping::before {
  content: "\f07a";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-vials::before {
  content: "\f493";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

.fa-grip-vertical::before {
  content: "\f58e";
}

.fa-arrow-turn-up::before {
  content: "\f148";
}

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "U";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

.fa-clock::before {
  content: "\f017";
}

.fa-clock-four::before {
  content: "\f017";
}

.fa-backward-step::before {
  content: "\f048";
}

.fa-step-backward::before {
  content: "\f048";
}

.fa-pallet::before {
  content: "\f482";
}

.fa-faucet::before {
  content: "\e005";
}

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-s::before {
  content: "S";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

.fa-temperature-3::before {
  content: "\f2c8";
}

.fa-thermometer-3::before {
  content: "\f2c8";
}

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

.fa-battery-half::before {
  content: "\f242";
}

.fa-battery-3::before {
  content: "\f242";
}

.fa-mountain-city::before {
  content: "\e52e";
}

.fa-coins::before {
  content: "\f51e";
}

.fa-khanda::before {
  content: "\f66d";
}

.fa-sliders::before {
  content: "\f1de";
}

.fa-sliders-h::before {
  content: "\f1de";
}

.fa-folder-tree::before {
  content: "\f802";
}

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-hamsa::before {
  content: "\f665";
}

.fa-cent-sign::before {
  content: "\e3f5";
}

.fa-flask::before {
  content: "\f0c3";
}

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-ellipsis-v::before {
  content: "\f142";
}

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

.fa-flag-usa::before {
  content: "\f74d";
}

.fa-laptop-file::before {
  content: "\e51d";
}

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

.fa-closed-captioning::before {
  content: "\f20a";
}

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-people-pulling::before {
  content: "\e535";
}

.fa-n::before {
  content: "N";
}

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

.fa-cloud-rain::before {
  content: "\f73d";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

.fa-download::before {
  content: "\f019";
}

.fa-face-grin::before {
  content: "\f580";
}

.fa-grin::before {
  content: "\f580";
}

.fa-delete-left::before {
  content: "\f55a";
}

.fa-backspace::before {
  content: "\f55a";
}

.fa-eye-dropper::before {
  content: "\f1fb";
}

.fa-eye-dropper-empty::before {
  content: "\f1fb";
}

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

.fa-forward::before {
  content: "\f04e";
}

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

.fa-face-meh::before {
  content: "\f11a";
}

.fa-meh::before {
  content: "\f11a";
}

.fa-align-center::before {
  content: "\f037";
}

.fa-book-skull::before {
  content: "\f6b7";
}

.fa-book-dead::before {
  content: "\f6b7";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-calendar-week::before {
  content: "\f784";
}

.fa-laptop-medical::before {
  content: "\f812";
}

.fa-b::before {
  content: "B";
}

.fa-file-medical::before {
  content: "\f477";
}

.fa-dice-one::before {
  content: "\f525";
}

.fa-kiwi-bird::before {
  content: "\f535";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

.fa-rotate-forward::before {
  content: "\f2f9";
}

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-toilet-portable::before {
  content: "\e583";
}

.fa-compact-disc::before {
  content: "\f51f";
}

.fa-file-arrow-down::before {
  content: "\f56d";
}

.fa-file-download::before {
  content: "\f56d";
}

.fa-caravan::before {
  content: "\f8ff";
}

.fa-shield-cat::before {
  content: "\e572";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-zap::before {
  content: "\f0e7";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

.fa-sun::before {
  content: "\f185";
}

.fa-guitar::before {
  content: "\f7a6";
}

.fa-face-laugh-wink::before {
  content: "\f59c";
}

.fa-laugh-wink::before {
  content: "\f59c";
}

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

.fa-circle-down::before {
  content: "\f358";
}

.fa-arrow-alt-circle-down::before {
  content: "\f358";
}

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

.fa-florin-sign::before {
  content: "\e184";
}

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\<";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-head-side-cough::before {
  content: "\e061";
}

.fa-grip-lines::before {
  content: "\f7a4";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-arrow-right-long::before {
  content: "\f178";
}

.fa-long-arrow-right::before {
  content: "\f178";
}

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-chess-pawn::before {
  content: "\f443";
}

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

.fa-hands-holding-circle::before {
  content: "\e4fb";
}

.fa-bug::before {
  content: "\f188";
}

.fa-credit-card::before {
  content: "\f09d";
}

.fa-credit-card-alt::before {
  content: "\f09d";
}

.fa-car::before {
  content: "\f1b9";
}

.fa-automobile::before {
  content: "\f1b9";
}

.fa-hand-holding-hand::before {
  content: "\e4f7";
}

.fa-book-open-reader::before {
  content: "\f5da";
}

.fa-book-reader::before {
  content: "\f5da";
}

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

.fa-dice-d20::before {
  content: "\f6cf";
}

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

.fa-temperature-arrow-up::before {
  content: "\e040";
}

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-bed::before {
  content: "\f236";
}

.fa-square-h::before {
  content: "\f0fd";
}

.fa-h-square::before {
  content: "\f0fd";
}

.fa-podcast::before {
  content: "\f2ce";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

.fa-temperature-4::before {
  content: "\f2c7";
}

.fa-thermometer-4::before {
  content: "\f2c7";
}

.fa-thermometer-full::before {
  content: "\f2c7";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-superscript::before {
  content: "\f12b";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-file::before {
  content: "\f15b";
}

.fa-greater-than::before {
  content: "\>";
}

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

.fa-arrow-down::before {
  content: "\f063";
}

.fa-droplet::before {
  content: "\f043";
}

.fa-tint::before {
  content: "\f043";
}

.fa-eraser::before {
  content: "\f12d";
}

.fa-earth-americas::before {
  content: "\f57d";
}

.fa-earth::before {
  content: "\f57d";
}

.fa-earth-america::before {
  content: "\f57d";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-person-burst::before {
  content: "\e53b";
}

.fa-dove::before {
  content: "\f4ba";
}

.fa-battery-empty::before {
  content: "\f244";
}

.fa-battery-0::before {
  content: "\f244";
}

.fa-socks::before {
  content: "\f696";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-section::before {
  content: "\e447";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

.fa-chess-rook::before {
  content: "\f447";
}

.fa-bars-staggered::before {
  content: "\f550";
}

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

.fa-dharmachakra::before {
  content: "\f655";
}

.fa-hotdog::before {
  content: "\f80f";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

.fa-drum::before {
  content: "\f569";
}

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

.fa-fax::before {
  content: "\f1ac";
}

.fa-paragraph::before {
  content: "\f1dd";
}

.fa-check-to-slot::before {
  content: "\f772";
}

.fa-vote-yea::before {
  content: "\f772";
}

.fa-star-half::before {
  content: "\f089";
}

.fa-boxes-stacked::before {
  content: "\f468";
}

.fa-boxes::before {
  content: "\f468";
}

.fa-boxes-alt::before {
  content: "\f468";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

.fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.fa-tree-city::before {
  content: "\e587";
}

.fa-play::before {
  content: "\f04b";
}

.fa-font::before {
  content: "\f031";
}

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

.fa-cart-arrow-down::before {
  content: "\f218";
}

.fa-walkie-talkie::before {
  content: "\f8ef";
}

.fa-file-pen::before {
  content: "\f31c";
}

.fa-file-edit::before {
  content: "\f31c";
}

.fa-receipt::before {
  content: "\f543";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-battery-full::before {
  content: "\f240";
}

.fa-battery::before {
  content: "\f240";
}

.fa-battery-5::before {
  content: "\f240";
}

.fa-skull-crossbones::before {
  content: "\f714";
}

.fa-code-compare::before {
  content: "\e13a";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

.fa-down-long::before {
  content: "\f309";
}

.fa-long-arrow-alt-down::before {
  content: "\f309";
}

.fa-ranking-star::before {
  content: "\e561";
}

.fa-chess-king::before {
  content: "\f43f";
}

.fa-person-harassing::before {
  content: "\e549";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

.fa-arrow-up::before {
  content: "\f062";
}

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-shrimp::before {
  content: "\e448";
}

.fa-list-check::before {
  content: "\f0ae";
}

.fa-tasks::before {
  content: "\f0ae";
}

.fa-jug-detergent::before {
  content: "\e519";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-wind::before {
  content: "\f72e";
}

.fa-car-burst::before {
  content: "\f5e1";
}

.fa-car-crash::before {
  content: "\f5e1";
}

.fa-y::before {
  content: "Y";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

.fa-fish::before {
  content: "\f578";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-circle-half-stroke::before {
  content: "\f042";
}

.fa-adjust::before {
  content: "\f042";
}

.fa-clapperboard::before {
  content: "\e131";
}

.fa-circle-radiation::before {
  content: "\f7ba";
}

.fa-radiation-alt::before {
  content: "\f7ba";
}

.fa-baseball::before {
  content: "\f433";
}

.fa-baseball-ball::before {
  content: "\f433";
}

.fa-jet-fighter-up::before {
  content: "\e518";
}

.fa-diagram-project::before {
  content: "\f542";
}

.fa-project-diagram::before {
  content: "\f542";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

.fa-hand-sparkles::before {
  content: "\e05d";
}

.fa-grip::before {
  content: "\f58d";
}

.fa-grip-horizontal::before {
  content: "\f58d";
}

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

.fa-child-combatant::before {
  content: "\e4e0";
}

.fa-child-rifle::before {
  content: "\e4e0";
}

.fa-gun::before {
  content: "\e19b";
}

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-plus::before {
  content: "\+";
}

.fa-add::before {
  content: "\+";
}

.fa-expand::before {
  content: "\f065";
}

.fa-computer::before {
  content: "\e4e5";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

.fa-chalkboard-user::before {
  content: "\f51c";
}

.fa-chalkboard-teacher::before {
  content: "\f51c";
}

.fa-peso-sign::before {
  content: "\e222";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-baby::before {
  content: "\f77c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

.fa-trash-arrow-up::before {
  content: "\f829";
}

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-ruler-combined::before {
  content: "\f546";
}

.fa-copyright::before {
  content: "\f1f9";
}

.fa-equals::before {
  content: "\=";
}

.fa-blender::before {
  content: "\f517";
}

.fa-teeth::before {
  content: "\f62e";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-photo-film::before {
  content: "\f87c";
}

.fa-photo-video::before {
  content: "\f87c";
}

.fa-folder-minus::before {
  content: "\f65d";
}

.fa-store::before {
  content: "\f54e";
}

.fa-arrow-trend-up::before {
  content: "\e098";
}

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

.fa-sign::before {
  content: "\f4d9";
}

.fa-bezier-curve::before {
  content: "\f55b";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

.fa-school-flag::before {
  content: "\e56e";
}

.fa-fill::before {
  content: "\f575";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-drumstick-bite::before {
  content: "\f6d7";
}

.fa-holly-berry::before {
  content: "\f7aa";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-bacteria::before {
  content: "\e059";
}

.fa-hand-lizard::before {
  content: "\f258";
}

.fa-notdef::before {
  content: "\e1fe";
}

.fa-disease::before {
  content: "\f7fa";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-genderless::before {
  content: "\f22d";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-retweet::before {
  content: "\f079";
}

.fa-car-rear::before {
  content: "\f5de";
}

.fa-car-alt::before {
  content: "\f5de";
}

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-video-slash::before {
  content: "\f4e2";
}

.fa-battery-quarter::before {
  content: "\f243";
}

.fa-battery-2::before {
  content: "\f243";
}

.fa-radio::before {
  content: "\f8d7";
}

.fa-baby-carriage::before {
  content: "\f77d";
}

.fa-carriage-baby::before {
  content: "\f77d";
}

.fa-traffic-light::before {
  content: "\f637";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

.fa-hand-middle-finger::before {
  content: "\f806";
}

.fa-percent::before {
  content: "\%";
}

.fa-percentage::before {
  content: "\%";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-display::before {
  content: "\e163";
}

.fa-face-smile::before {
  content: "\f118";
}

.fa-smile::before {
  content: "\f118";
}

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

.fa-hammer::before {
  content: "\f6e3";
}

.fa-hand-peace::before {
  content: "\f25b";
}

.fa-rotate::before {
  content: "\f2f1";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-robot::before {
  content: "\f544";
}

.fa-peace::before {
  content: "\f67c";
}

.fa-gears::before {
  content: "\f085";
}

.fa-cogs::before {
  content: "\f085";
}

.fa-warehouse::before {
  content: "\f494";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-splotch::before {
  content: "\f5bc";
}

.fa-face-grin-hearts::before {
  content: "\f584";
}

.fa-grin-hearts::before {
  content: "\f584";
}

.fa-dice-four::before {
  content: "\f524";
}

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

.fa-arrow-turn-down::before {
  content: "\f149";
}

.fa-level-down::before {
  content: "\f149";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

.fa-award::before {
  content: "\f559";
}

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-angles-left::before {
  content: "\f100";
}

.fa-angle-double-left::before {
  content: "\f100";
}

.fa-qrcode::before {
  content: "\f029";
}

.fa-clock-rotate-left::before {
  content: "\f1da";
}

.fa-history::before {
  content: "\f1da";
}

.fa-face-grin-beam-sweat::before {
  content: "\f583";
}

.fa-grin-beam-sweat::before {
  content: "\f583";
}

.fa-file-export::before {
  content: "\f56e";
}

.fa-arrow-right-from-file::before {
  content: "\f56e";
}

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

.fa-arrow-up-short-wide::before {
  content: "\f885";
}

.fa-sort-amount-up-alt::before {
  content: "\f885";
}

.fa-house-medical::before {
  content: "\e3b2";
}

.fa-golf-ball-tee::before {
  content: "\f450";
}

.fa-golf-ball::before {
  content: "\f450";
}

.fa-circle-chevron-left::before {
  content: "\f137";
}

.fa-chevron-circle-left::before {
  content: "\f137";
}

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

.fa-dog::before {
  content: "\f6d3";
}

.fa-carrot::before {
  content: "\f787";
}

.fa-moon::before {
  content: "\f186";
}

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

.fa-cheese::before {
  content: "\f7ef";
}

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

.fa-code-commit::before {
  content: "\f386";
}

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

.fa-broom::before {
  content: "\f51a";
}

.fa-shield-heart::before {
  content: "\e574";
}

.fa-gopuram::before {
  content: "\f664";
}

.fa-earth-oceania::before {
  content: "\e47b";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-hashtag::before {
  content: "\#";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

.fa-expand-alt::before {
  content: "\f424";
}

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "T";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

.fa-fan::before {
  content: "\f863";
}

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

.fa-cloud-moon-rain::before {
  content: "\f73c";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-trailer::before {
  content: "\e041";
}

.fa-bahai::before {
  content: "\f666";
}

.fa-haykal::before {
  content: "\f666";
}

.fa-sd-card::before {
  content: "\f7c2";
}

.fa-dragon::before {
  content: "\f6d5";
}

.fa-shoe-prints::before {
  content: "\f54b";
}

.fa-circle-plus::before {
  content: "\f055";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-hand-holding::before {
  content: "\f4bd";
}

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

.fa-clone::before {
  content: "\f24d";
}

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

.fa-arrow-up-z-a::before {
  content: "\f882";
}

.fa-sort-alpha-up-alt::before {
  content: "\f882";
}

.fa-fire-flame-curved::before {
  content: "\f7e4";
}

.fa-fire-alt::before {
  content: "\f7e4";
}

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

.fa-book-quran::before {
  content: "\f687";
}

.fa-quran::before {
  content: "\f687";
}

.fa-anchor::before {
  content: "\f13d";
}

.fa-border-all::before {
  content: "\f84c";
}

.fa-face-angry::before {
  content: "\f556";
}

.fa-angry::before {
  content: "\f556";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-arrow-trend-down::before {
  content: "\e097";
}

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

.fa-draw-polygon::before {
  content: "\f5ee";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

.fa-gauge-simple-high::before {
  content: "\f62a";
}

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-shower::before {
  content: "\f2cc";
}

.fa-desktop::before {
  content: "\f390";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-m::before {
  content: "M";
}

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

.fa-comment-sms::before {
  content: "\f7cd";
}

.fa-sms::before {
  content: "\f7cd";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-check::before {
  content: "\f00c";
}

.fa-battery-three-quarters::before {
  content: "\f241";
}

.fa-battery-4::before {
  content: "\f241";
}

.fa-house-circle-check::before {
  content: "\e509";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-diagram-successor::before {
  content: "\e47a";
}

.fa-truck-arrow-right::before {
  content: "\e58b";
}

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

.fa-hand-fist::before {
  content: "\f6de";
}

.fa-fist-raised::before {
  content: "\f6de";
}

.fa-cloud-moon::before {
  content: "\f6c3";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-arrow-turn-right::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\!";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-dollar-sign::before {
  content: "\$";
}

.fa-dollar::before {
  content: "\$";
}

.fa-usd::before {
  content: "\$";
}

.fa-x::before {
  content: "X";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-d::before {
  content: "D";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
:root,
:host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../packages/fontawesome/fonts/fa-brands-400.woff2") format("woff2"), url("../packages/fontawesome/fonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-aws:before {
  content: "\f375";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-modx:before {
  content: "\f285";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-square-js:before {
  content: "\f3b9";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-unity:before {
  content: "\e049";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-vk:before {
  content: "\f189";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-square-reddit:before {
  content: "\f1a2";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-square-font-awesome:before {
  content: "\e5ad";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-square-hacker-news:before {
  content: "\f3af";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-edge:before {
  content: "\f282";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-square-snapchat:before {
  content: "\f2ad";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-safari:before {
  content: "\f267";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-square-viadeo:before {
  content: "\f2aa";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-centos:before {
  content: "\f789";
}

.fa-adn:before {
  content: "\f170";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-square-dribbble:before {
  content: "\f397";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-node:before {
  content: "\f419";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-meta:before {
  content: "\e49b";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-hips:before {
  content: "\f452";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-discord:before {
  content: "\f392";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-square-steam:before {
  content: "\f1b7";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-flag:before {
  content: "\f2b4";
}

.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-apple:before {
  content: "\f179";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-square-github:before {
  content: "\f092";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-neos:before {
  content: "\f612";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-angular:before {
  content: "\f420";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-square-gitlab:before {
  content: "\e5ae";
}

.fa-gitlab-square:before {
  content: "\e5ae";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-square-odnoklassniki:before {
  content: "\f264";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-sith:before {
  content: "\f512";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-react:before {
  content: "\f41b";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-gg:before {
  content: "\f260";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-xing:before {
  content: "\f168";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-less:before {
  content: "\f41d";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-square-google-plus:before {
  content: "\f0d4";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-square-xing:before {
  content: "\f169";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-fly:before {
  content: "\f417";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-viber:before {
  content: "\f409";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-audible:before {
  content: "\f373";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-42-group:before {
  content: "\e080";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-square-pied-piper:before {
  content: "\e01e";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-square-lastfm:before {
  content: "\f203";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-figma:before {
  content: "\f799";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-docker:before {
  content: "\f395";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-wirsindhandwerk:before {
  content: "\e2d0";
}

.fa-wsh:before {
  content: "\e2d0";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-apper:before {
  content: "\f371";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-square-behance:before {
  content: "\f1b5";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-space-awesome:before {
  content: "\e5ac";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-square-git:before {
  content: "\f1d2";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-square-tumblr:before {
  content: "\f174";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-trello:before {
  content: "\f181";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-android:before {
  content: "\f17b";
}

.fa-bots:before {
  content: "\e340";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-uber:before {
  content: "\f402";
}

.fa-github:before {
  content: "\f09b";
}

.fa-php:before {
  content: "\f457";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-stubber:before {
  content: "\e5c7";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f2c6";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-odysee:before {
  content: "\e5c6";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f198";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-usb:before {
  content: "\f287";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f23a";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-strava:before {
  content: "\f428";
}

.fa-ember:before {
  content: "\f423";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-zhihu:before {
  content: "\f63f";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../packages/fontawesome/fonts/fa-regular-400.woff2") format("woff2"), url("../packages/fontawesome/fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../packages/fontawesome/fonts/fa-solid-900.woff2") format("woff2"), url("../packages/fontawesome/fonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa.fa-glass:before {
  content: "\f000";
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-envelope-o:before {
  content: "\f0e0";
}

.fa.fa-star-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-star-o:before {
  content: "\f005";
}

.fa.fa-remove:before {
  content: "\f00d";
}

.fa.fa-close:before {
  content: "\f00d";
}

.fa.fa-gear:before {
  content: "\f013";
}

.fa.fa-trash-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-trash-o:before {
  content: "\f2ed";
}

.fa.fa-home:before {
  content: "\f015";
}

.fa.fa-file-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-o:before {
  content: "\f15b";
}

.fa.fa-clock-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-clock-o:before {
  content: "\f017";
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-down:before {
  content: "\f358";
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-up:before {
  content: "\f35b";
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-play-circle-o:before {
  content: "\f144";
}

.fa.fa-repeat:before {
  content: "\f01e";
}

.fa.fa-rotate-right:before {
  content: "\f01e";
}

.fa.fa-refresh:before {
  content: "\f021";
}

.fa.fa-list-alt {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-list-alt:before {
  content: "\f022";
}

.fa.fa-dedent:before {
  content: "\f03b";
}

.fa.fa-video-camera:before {
  content: "\f03d";
}

.fa.fa-picture-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-picture-o:before {
  content: "\f03e";
}

.fa.fa-photo {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-photo:before {
  content: "\f03e";
}

.fa.fa-image {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-image:before {
  content: "\f03e";
}

.fa.fa-map-marker:before {
  content: "\f3c5";
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-pencil-square-o:before {
  content: "\f044";
}

.fa.fa-edit {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-edit:before {
  content: "\f044";
}

.fa.fa-share-square-o:before {
  content: "\f14d";
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-check-square-o:before {
  content: "\f14a";
}

.fa.fa-arrows:before {
  content: "\f0b2";
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-times-circle-o:before {
  content: "\f057";
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-check-circle-o:before {
  content: "\f058";
}

.fa.fa-mail-forward:before {
  content: "\f064";
}

.fa.fa-expand:before {
  content: "\f424";
}

.fa.fa-compress:before {
  content: "\f422";
}

.fa.fa-eye {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-eye-slash {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-warning:before {
  content: "\f071";
}

.fa.fa-calendar:before {
  content: "\f073";
}

.fa.fa-arrows-v:before {
  content: "\f338";
}

.fa.fa-arrows-h:before {
  content: "\f337";
}

.fa.fa-bar-chart:before {
  content: "\e0e3";
}

.fa.fa-bar-chart-o:before {
  content: "\e0e3";
}

.fa.fa-twitter-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-twitter-square:before {
  content: "\f081";
}

.fa.fa-facebook-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-facebook-square:before {
  content: "\f082";
}

.fa.fa-gears:before {
  content: "\f085";
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-up:before {
  content: "\f164";
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-down:before {
  content: "\f165";
}

.fa.fa-heart-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-heart-o:before {
  content: "\f004";
}

.fa.fa-sign-out:before {
  content: "\f2f5";
}

.fa.fa-linkedin-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-linkedin-square:before {
  content: "\f08c";
}

.fa.fa-thumb-tack:before {
  content: "\f08d";
}

.fa.fa-external-link:before {
  content: "\f35d";
}

.fa.fa-sign-in:before {
  content: "\f2f6";
}

.fa.fa-github-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-github-square:before {
  content: "\f092";
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-lemon-o:before {
  content: "\f094";
}

.fa.fa-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-square-o:before {
  content: "\f0c8";
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-bookmark-o:before {
  content: "\f02e";
}

.fa.fa-twitter {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-facebook:before {
  content: "\f39e";
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-facebook-f:before {
  content: "\f39e";
}

.fa.fa-github {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-credit-card {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-feed:before {
  content: "\f09e";
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hdd-o:before {
  content: "\f0a0";
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa.fa-globe:before {
  content: "\f57d";
}

.fa.fa-tasks:before {
  content: "\f828";
}

.fa.fa-arrows-alt:before {
  content: "\f31e";
}

.fa.fa-group:before {
  content: "\f0c0";
}

.fa.fa-chain:before {
  content: "\f0c1";
}

.fa.fa-cut:before {
  content: "\f0c4";
}

.fa.fa-files-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-files-o:before {
  content: "\f0c5";
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-floppy-o:before {
  content: "\f0c7";
}

.fa.fa-save {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-save:before {
  content: "\f0c7";
}

.fa.fa-navicon:before {
  content: "\f0c9";
}

.fa.fa-reorder:before {
  content: "\f0c9";
}

.fa.fa-magic:before {
  content: "\e2ca";
}

.fa.fa-pinterest {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa.fa-google-plus-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa.fa-google-plus {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-plus:before {
  content: "\f0d5";
}

.fa.fa-money:before {
  content: "\f3d1";
}

.fa.fa-unsorted:before {
  content: "\f0dc";
}

.fa.fa-sort-desc:before {
  content: "\f0dd";
}

.fa.fa-sort-asc:before {
  content: "\f0de";
}

.fa.fa-linkedin {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-linkedin:before {
  content: "\f0e1";
}

.fa.fa-rotate-left:before {
  content: "\f0e2";
}

.fa.fa-legal:before {
  content: "\f0e3";
}

.fa.fa-tachometer:before {
  content: "\f625";
}

.fa.fa-dashboard:before {
  content: "\f625";
}

.fa.fa-comment-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-comment-o:before {
  content: "\f075";
}

.fa.fa-comments-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-comments-o:before {
  content: "\f086";
}

.fa.fa-flash:before {
  content: "\f0e7";
}

.fa.fa-clipboard:before {
  content: "\f0ea";
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa.fa-exchange:before {
  content: "\f362";
}

.fa.fa-cloud-download:before {
  content: "\f0ed";
}

.fa.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa.fa-bell-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-bell-o:before {
  content: "\f0f3";
}

.fa.fa-cutlery:before {
  content: "\f2e7";
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-text-o:before {
  content: "\f15c";
}

.fa.fa-building-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-building-o:before {
  content: "\f1ad";
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hospital-o:before {
  content: "\f0f8";
}

.fa.fa-tablet:before {
  content: "\f3fa";
}

.fa.fa-mobile:before {
  content: "\f3cd";
}

.fa.fa-mobile-phone:before {
  content: "\f3cd";
}

.fa.fa-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-circle-o:before {
  content: "\f111";
}

.fa.fa-mail-reply:before {
  content: "\f3e5";
}

.fa.fa-github-alt {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-folder-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-folder-o:before {
  content: "\f07b";
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-folder-open-o:before {
  content: "\f07c";
}

.fa.fa-smile-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-smile-o:before {
  content: "\f118";
}

.fa.fa-frown-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-frown-o:before {
  content: "\f119";
}

.fa.fa-meh-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-meh-o:before {
  content: "\f11a";
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-keyboard-o:before {
  content: "\f11c";
}

.fa.fa-flag-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-flag-o:before {
  content: "\f024";
}

.fa.fa-mail-reply-all:before {
  content: "\f122";
}

.fa.fa-star-half-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-star-half-o:before {
  content: "\f5c0";
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-star-half-empty:before {
  content: "\f5c0";
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-star-half-full:before {
  content: "\f5c0";
}

.fa.fa-code-fork:before {
  content: "\f126";
}

.fa.fa-chain-broken:before {
  content: "\f127";
}

.fa.fa-unlink:before {
  content: "\f127";
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-calendar-o:before {
  content: "\f133";
}

.fa.fa-maxcdn {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-html5 {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-css3 {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-unlock-alt:before {
  content: "\f09c";
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-minus-square-o:before {
  content: "\f146";
}

.fa.fa-level-up:before {
  content: "\f3bf";
}

.fa.fa-level-down:before {
  content: "\f3be";
}

.fa.fa-pencil-square:before {
  content: "\f14b";
}

.fa.fa-external-link-square:before {
  content: "\f360";
}

.fa.fa-compass {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa.fa-toggle-down {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-toggle-down:before {
  content: "\f150";
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa.fa-toggle-up {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-toggle-up:before {
  content: "\f151";
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa.fa-toggle-right {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-toggle-right:before {
  content: "\f152";
}

.fa.fa-eur:before {
  content: "\f153";
}

.fa.fa-euro:before {
  content: "\f153";
}

.fa.fa-gbp:before {
  content: "\f154";
}

.fa.fa-usd:before {
  content: "\$";
}

.fa.fa-dollar:before {
  content: "\$";
}

.fa.fa-inr:before {
  content: "\e1bc";
}

.fa.fa-rupee:before {
  content: "\e1bc";
}

.fa.fa-jpy:before {
  content: "\f157";
}

.fa.fa-cny:before {
  content: "\f157";
}

.fa.fa-rmb:before {
  content: "\f157";
}

.fa.fa-yen:before {
  content: "\f157";
}

.fa.fa-rub:before {
  content: "\f158";
}

.fa.fa-ruble:before {
  content: "\f158";
}

.fa.fa-rouble:before {
  content: "\f158";
}

.fa.fa-krw:before {
  content: "\f159";
}

.fa.fa-won:before {
  content: "\f159";
}

.fa.fa-btc {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin:before {
  content: "\f15a";
}

.fa.fa-file-text:before {
  content: "\f15c";
}

.fa.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa.fa-sort-alpha-desc:before {
  content: "\f881";
}

.fa.fa-sort-amount-asc:before {
  content: "\f884";
}

.fa.fa-sort-amount-desc:before {
  content: "\f160";
}

.fa.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa.fa-sort-numeric-desc:before {
  content: "\f886";
}

.fa.fa-youtube-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-youtube-square:before {
  content: "\f431";
}

.fa.fa-youtube {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-xing {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-xing-square:before {
  content: "\f169";
}

.fa.fa-youtube-play {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play:before {
  content: "\f167";
}

.fa.fa-dropbox {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-stack-overflow {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-instagram {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-flickr {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-adn {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square:before {
  content: "\f171";
}

.fa.fa-tumblr {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square:before {
  content: "\f174";
}

.fa.fa-long-arrow-down:before {
  content: "\f309";
}

.fa.fa-long-arrow-up:before {
  content: "\f30c";
}

.fa.fa-long-arrow-left:before {
  content: "\f30a";
}

.fa.fa-long-arrow-right:before {
  content: "\f30b";
}

.fa.fa-apple {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-windows {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-android {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-linux {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-dribbble {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-skype {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-foursquare {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-trello {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gratipay {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gittip:before {
  content: "\f184";
}

.fa.fa-sun-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-sun-o:before {
  content: "\f185";
}

.fa.fa-moon-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-moon-o:before {
  content: "\f186";
}

.fa.fa-vk {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-weibo {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-renren {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pagelines {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-stack-exchange {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right:before {
  content: "\f35a";
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-left:before {
  content: "\f359";
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa.fa-toggle-left {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-toggle-left:before {
  content: "\f191";
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-dot-circle-o:before {
  content: "\f192";
}

.fa.fa-vimeo-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-vimeo-square:before {
  content: "\f194";
}

.fa.fa-try:before {
  content: "\e2bb";
}

.fa.fa-turkish-lira:before {
  content: "\e2bb";
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-plus-square-o:before {
  content: "\f0fe";
}

.fa.fa-slack {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wordpress {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-openid {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-institution:before {
  content: "\f19c";
}

.fa.fa-bank:before {
  content: "\f19c";
}

.fa.fa-mortar-board:before {
  content: "\f19d";
}

.fa.fa-yahoo {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-reddit {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square:before {
  content: "\f1a2";
}

.fa.fa-stumbleupon-circle {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-delicious {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-digg {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-pp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-alt {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-drupal {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-joomla {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-behance {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-behance-square:before {
  content: "\f1b5";
}

.fa.fa-steam {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-steam-square:before {
  content: "\f1b7";
}

.fa.fa-automobile:before {
  content: "\f1b9";
}

.fa.fa-cab:before {
  content: "\f1ba";
}

.fa.fa-spotify {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-deviantart {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-soundcloud {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-word-o:before {
  content: "\f1c2";
}

.fa.fa-file-excel-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa.fa-file-image-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-image-o:before {
  content: "\f1c5";
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-photo-o:before {
  content: "\f1c5";
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-sound-o:before {
  content: "\f1c7";
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-video-o:before {
  content: "\f1c8";
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-movie-o:before {
  content: "\f1c8";
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-file-code-o:before {
  content: "\f1c9";
}

.fa.fa-vine {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-codepen {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-jsfiddle {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-life-bouy:before {
  content: "\f1cd";
}

.fa.fa-life-buoy:before {
  content: "\f1cd";
}

.fa.fa-life-saver:before {
  content: "\f1cd";
}

.fa.fa-support:before {
  content: "\f1cd";
}

.fa.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa.fa-rebel {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-ra:before {
  content: "\f1d0";
}

.fa.fa-resistance {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-resistance:before {
  content: "\f1d0";
}

.fa.fa-empire {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-ge:before {
  content: "\f1d1";
}

.fa.fa-git-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-git-square:before {
  content: "\f1d2";
}

.fa.fa-git {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-hacker-news {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square:before {
  content: "\f1d4";
}

.fa.fa-yc-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-yc-square:before {
  content: "\f1d4";
}

.fa.fa-tencent-weibo {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-qq {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-weixin {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wechat:before {
  content: "\f1d7";
}

.fa.fa-send:before {
  content: "\f1d8";
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-paper-plane-o:before {
  content: "\f1d8";
}

.fa.fa-send-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-send-o:before {
  content: "\f1d8";
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-circle-thin:before {
  content: "\f111";
}

.fa.fa-header:before {
  content: "\f1dc";
}

.fa.fa-futbol-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-futbol-o:before {
  content: "\f1e3";
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa.fa-slideshare {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-twitch {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-yelp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa.fa-paypal {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-wallet {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-visa {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-mastercard {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-discover {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-amex {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-paypal {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-stripe {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-bell-slash-o:before {
  content: "\f1f6";
}

.fa.fa-trash:before {
  content: "\f2ed";
}

.fa.fa-copyright {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-eyedropper:before {
  content: "\f1fb";
}

.fa.fa-area-chart:before {
  content: "\f1fe";
}

.fa.fa-pie-chart:before {
  content: "\f200";
}

.fa.fa-line-chart:before {
  content: "\f201";
}

.fa.fa-lastfm {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square:before {
  content: "\f203";
}

.fa.fa-ioxhost {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-angellist {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-cc:before {
  content: "\f20a";
}

.fa.fa-ils:before {
  content: "\f20b";
}

.fa.fa-shekel:before {
  content: "\f20b";
}

.fa.fa-sheqel:before {
  content: "\f20b";
}

.fa.fa-buysellads {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-connectdevelop {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-dashcube {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-forumbee {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-leanpub {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-sellsy {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-shirtsinbulk {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-simplybuilt {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-skyatlas {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-diamond {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-diamond:before {
  content: "\f3a5";
}

.fa.fa-transgender:before {
  content: "\f224";
}

.fa.fa-intersex:before {
  content: "\f224";
}

.fa.fa-transgender-alt:before {
  content: "\f225";
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-facebook-official:before {
  content: "\f09a";
}

.fa.fa-pinterest-p {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-whatsapp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-hotel:before {
  content: "\f236";
}

.fa.fa-viacoin {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-medium {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-yc:before {
  content: "\f23b";
}

.fa.fa-optin-monster {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-opencart {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-expeditedssl {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-battery-4:before {
  content: "\f240";
}

.fa.fa-battery:before {
  content: "\f240";
}

.fa.fa-battery-3:before {
  content: "\f241";
}

.fa.fa-battery-2:before {
  content: "\f242";
}

.fa.fa-battery-1:before {
  content: "\f243";
}

.fa.fa-battery-0:before {
  content: "\f244";
}

.fa.fa-object-group {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-object-ungroup {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o:before {
  content: "\f249";
}

.fa.fa-cc-jcb {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-cc-diners-club {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-clone {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o:before {
  content: "\f254";
}

.fa.fa-hourglass-1:before {
  content: "\f251";
}

.fa.fa-hourglass-2:before {
  content: "\f252";
}

.fa.fa-hourglass-3:before {
  content: "\f253";
}

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-rock-o:before {
  content: "\f255";
}

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-grab-o:before {
  content: "\f255";
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-paper-o:before {
  content: "\f256";
}

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-stop-o:before {
  content: "\f256";
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-spock-o:before {
  content: "\f259";
}

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa.fa-registered {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-creative-commons {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gg {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gg-circle {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa.fa-get-pocket {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wikipedia-w {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-safari {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-chrome {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-firefox {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-opera {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-internet-explorer {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-television:before {
  content: "\f26c";
}

.fa.fa-contao {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-500px {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-amazon {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-calendar-times-o:before {
  content: "\f273";
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-calendar-check-o:before {
  content: "\f274";
}

.fa.fa-map-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-map-o:before {
  content: "\f279";
}

.fa.fa-commenting:before {
  content: "\f4ad";
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-commenting-o:before {
  content: "\f4ad";
}

.fa.fa-houzz {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-vimeo:before {
  content: "\f27d";
}

.fa.fa-black-tie {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-fonticons {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-reddit-alien {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-edge {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-credit-card-alt:before {
  content: "\f09d";
}

.fa.fa-codiepie {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-modx {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-fort-awesome {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-usb {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-product-hunt {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-mixcloud {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-scribd {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-pause-circle-o:before {
  content: "\f28b";
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-stop-circle-o:before {
  content: "\f28d";
}

.fa.fa-bluetooth {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-bluetooth-b {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-gitlab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wpbeginner {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wpforms {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-envira {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt:before {
  content: "\f368";
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-question-circle-o:before {
  content: "\f059";
}

.fa.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa.fa-deafness:before {
  content: "\f2a4";
}

.fa.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa.fa-glide {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-glide-g {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-signing:before {
  content: "\f2a7";
}

.fa.fa-viadeo {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa.fa-snapchat {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa.fa-snapchat-square {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa.fa-pied-piper {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-first-order {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-yoast {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-themeisle {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-circle:before {
  content: "\f2b3";
}

.fa.fa-font-awesome {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-fa:before {
  content: "\f2b4";
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-handshake-o:before {
  content: "\f2b5";
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-envelope-open-o:before {
  content: "\f2b6";
}

.fa.fa-linode {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-address-book-o:before {
  content: "\f2b9";
}

.fa.fa-vcard:before {
  content: "\f2bb";
}

.fa.fa-address-card-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-address-card-o:before {
  content: "\f2bb";
}

.fa.fa-vcard-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-vcard-o:before {
  content: "\f2bb";
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-user-circle-o:before {
  content: "\f2bd";
}

.fa.fa-user-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-user-o:before {
  content: "\f007";
}

.fa.fa-id-badge {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-drivers-license:before {
  content: "\f2c2";
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-id-card-o:before {
  content: "\f2c2";
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-drivers-license-o:before {
  content: "\f2c2";
}

.fa.fa-quora {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-free-code-camp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-telegram {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-thermometer-4:before {
  content: "\f2c7";
}

.fa.fa-thermometer:before {
  content: "\f2c7";
}

.fa.fa-thermometer-3:before {
  content: "\f2c8";
}

.fa.fa-thermometer-2:before {
  content: "\f2c9";
}

.fa.fa-thermometer-1:before {
  content: "\f2ca";
}

.fa.fa-thermometer-0:before {
  content: "\f2cb";
}

.fa.fa-bathtub:before {
  content: "\f2cd";
}

.fa.fa-s15:before {
  content: "\f2cd";
}

.fa.fa-window-maximize {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-window-restore {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle:before {
  content: "\f410";
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-window-close-o:before {
  content: "\f410";
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle-o:before {
  content: "\f410";
}

.fa.fa-bandcamp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-grav {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-etsy {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-imdb {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-ravelry {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-eercast:before {
  content: "\f2da";
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa.fa-superpowers {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-wpexplorer {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa.fa-meetup {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}/*# sourceMappingURL=style-base.css.map */