footer a {
  text-decoration: none;
  transition: all 0.5s ease 0s;
  color: inherit;
}

/* -------------------------- start fonts footer -------------------------- */

/** footer color dark **/
footer#footer[footer-color="green"] {
  background-color: var(--ast-global-color-4);
}

/** footer color green **/
footer#footer[footer-color="dark"] {
  background-color: var(--ast-global-color-0);
}

footer#footer[footer-color="dark"] .textwidget h4 {
  color: var(--ast-global-color-4);
}

footer#footer[footer-color="dark"] .textwidget p {
  color: var(--ast-global-color-1);
}

#footer .wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.inner-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  gap: var(--cont-gap);
}

.footer-wrapper-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-l);
}

#footer-mitte .textwidget {
  display: flex;
  flex-direction: row;
  gap: var(--gap-m);
}

/** BUTTONS **/

/** first button **/
/* default = white footer color */
#footer-mitte .footer-btn.btn-first {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mainfont) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: 500 !important;
  padding: 1.05em 1.8em !important;
  line-height: 1;
  height: auto;
  width: fit-content;
  transition: all 0.5s ease 0s;
  background-color: var(--ast-global-color-3);
  border: 1px solid var(--ast-global-color-3);
  color: var(--ast-global-color-1);
  border-radius: 500px;
  transition: all 0.5s ease-in-out;
}

.footer-btn:first-of-type::after {
  background-image: url(../img/button-arrow-white.svg);
}

#footer-mitte .footer-btn.btn-first:hover {
  border: 1px solid var(--ast-global-color-3);
  background: none;
  color: var(--ast-global-color-3);
}

.footer-btn:first-of-type:hover::after {
  background-image: url(../img/button-arrow.svg);
}

/* if footer color dark */
footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-first {
  background: none;
  color: var(--ast-global-color-4);
  border: 1px solid var(--ast-global-color-4);
}

footer#footer[footer-color="dark"] .footer-btn.btn-first::after,
footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-simple::after,
footer#footer[footer-color="green"]
  #footer-mitte
  .footer-btn.btn-first:hover::after {
  background-image: url(../img/button-arrow-green.svg);
}

footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-first:hover {
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-3);
  border: 1px solid var(--ast-global-color-4);
}

/* if footer color green */
footer#footer[footer-color="green"] #footer-mitte .footer-btn.btn-first {
  background: none;
  border: 1px solid var(--ast-global-color-3);
  color: var(--ast-global-color-3);
}

footer#footer[footer-color="green"] #footer-mitte .footer-btn.btn-first::after,
footer#footer[footer-color="green"] #footer-mitte .footer-btn.btn-simple::after,
footer#footer[footer-color="dark"]
  #footer-mitte
  .footer-btn.btn-first:hover::after {
  background-image: url(../img/button-arrow.svg);
}

footer#footer[footer-color="green"] #footer-mitte .footer-btn.btn-first:hover {
  background: var(--ast-global-color-3);
  border: 1px solid var(--ast-global-color-3);
  color: var(--ast-global-color-4);
}

/** -------------------- **/

/** simple button **/
/* default = footer color white */
#footer-mitte .footer-btn.btn-simple {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ast-global-color-3);
  gap: 10px;
  font-family: var(--mainfont) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  height: auto;
  transition: all 0.5s ease 0s;
  z-index: 9;
}

#footer-mitte .footer-btn.btn-simple::after {
  content: "";
  display: inline-block;
  --my-size: calc(var(--btn-font-size) + (1.05em * 2));
  background-color: var(--ast-global-color-3);
  width: var(--my-size);
  height: var(--my-size);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-image: url(../img/button-arrow-white.svg);
  background-size: 0.45em;
  z-index: 9 !important;
}

/* hover */
#footer-mitte .footer-btn.btn-simple::before {
  content: "";
  --my-size: calc(var(--btn-font-size) + (1.05em * 2));
  position: absolute;
  right: 0;
  width: var(--my-size);
  height: var(--my-size);
  background-color: var(--ast-global-color-3);
  border-radius: 3rem;
  transition: all 0.5s ease 0s;
}

#footer-mitte .footer-btn.btn-simple:hover::before {
  width: calc(100% + 25px);
  z-index: -10 !important;
}

#footer-mitte .footer-btn.btn-simple:hover {
  color: var(--ast-global-color-1);
  z-index: 9;
}

/* if footer color dark */
footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-simple {
  background: none;
  color: var(--ast-global-color-1);
}

footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-simple::after {
  background-color: transparent;
  border: 1px solid var(--ast-global-color-4);
}

footer#footer[footer-color="dark"]
  #footer-mitte
  .footer-btn.btn-simple::before {
  background-color: transparent;
}

footer#footer[footer-color="dark"]
  #footer-mitte
  .footer-btn.btn-simple:hover::before {
  background-color: var(--ast-global-color-4);
}

footer#footer[footer-color="dark"]
  #footer-mitte
  .footer-btn.btn-simple:hover::after {
  background-image: url(../img/button-arrow.svg);
}

footer#footer[footer-color="dark"] #footer-mitte .footer-btn.btn-simple:hover {
  color: var(--ast-global-color-0);
}

/* if footer color green */
footer#footer[footer-color="green"]
  #footer-mitte
  .footer-btn.btn-simple::after {
  background-color: transparent;
  border: 1px solid var(--ast-global-color-3);
}

footer#footer[footer-color="green"]
  #footer-mitte
  .footer-btn.btn-simple::before {
  background-color: transparent;
}

footer#footer[footer-color="green"] #footer-mitte .footer-btn.btn-simple:hover {
  color: var(--ast-global-color-4);
}

footer#footer[footer-color="green"]
  #footer-mitte
  .footer-btn.btn-simple:hover::before {
  background-color: var(--ast-global-color-3);
}

footer#footer[footer-color="green"]
  #footer-mitte
  .footer-btn.btn-simple:hover::after {
  background-image: url(../img/button-arrow-green.svg);
}

/** end buttons **/

.footer-wrapper-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--gap-l) * -1);
}

#footer-rechts .textwidget {
  display: flex;
  flex-direction: row;
}

#footer-rechts .textwidget a:hover {
  color: inherit;
}

#footer-rechts p {
  font-family: var(--mainfont);
  font-size: var(--h1-font-size);
  font-style: normal;
  font-weight: 400;
  line-height: 1.29;
}

#footer-rechts p:not(:last-child)::after {
  content: "|";
  color: inherit;
  margin: 0 var(--gap-s);
}

#footer-links,
#footer-mitte,
#footer-rechts,
#footer-claim {
  display: flex;
  text-align: center;
}

#footer-logo,
#footer-logo .ft-logo {
  width: 102vw;
}

#footer-logo .ft-logo img {
  --my-size: calc(var(--cont-gap) * 7);
  width: 100%;
  height: calc(var(--my-size) * 0.26);
}

div#footer-menu {
  padding: 3.7vw 0 3.7vw;
}

div#footer-menu * {
  list-style: none;
  padding: 0;
  font-family: "Urbanist";
  font-weight: 300;
  color: #000;
  letter-spacing: 0.025em;
  font-size: 17px;
}

/*----------------- SOCIAL SHARE -------------*/

.heateorSssSharing,
.heateorSssSharingButton {
  margin: 0;
}

.heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  margin-top: 1vw;
}

ul.heateor_sss_follow_ul li,
ul.heateor_sss_sharing_ul li {
  float: right !important;
}

/*----------------- END SOCIAL SHARE -------------*/

@media (max-width: 1500px) {
  /*----------------- ELEMENT -------------*/
  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 1200px) {
  /*----------------- ELEMENT -------------*/
  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 1024px) {
  /*----------------- ELEMENT -------------*/
  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 990px) {
  div#mobile-bar {
    display: flex;
  }
  .footer-wrapper-right {
    margin-bottom: var(--gap-s);
  }
}

@media (max-width: 576px) {
  footer .inner-wrap {
    width: 90vw;
  }

  footer #footer-mitte .textwidget {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-wrapper-right #footer-rechts {
    max-width: 95vw;
  }

  footer .footer-wrapper-right #footer-rechts .textwidget {
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .footer-wrapper-right #footer-rechts .textwidget p {
    font-size: 10px;
  }

  #footer-mitte .footer-btn.btn-first {
    padding: 1.05em 1em !important;
    gap: 5px;
  }

  #footer-mitte .footer-btn.btn-simple::before {
    display: none;
  }

  #footer-mitte .footer-btn.btn-simple::after {
    --my-size: calc(var(--btn-font-size) * 2 + 4px);
    background-size: 0.333em;
  }
}

@media (max-width: 440px) {
  #footer-rechts p:not(:last-child)::after {
    margin: 0 5px;
  }
}

@media (max-width: 320px) {
  /*----------------- ELEMENT -------------*/
  /*----------------- END ELEMENT ---------*/
}

#footer {
  content-visibility: visible !important;
}
