@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo300-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo500-Regular.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo700-Regular.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo900-Regular.otf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --maximaleSeitenbreite: 1440px;
  --breiteLinkeSpalte: 300px;
  --lueckeSpalten: 70px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}
body {
  font-family: 'Museo';
}
body.noscroll {
  overflow: hidden;
}
.size_1-1 {
  width: 100%;
}
.size_1-2 {
  width: 50%;
}
.size_1-4 {
  width: 25%;
}
.size_3-4 {
  width: 75%;
}
header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(var(--maximaleSeitenbreite) + 40px);
  padding: 35px 20px 10px 20px;
}
#logo {
  display: block;
  postion: absolute;
  z-index: 10;
  border: 1px solid #42210B;
  color: #42210B;
  padding: 20px 20px 12px 20px;
  font-family: 'BebasNeue';
  font-weight: 300;
  /*display: table;*/
  font-size: 48px;
  line-height: 100%;
  user-select: none;
  transition: 200ms;
  width: var(--breiteLinkeSpalte);
}
#logo strong {
  color: #f7931e;
  font-weight: 700;
}
#logo:hover {
  border-color: #f7931e;
}
#menuMain {
  flex-grow: 1;
  padding-left: var(--lueckeSpalten);
}
#content {
  width: 100%;
  margin-top: -120px;
  position: relative;
  min-height: 100px;
}
#content a {
  color: #f7931e;
  font-weight: 900;
}
#content a:hover,
#content a:focus {
  text-decoration: underline;
}
.editmode #content {
  margin-top: 20px;
}
section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
section.beige {
  background-color: #E8E3DF;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 100px;
  margin-bottom: 0px;
  max-width: unset;
}
section .content {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--maximaleSeitenbreite);
  position: relative;
  padding-right: 290px;
}
section:not(#termine) .content :last-child {
  margin-bottom: 0;
}
.contenttext,
.contentbild,
.contentdownload {
  margin-left: calc(var(--breiteLinkeSpalte) + var(--lueckeSpalten));
  margin-bottom: 20px;
}
.contentbild .bu {
  margin-top: 10px;
}
.contentelement.marginalien {
  position: absolute;
  left: 0;
  width: var(--breiteLinkeSpalte);
  border: 1px solid #42210B;
  margin-left: 0;
  overflow: hidden;
}
.contentelement.marginalien .bu {
  padding: 10px;
}
.contentelement.marginalien .bu :last-child {
  margin-bottom: 0;
}
.contenttext.marginalien {
  padding: 20px;
}
.contenttext.marginalien :first-child {
  margin-top: 0px;
}
.contenttext.marginalien :last-child {
  margin-top: 0px;
}
div.marginalien:first-child {
  margin-top: 200px;
}
.startSeite div.marginalien:first-child {
  margin-top: 0px;
}
.startSeite .spalteGesamt div.marginalien:first-child {
  margin-top: 180px;
}
.menu .menu__list {
  display: flex;
  list-style-type: none;
}
.menu .menu__list--level-2 {
  position: absolute;
  flex-direction: column;
  display: none;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.menu .menu__item:hover .menu__list,
.menu .menu__item:focus-within .menu__list {
  display: flex;
}
.menu .menu__item--level-1 + li {
  margin-left: 5px;
}
.menu .menu__link {
  display: block;
  padding: 7px 9px;
  font-size: 1.1rem;
  color: black;
  position: relative;
  background-color: white;
  border: 1px solid white;
  transition: 200ms;
  opacity: 0.95;
}
.menu .menu__link:hover,
.menu .menu__link:focus {
  border-color: #f7931e;
  color: #f7931e;
  opacity: 1;
}
.menu .menu__link--active {
  border-color: #42210B;
}
.menu .menu__item--parent > .menu__link {
  padding-right: 30px;
  background-image: url("/static/img/arrow_bottom.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
}
#menuIcon {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  z-index: 110;
}
#menuIcon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 6px;
  left: 0;
  background-color: black;
  transition: all 0.5s;
}
#menuIcon span:nth-of-type(2) {
  top: 24px;
  transition: all 0.4s;
}
#menuIcon span:nth-of-type(3) {
  top: 42px;
}
#menuIcon:hover span {
  background-color: #f7931e;
}
#menuIcon.open span {
  background-color: #f7931e;
}
#menuIcon.open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 24px;
}
#menuIcon.open span:nth-of-type(2) {
  left: 20px;
  opacity: 0;
  width: 0;
}
#menuIcon.open span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
}
.skip-navigation {
  background-color: #42210B;
  padding: 0.5em 0.75em;
  color: white;
  transition: 500ms;
  transform: translateY(-120%);
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 0 0 15px 15px;
  position: absolute;
  width: max-content;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
}
.skip-navigation:focus {
  transform: translateY(0);
  background-color: #f7931e;
  outline: none;
}
#page h1,
#tinymce h1,
#page h2,
#tinymce h2,
#page h3,
#tinymce h3,
#page h4,
#tinymce h4,
#page h5,
#tinymce h5 {
  font-family: 'BebasNeue', sans-serif;
  font-weight: 300;
  line-height: 100%;
  color: #42210B;
}
#page h1 strong,
#tinymce h1 strong,
#page h2 strong,
#tinymce h2 strong,
#page h3 strong,
#tinymce h3 strong,
#page h4 strong,
#tinymce h4 strong,
#page h5 strong,
#tinymce h5 strong {
  font-weight: 700;
  color: #bfa089;
}
#page h1,
#tinymce h1 {
  font-size: 3.4rem;
  margin-bottom: 0.25em;
}
#page h2,
#tinymce h2 {
  font-size: 2.7rem;
  font-weight: 400;
  margin: 1em 0 0.5em;
}
#page h3,
#tinymce h3 {
  font-size: 2rem;
  font-weight: 400;
  margin: 1em 0 0.5em;
}
#page h4,
#tinymce h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 1em 0 0.5em;
}
#page .terminitem h4,
#tinymce .terminitem h4 {
  hyphens: auto;
}
#page h5,
#tinymce h5 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 1em 0 0.5em;
}
#page h6,
#tinymce h6 {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: normal;
  margin-bottom: 0.5em;
}
#page h6 a,
#tinymce h6 a {
  font-weight: 700;
}
.contentelement p,
#tinymce p,
.contentelement li,
#tinymce li {
  font-size: 1.1rem;
  line-height: 140%;
}
.contentelement p strong,
#tinymce p strong,
.contentelement li strong,
#tinymce li strong {
  font-weight: 900;
  color: #42210B;
}
.contentelement p,
#tinymce p {
  margin-bottom: 0.5em;
}
.contentelement img,
#tinymce img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.contentelement ul,
#tinymce ul,
.contentelement ol,
#tinymce ol {
  list-style-type: none;
  margin-bottom: 10px;
}
.contentelement ul li,
#tinymce ul li,
.contentelement ol li,
#tinymce ol li {
  padding-left: 15px;
  margin-bottom: 7px;
  position: relative;
}
.contentelement ul li::before,
#tinymce ul li::before,
.contentelement ol li::before,
#tinymce ol li::before {
  content: "";
  display: block;
  position: absolute;
}
.contentelement ul li,
#tinymce ul li {
  padding-left: 15px;
  margin-bottom: 7px;
}
.contentelement ul li::before,
#tinymce ul li::before {
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #bfa089;
  border-radius: 50%;
}
.contentelement ol,
#tinymce ol {
  counter-reset: ordered-list;
}
.contentelement ol li,
#tinymce ol li {
  padding-left: 20px;
  counter-increment: ordered-list;
}
.contentelement ol li::before,
#tinymce ol li::before {
  content: counter(ordered-list) ". ";
  text-align: right;
  color: #bfa089;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.contentelement a,
#tinymce a {
  color: #f7931e;
  font-weight: 900;
}
.contentelement a:hover,
#tinymce a:hover,
.contentelement a:focus,
#tinymce a:focus {
  text-decoration: underline;
}
.terminitem a {
  color: #f7931e;
  font-weight: 900;
}
.terminitem a:hover,
.terminitem a:focus {
  text-decoration: underline;
}
p.predigtwort,
blockquote {
  border-left: 1px solid #bfa089;
  padding-left: 10px;
  font-style: italic;
  padding-bottom: 10px;
  margin: 0px;
}
p.predigtwort:last-of-type {
  margin-bottom: 20px;
  padding-bottom: 0px;
}
ul#filter {
  margin-top: 10px;
}
.contentdownload {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contentdownload .downloadicon {
  background-image: url("/static/img/pdfIcon.svg");
  background-repeat: no-repeat;
  width: 36px;
  height: 46px;
  background-size: 100%;
  margin-right: 10px;
}
.contentdownload .bu {
  padding: unset;
  background-color: unset;
  color: unset;
  margin-bottom: unset;
  font-size: 18px;
  line-height: 140%;
}
.contentdownload .bu p {
  margin: 5px 0 !important;
}
footer {
  width: 100%;
  max-width: calc(var(--maximaleSeitenbreite) + 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.fab {
  color: #f7931e;
  font-size: 1.2rem;
}
.fab + .fab {
  margin-left: 10px;
}
@media (max-width: 1300px) {
  :root {
    --breiteLinkeSpalte: 230px;
    --lueckeSpalten: 40px;
  }
  #logo {
    font-size: 34px;
  }
  #content {
    margin-top: -80px;
  }
}
@media (max-width: 1200px) {
  :root {
    --breiteLinkeSpalte: 280px;
    --lueckeSpalten: 40px;
  }
  #logo {
    font-size: 46px;
  }
  section .content {
    padding-right: 0;
  }
  .contenttext,
  .contentbild {
    max-width: 800px;
  }
  header .menu {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #eee;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s, left 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .menu #menuMain {
    margin-left: 0;
    order: 1;
    padding: 30px 0;
  }
  header .menu.visible {
    left: 0;
    opacity: 1;
    height: 100vh;
    overflow: scroll;
  }
  header .menu .menu__list {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  header .menu .menu__list--level-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: unset;
    position: relative;
  }
  header .menu .menu__item--level-1 + li {
    margin-left: unset;
  }
  header .menu .menu__link {
    text-align: center;
    border: 0px solid white;
  }
  header .menu .menu__link--level-1 {
    font-size: 1.6rem;
    margin-top: 0.7em;
  }
  header .menu .menu__item--parent > .menu__link {
    background: none;
  }
  #menuIcon {
    display: block;
    right: 30px;
  }
}
@media (max-width: 1024px) {
  header {
    padding-top: 20px;
  }
  #content {
    margin-top: 50px;
  }
  .contentelement.marginalien {
    position: static;
    width: 100%;
    max-width: 300px;
  }
  .contenttext,
  .contentbild {
    margin-left: 0;
  }
  .startSeite .spalteGesamt div.marginalien:first-child {
    margin-top: 20px;
  }
}
#termine {
  margin-top: 4em;
  margin-bottom: 4em;
}
.swiper {
  width: 100%;
}
.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
}
#page .terminitem {
  border: 1px solid #42210B;
  margin-bottom: 0px;
  position: relative;
  background-color: white;
  color: #292929;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
#page .terminitem::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #f7931e;
  left: 5px;
  top: 5px;
  z-index: -1;
}
#page .terminitem.inaktiv,
#page .terminitem.inaktiv::after {
  border-color: red;
}
.terminbild {
  background-color: #E8E3DF;
}
.terminbild .platzhalter,
.terminbild img {
  aspect-ratio: 5 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.termintext {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.termintext h4 {
  position: relative;
  line-height: 110%;
  margin-bottom: 0.25em;
  font-weight: 400;
}
.termintext h4::before {
  content: url("/static/img/arrow_right.svg");
  display: inline-block;
  position: absolute;
  width: 14px;
  left: 0px;
  top: 1px;
}
.terminMonat {
  width: 100%;
}
.date {
  padding-top: 0.5em;
  font-weight: 900;
  color: #42210B;
}
.trenner {
  color: #bfa089;
  font-weight: 300;
}
#page .terminitem h4 {
  font-size: 1.5rem;
  color: #bfa089;
  padding-left: 20px;
}
#page .terminitem .date {
  margin-top: auto;
}
div.rM {
  text-align: right;
}
.readMore {
  padding: 2px 5px;
  background-color: #f7931e;
  color: white;
  font-weight: 900;
  cursor: pointer;
  display: inline-block;
  width: auto;
}
.readMore:hover,
.readMore:focus {
  text-decoration: underline;
}
.aufgeklappt .kurzbeschreibung,
.langbeschreibung {
  display: none;
}
.aufgeklappt .langbeschreibung {
  display: block;
}
.swiper-controls {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: 24px;
}
.swiper-controls .swiper-pagination {
  --swiper-pagination-color: #bfa089;
  --swiper-pagination-border-color: var(--swiper-pagination-color);
  --swiper-pagination-bullet-inactive-color: white;
  --swiper-pagination-bullet-inactive-border-color: #f7931e;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-width);
  position: relative;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet {
  display: block;
}
.swiper-controls .swiper-pagination-bullet {
  border-width: 1px;
  border-style: solid;
  border-color: var(--swiper-pagination-bullet-inactive-border-color);
}
.swiper-controls .swiper-pagination-bullet-active {
  border-color: var(--swiper-pagination-border-color);
}
.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  position: static;
  cursor: pointer;
}
.swiper-controls .swiper-button-next::after,
.swiper-controls .swiper-button-prev::after {
  content: "";
  background-image: url("/static/img/arrow_right_slim.svg");
  background-repeat: no-repeat;
  width: 21px;
  height: 34px;
  display: block;
}
.swiper-controls .swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}
.swiper-controls .swiper-button-prev::after {
  transform: rotate(180deg);
}
@media (min-width: 600px) {
  .swiper-controls {
    display: none;
  }
  .swiper-wrapper {
    flex-wrap: wrap;
  }
  #page .terminitem:nth-of-type(4n - 3),
  #page .terminitem:nth-of-type(4n) {
    width: calc(66.66% - 12px);
    margin-bottom: 24px;
  }
  #page .terminitem:nth-of-type(4n - 3) .termintext,
  #page .terminitem:nth-of-type(4n) .termintext {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding-left: 40px;
  }
  #page .terminitem:nth-of-type(4n - 3) .readMore,
  #page .terminitem:nth-of-type(4n) .readMore {
    color: white;
  }
  #page .terminitem:nth-of-type(4n - 3) h4,
  #page .terminitem:nth-of-type(4n) h4 {
    font-size: 1.5rem;
    color: white;
    padding-left: 0px;
  }
  #page .terminitem:nth-of-type(4n - 3) h4::before,
  #page .terminitem:nth-of-type(4n) h4::before {
    width: 18px;
    left: -26px;
  }
  #page .terminitem:nth-of-type(4n - 3) .date,
  #page .terminitem:nth-of-type(4n) .date {
    color: white;
  }
  #page .terminitem:nth-of-type(4n - 2),
  #page .terminitem:nth-of-type(4n - 1) {
    width: calc(33.33% - 15px);
    margin-bottom: 24px;
  }
  .verwaltung .terminitem {
    width: calc(50% - 12px) !important;
  }
  .verwaltung .terminitem .termintext {
    position: static !important;
  }
  .sperrebene {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    opacity: 0.9;
    background: url(/static/img/close-button.svg) #292929;
    background-repeat: no-repeat;
    background-position: top 20px right 20px;
    background-size: 30px 30px;
  }
  .popup {
    background-color: #eee;
    position: fixed;
    z-index: 1005;
    padding: 20px;
    overflow: scroll;
    left: 50%;
    top: 50%;
    max-width: 800px;
    width: 100%;
    display: block;
    transform: translate(-50%, -50%);
    max-height: 90vh;
  }
  .popup .terminitem {
    width: 100%;
  }
  .popup .terminitem .termintext {
    position: static;
  }
  .popup .terminitem .termintext h4 {
    padding-left: 20px;
    font-weight: 700;
    font-size: 1.5em;
  }
}
@media (max-width: 599px) {
  div.rM {
    display: none;
  }
  div.langbeschreibung {
    display: block;
  }
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}
#terminselektor {
  margin-bottom: 50px;
}
#terminselektor ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: flex-start;
}
#terminselektor ul li {
  padding: 5px 8px;
  border: 1px solid #42210B;
  font-size: 1rem;
  color: #42210B;
  margin-bottom: 5px;
  margin-right: 5px;
  cursor: pointer;
}
#terminselektor ul li span {
  display: inline-block;
  background-color: white;
  border-radius: 0.5rem;
  min-width: 1rem;
  height: 1rem;
  margin-left: 5px;
  font-size: 0.8rem;
  padding: 0px 4px;
  line-height: 120%;
  border: 1px solid #bfa089;
}
#terminselektor ul li.aktiv {
  background-color: #bfa089;
  color: #42210B;
}
#terminselektor ul li.inaktiv {
  cursor: default;
  border: 1px solid #bfa089;
  color: #bfa089;
}
.terminbereich {
  padding: 5px 5px 5px 40px;
}
:host,
:root {
  --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(/static/fonts/FontAwesomeBrands/fa-brands-400.woff2) format("woff2"), url(/static/fonts/FontAwesomeBrands/fa-brands-400.ttf) format("truetype");
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
.fa-42-group:before,
.fa-innosoft:before {
  content: "\e080";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-youtube-square:before {
  content: "\f431";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-instagram-square:before {
  content: "\e055";
}
/*


.fa-accessible-icon:before {
    content: "\f368";
}

.fa-accusoft:before {
    content: "\f369";
}

.fa-adn:before {
    content: "\f170";
}

.fa-adversal:before {
    content: "\f36a";
}

.fa-affiliatetheme:before {
    content: "\f36b";
}

.fa-airbnb:before {
    content: "\f834";
}

.fa-algolia:before {
    content: "\f36c";
}

.fa-alipay:before {
    content: "\f642";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-amazon-pay:before {
    content: "\f42c";
}

.fa-amilia:before {
    content: "\f36d";
}

.fa-android:before {
    content: "\f17b";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-angrycreative:before {
    content: "\f36e";
}

.fa-angular:before {
    content: "\f420";
}

.fa-app-store:before {
    content: "\f36f";
}

.fa-app-store-ios:before {
    content: "\f370";
}

.fa-apper:before {
    content: "\f371";
}

.fa-apple:before {
    content: "\f179";
}

.fa-apple-pay:before {
    content: "\f415";
}

.fa-artstation:before {
    content: "\f77a";
}

.fa-asymmetrik:before {
    content: "\f372";
}

.fa-atlassian:before {
    content: "\f77b";
}

.fa-audible:before {
    content: "\f373";
}

.fa-autoprefixer:before {
    content: "\f41c";
}

.fa-avianex:before {
    content: "\f374";
}

.fa-aviato:before {
    content: "\f421";
}

.fa-aws:before {
    content: "\f375";
}

.fa-bandcamp:before {
    content: "\f2d5";
}

.fa-battle-net:before {
    content: "\f835";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-bilibili:before {
    content: "\e3d9";
}

.fa-bimobject:before {
    content: "\f378";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitcoin:before {
    content: "\f379";
}

.fa-bity:before {
    content: "\f37a";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-blackberry:before {
    content: "\f37b";
}

.fa-blogger:before {
    content: "\f37c";
}

.fa-blogger-b:before {
    content: "\f37d";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-bootstrap:before {
    content: "\f836";
}

.fa-bots:before {
    content: "\e340";
}

.fa-btc:before {
    content: "\f15a";
}

.fa-buffer:before {
    content: "\f837";
}

.fa-buromobelexperte:before {
    content: "\f37f";
}

.fa-buy-n-large:before {
    content: "\f8a6";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-canadian-maple-leaf:before {
    content: "\f785";
}

.fa-cc-amazon-pay:before {
    content: "\f42d";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-apple-pay:before {
    content: "\f416";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-centercode:before {
    content: "\f380";
}

.fa-centos:before {
    content: "\f789";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-chromecast:before {
    content: "\f838";
}

.fa-cloudflare:before {
    content: "\e07d";
}

.fa-cloudscale:before {
    content: "\f383";
}

.fa-cloudsmith:before {
    content: "\f384";
}

.fa-cloudversify:before {
    content: "\f385";
}

.fa-cmplid:before {
    content: "\e360";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-confluence:before {
    content: "\f78d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-cotton-bureau:before {
    content: "\f89e";
}

.fa-cpanel:before {
    content: "\f388";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-creative-commons-by:before {
    content: "\f4e7";
}

.fa-creative-commons-nc:before {
    content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea";
}

.fa-creative-commons-nd:before {
    content: "\f4eb";
}

.fa-creative-commons-pd:before {
    content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed";
}

.fa-creative-commons-remix:before {
    content: "\f4ee";
}

.fa-creative-commons-sa:before {
    content: "\f4ef";
}

.fa-creative-commons-sampling:before {
    content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1";
}

.fa-creative-commons-share:before {
    content: "\f4f2";
}

.fa-creative-commons-zero:before {
    content: "\f4f3";
}

.fa-critical-role:before {
    content: "\f6c9";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-css3-alt:before {
    content: "\f38b";
}

.fa-cuttlefish:before {
    content: "\f38c";
}

.fa-d-and-d:before {
    content: "\f38d";
}

.fa-d-and-d-beyond:before {
    content: "\f6ca";
}

.fa-dailymotion:before {
    content: "\e052";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-deezer:before {
    content: "\e077";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-deploydog:before {
    content: "\f38e";
}

.fa-deskpro:before {
    content: "\f38f";
}

.fa-dev:before {
    content: "\f6cc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-dhl:before {
    content: "\f790";
}

.fa-diaspora:before {
    content: "\f791";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-digital-ocean:before {
    content: "\f391";
}

.fa-discord:before {
    content: "\f392";
}

.fa-discourse:before {
    content: "\f393";
}

.fa-dochub:before {
    content: "\f394";
}

.fa-docker:before {
    content: "\f395";
}

.fa-draft2digital:before {
    content: "\f396";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-dribbble-square:before {
    content: "\f397";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-dyalog:before {
    content: "\f399";
}

.fa-earlybirds:before {
    content: "\f39a";
}

.fa-ebay:before {
    content: "\f4f4";
}

.fa-edge:before {
    content: "\f282";
}

.fa-edge-legacy:before {
    content: "\e078";
}

.fa-elementor:before {
    content: "\f430";
}

.fa-ello:before {
    content: "\f5f1";
}

.fa-ember:before {
    content: "\f423";
}

.fa-empire:before {
    content: "\f1d1";
}

.fa-envira:before {
    content: "\f299";
}

.fa-erlang:before {
    content: "\f39d";
}

.fa-ethereum:before {
    content: "\f42e";
}

.fa-etsy:before {
    content: "\f2d7";
}

.fa-evernote:before {
    content: "\f839";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-facebook-f:before {
    content: "\f39e";
}

.fa-facebook-messenger:before {
    content: "\f39f";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-fantasy-flight-games:before {
    content: "\f6dc";
}

.fa-fedex:before {
    content: "\f797";
}

.fa-fedora:before {
    content: "\f798";
}

.fa-figma:before {
    content: "\f799";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-firefox-browser:before {
    content: "\e007";
}

.fa-first-order:before {
    content: "\f2b0";
}

.fa-first-order-alt:before {
    content: "\f50a";
}

.fa-firstdraft:before {
    content: "\f3a1";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-flipboard:before {
    content: "\f44d";
}

.fa-fly:before {
    content: "\f417";
}

.fa-font-awesome-flag:before,
.fa-font-awesome-logo-full:before,
.fa-font-awesome:before {
    content: "\f2b4";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-fonticons-fi:before {
    content: "\f3a2";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-fort-awesome-alt:before {
    content: "\f3a3";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-free-code-camp:before {
    content: "\f2c5";
}

.fa-freebsd:before {
    content: "\f3a4";
}

.fa-fulcrum:before {
    content: "\f50b";
}

.fa-galactic-republic:before {
    content: "\f50c";
}

.fa-galactic-senate:before {
    content: "\f50d";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-git-alt:before {
    content: "\f841";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-github:before {
    content: "\f09b";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-gitkraken:before {
    content: "\f3a6";
}

.fa-gitlab:before {
    content: "\f296";
}

.fa-gitter:before {
    content: "\f426";
}

.fa-glide:before {
    content: "\f2a5";
}

.fa-glide-g:before {
    content: "\f2a6";
}

.fa-gofore:before {
    content: "\f3a7";
}

.fa-golang:before {
    content: "\e40f";
}

.fa-goodreads:before {
    content: "\f3a8";
}

.fa-goodreads-g:before {
    content: "\f3a9";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-google-drive:before {
    content: "\f3aa";
}

.fa-google-pay:before {
    content: "\e079";
}

.fa-google-play:before {
    content: "\f3ab";
}

.fa-google-plus:before {
    content: "\f2b3";
}

.fa-google-plus-g:before {
    content: "\f0d5";
}

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

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-gratipay:before {
    content: "\f184";
}

.fa-grav:before {
    content: "\f2d6";
}

.fa-gripfire:before {
    content: "\f3ac";
}

.fa-grunt:before {
    content: "\f3ad";
}

.fa-guilded:before {
    content: "\e07e";
}

.fa-gulp:before {
    content: "\f3ae";
}

.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-hacker-news-square:before {
    content: "\f3af";
}

.fa-hackerrank:before {
    content: "\f5f7";
}

.fa-hashnode:before {
    content: "\e499";
}

.fa-hips:before {
    content: "\f452";
}

.fa-hire-a-helper:before {
    content: "\f3b0";
}

.fa-hive:before {
    content: "\e07f";
}

.fa-hooli:before {
    content: "\f427";
}

.fa-hornbill:before {
    content: "\f592";
}

.fa-hotjar:before {
    content: "\f3b1";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-hubspot:before {
    content: "\f3b2";
}

.fa-ideal:before {
    content: "\e013";
}

.fa-imdb:before {
    content: "\f2d8";
}


.fa-instalod:before {
    content: "\e081";
}

.fa-intercom:before {
    content: "\f7af";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-invision:before {
    content: "\f7b0";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-itch-io:before {
    content: "\f83a";
}

.fa-itunes:before {
    content: "\f3b4";
}

.fa-itunes-note:before {
    content: "\f3b5";
}

.fa-java:before {
    content: "\f4e4";
}

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

.fa-jenkins:before {
    content: "\f3b6";
}

.fa-jira:before {
    content: "\f7b1";
}

.fa-joget:before {
    content: "\f3b7";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-js:before {
    content: "\f3b8";
}

.fa-js-square:before {
    content: "\f3b9";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-kaggle:before {
    content: "\f5fa";
}

.fa-keybase:before {
    content: "\f4f5";
}

.fa-keycdn:before {
    content: "\f3ba";
}

.fa-kickstarter:before {
    content: "\f3bb";
}

.fa-kickstarter-k:before {
    content: "\f3bc";
}

.fa-korvue:before {
    content: "\f42f";
}

.fa-laravel:before {
    content: "\f3bd";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-less:before {
    content: "\f41d";
}

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

.fa-linkedin:before {
    content: "\f08c";
}

.fa-linkedin-in:before {
    content: "\f0e1";
}

.fa-linode:before {
    content: "\f2b8";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-lyft:before {
    content: "\f3c3";
}

.fa-magento:before {
    content: "\f3c4";
}

.fa-mailchimp:before {
    content: "\f59e";
}

.fa-mandalorian:before {
    content: "\f50f";
}

.fa-markdown:before {
    content: "\f60f";
}

.fa-mastodon:before {
    content: "\f4f6";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-mdb:before {
    content: "\f8ca";
}

.fa-medapps:before {
    content: "\f3c6";
}

.fa-medium-m:before,
.fa-medium:before {
    content: "\f23a";
}

.fa-medrt:before {
    content: "\f3c8";
}

.fa-meetup:before {
    content: "\f2e0";
}

.fa-megaport:before {
    content: "\f5a3";
}

.fa-mendeley:before {
    content: "\f7b3";
}

.fa-microblog:before {
    content: "\e01a";
}

.fa-microsoft:before {
    content: "\f3ca";
}

.fa-mix:before {
    content: "\f3cb";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-mixer:before {
    content: "\e056";
}

.fa-mizuni:before {
    content: "\f3cc";
}

.fa-modx:before {
    content: "\f285";
}

.fa-monero:before {
    content: "\f3d0";
}

.fa-napster:before {
    content: "\f3d2";
}

.fa-neos:before {
    content: "\f612";
}

.fa-nimblr:before {
    content: "\f5a8";
}

.fa-node:before {
    content: "\f419";
}

.fa-node-js:before {
    content: "\f3d3";
}

.fa-npm:before {
    content: "\f3d4";
}

.fa-ns8:before {
    content: "\f3d5";
}

.fa-nutritionix:before {
    content: "\f3d6";
}

.fa-octopus-deploy:before {
    content: "\e082";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-old-republic:before {
    content: "\f510";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-orcid:before {
    content: "\f8d2";
}

.fa-osi:before {
    content: "\f41a";
}

.fa-padlet:before {
    content: "\e4a0";
}

.fa-page4:before {
    content: "\f3d7";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-palfed:before {
    content: "\f3d8";
}

.fa-patreon:before {
    content: "\f3d9";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-perbyte:before {
    content: "\e083";
}

.fa-periscope:before {
    content: "\f3da";
}

.fa-phabricator:before {
    content: "\f3db";
}

.fa-phoenix-framework:before {
    content: "\f3dc";
}

.fa-phoenix-squadron:before {
    content: "\f511";
}

.fa-php:before {
    content: "\f457";
}

.fa-pied-piper:before {
    content: "\f2ae";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-pied-piper-hat:before {
    content: "\f4e5";
}

.fa-pied-piper-pp:before {
    content: "\f1a7";
}

.fa-pied-piper-square:before {
    content: "\e01e";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-pix:before {
    content: "\e43a";
}

.fa-playstation:before {
    content: "\f3df";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-pushed:before {
    content: "\f3e1";
}

.fa-python:before {
    content: "\f3e2";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-quinscape:before {
    content: "\f459";
}

.fa-quora:before {
    content: "\f2c4";
}

.fa-r-project:before {
    content: "\f4f7";
}

.fa-raspberry-pi:before {
    content: "\f7bb";
}

.fa-ravelry:before {
    content: "\f2d9";
}

.fa-react:before {
    content: "\f41b";
}

.fa-reacteurope:before {
    content: "\f75d";
}

.fa-readme:before {
    content: "\f4d5";
}

.fa-rebel:before {
    content: "\f1d0";
}

.fa-red-river:before {
    content: "\f3e3";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-redhat:before {
    content: "\f7bc";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-replyd:before {
    content: "\f3e6";
}

.fa-researchgate:before {
    content: "\f4f8";
}

.fa-resolving:before {
    content: "\f3e7";
}

.fa-rev:before {
    content: "\f5b2";
}

.fa-rocketchat:before {
    content: "\f3e8";
}

.fa-rockrms:before {
    content: "\f3e9";
}

.fa-rust:before {
    content: "\e07a";
}

.fa-safari:before {
    content: "\f267";
}

.fa-salesforce:before {
    content: "\f83b";
}

.fa-sass:before {
    content: "\f41e";
}

.fa-schlix:before {
    content: "\f3ea";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-searchengin:before {
    content: "\f3eb";
}

.fa-sellcast:before {
    content: "\f2da";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-servicestack:before {
    content: "\f3ec";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-shopify:before {
    content: "\e057";
}

.fa-shopware:before {
    content: "\f5b5";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-sistrix:before {
    content: "\f3ee";
}

.fa-sith:before {
    content: "\f512";
}

.fa-sitrox:before {
    content: "\e44a";
}

.fa-sketch:before {
    content: "\f7c6";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-slack-hash:before,
.fa-slack:before {
    content: "\f198";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-snapchat-ghost:before,
.fa-snapchat:before {
    content: "\f2ab";
}

.fa-snapchat-square:before {
    content: "\f2ad";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-sourcetree:before {
    content: "\f7d3";
}

.fa-speakap:before {
    content: "\f3f3";
}

.fa-speaker-deck:before {
    content: "\f83c";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-square-font-awesome:before {
    content: "\f425";
}

.fa-font-awesome-alt:before,
.fa-square-font-awesome-stroke:before {
    content: "\f35c";
}

.fa-squarespace:before {
    content: "\f5be";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-stackpath:before {
    content: "\f842";
}

.fa-staylinked:before {
    content: "\f3f5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-steam-symbol:before {
    content: "\f3f6";
}

.fa-sticker-mule:before {
    content: "\f3f7";
}

.fa-strava:before {
    content: "\f428";
}

.fa-stripe:before {
    content: "\f429";
}

.fa-stripe-s:before {
    content: "\f42a";
}

.fa-studiovinari:before {
    content: "\f3f8";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-superpowers:before {
    content: "\f2dd";
}

.fa-supple:before {
    content: "\f3f9";
}

.fa-suse:before {
    content: "\f7d6";
}

.fa-swift:before {
    content: "\f8e1";
}

.fa-symfony:before {
    content: "\f83d";
}

.fa-teamspeak:before {
    content: "\f4f9";
}

.fa-telegram-plane:before,
.fa-telegram:before {
    content: "\f2c6";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-the-red-yeti:before {
    content: "\f69d";
}

.fa-themeco:before {
    content: "\f5c6";
}

.fa-themeisle:before {
    content: "\f2b2";
}

.fa-think-peaks:before {
    content: "\f731";
}

.fa-tiktok:before {
    content: "\e07b";
}

.fa-trade-federation:before {
    content: "\f513";
}

.fa-trello:before {
    content: "\f181";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-typo3:before {
    content: "\f42b";
}

.fa-uber:before {
    content: "\f402";
}

.fa-ubuntu:before {
    content: "\f7df";
}

.fa-uikit:before {
    content: "\f403";
}

.fa-umbraco:before {
    content: "\f8e8";
}

.fa-uncharted:before {
    content: "\e084";
}

.fa-uniregistry:before {
    content: "\f404";
}

.fa-unity:before {
    content: "\e049";
}

.fa-unsplash:before {
    content: "\e07c";
}

.fa-untappd:before {
    content: "\f405";
}

.fa-ups:before {
    content: "\f7e0";
}

.fa-usb:before {
    content: "\f287";
}

.fa-usps:before {
    content: "\f7e1";
}

.fa-ussunnah:before {
    content: "\f407";
}

.fa-vaadin:before {
    content: "\f408";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-viadeo:before {
    content: "\f2a9";
}

.fa-viadeo-square:before {
    content: "\f2aa";
}

.fa-viber:before {
    content: "\f409";
}

.fa-vimeo:before {
    content: "\f40a";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-vimeo-v:before {
    content: "\f27d";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-vk:before {
    content: "\f189";
}

.fa-vnv:before {
    content: "\f40b";
}

.fa-vuejs:before {
    content: "\f41f";
}

.fa-watchman-monitoring:before {
    content: "\e087";
}

.fa-waze:before {
    content: "\f83f";
}

.fa-weebly:before {
    content: "\f5cc";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-weixin:before {
    content: "\f1d7";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-whatsapp-square:before {
    content: "\f40c";
}

.fa-whmcs:before {
    content: "\f40d";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-wirsindhandwerk:before,
.fa-wsh:before {
    content: "\e2d0";
}

.fa-wix:before {
    content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
    content: "\f730";
}

.fa-wodu:before {
    content: "\e088";
}

.fa-wolf-pack-battalion:before {
    content: "\f514";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-wordpress-simple:before {
    content: "\f411";
}

.fa-wpbeginner:before {
    content: "\f297";
}

.fa-wpexplorer:before {
    content: "\f2de";
}

.fa-wpforms:before {
    content: "\f298";
}

.fa-wpressr:before {
    content: "\f3e4";
}

.fa-xbox:before {
    content: "\f412";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-y-combinator:before {
    content: "\f23b";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-yammer:before {
    content: "\f840";
}

.fa-yandex:before {
    content: "\f413";
}

.fa-yandex-international:before {
    content: "\f414";
}

.fa-yarn:before {
    content: "\f7e3";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-yoast:before {
    content: "\f2b1";
}



.fa-zhihu:before {
    content: "\f63f";
}

*/
