@import 'typography.css';
@import 'variables.css';
@import 'fonts.css';
@import 'footer/footer.css';
@import 'header/header.css';
body {
  margin: 0;
  font-family: "Akzidenz-Grotesk Next", sans-serif;
  background-color: var(--green);
}

.article-body {
  padding-bottom: 80px;
}

.ldf-blur {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  -moz-backdrop-filter: blur(30px);
  -o-backdrop-filter: blur(30px);
}

.ldf-chevron {
  background-image: url("../images/chevron.png");
  display: block;
  height: 28px;
  min-height: 28px;
  width: 28px;
  min-width: 28px;
  background-size: cover;
  cursor: pointer;
  margin-right: 20px;
  margin-left: 25px;
  transition: 0.5s;
}
.ldf-chevron.hover-yellow:hover {
  background-image: url("../images/yellow-chevron.png");
  transition: 0.5s;
}

.ldf-chevron-three {
  background-image: url("../images/ldf-chevron-three.png");
  height: 26px;
  min-height: 26px;
  width: 10px;
  min-width: 10px;
  margin: 0 0 0 14px;
  transform: rotate(90deg);
}

.ldf-download-icon {
  background-image: url("../images/download.png");
  display: block;
  height: 20px;
  width: 20px;
  background-size: cover;
  cursor: pointer;
}

.ldf-chevron-left {
  transform: rotate(90deg);
}

.ldf-chevron-top {
  transform: rotate(180deg);
}

.ldf-chevron-right {
  transform: rotate(270deg);
}

.ldf-button {
  height: 50px;
  color: var(--white);
  background-color: var(--dark);
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 28px;
  letter-spacing: 3px;
  padding-left: 30px;
  transition: 0.5s;
  max-width: 100%;
  width: intrinsic; /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content; /* Firefox/Gecko */
  width: -webkit-max-content; /* Chrome */
}
.ldf-button:hover {
  transition: 0.5s;
  background-color: var(--yellow);
  color: var(--dark);
}
.ldf-button:hover .ldf-chevron-right {
  transition: 0.5s;
  -webkit-filter: invert(0%) !important;
  filter: invert(0%) !important;
}
.ldf-button-yellow {
  background-color: var(--yellow);
  color: var(--dark);
}
.ldf-button-yellow .ldf-chevron-right {
  -webkit-filter: invert(0%) !important;
  filter: invert(0%) !important;
}
.ldf-button-yellow:hover {
  transition: 0.5s;
  background-color: var(--dark);
  color: var(--white);
}
.ldf-button-yellow:hover .ldf-chevron-right {
  transition: 0.5s;
  -webkit-filter: invert(180%) !important;
  filter: invert(180%) !important;
}
.ldf-button .ldf-chevron-right {
  transform: rotate(270deg) scale(0.4);
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.ldf-yellow-part {
  width: 150px;
  background-color: var(--yellow);
  display: block;
  height: 48px;
  border-radius: 0 24px 24px 0;
}

.ldf-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ldf-heading-left {
  display: flex;
  align-items: center;
  gap: 25px;
}
.ldf-heading-right {
  margin-right: var(--right-space);
}

.thin-arrow {
  background-image: url("../images/thin-arrow.png");
  height: 80px;
  width: 98px;
}

.play-arrow {
  background-image: url("../images/play-arrow.jpg");
  height: 50px;
  width: 50px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
  .ldf-yellow-part {
    width: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .ldf-yellow-part {
    width: 80px;
  }
}
.scroll-top {
  display: flex !important;
  gap: 14px;
  transform: rotate(270deg);
  height: 50px !important;
  width: intrinsic !important; /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content !important; /* Firefox/Gecko */
  width: -webkit-max-content !important; /* Chrome */
  max-width: intrinsic !important; /* Safari/WebKit uses a non-standard name */
  max-width: -moz-max-content !important; /* Firefox/Gecko */
  max-width: -webkit-max-content !important; /* Chrome */
  margin-top: 90px;
  padding-right: 30px;
}
.scroll-top:hover {
  background-color: var(--dark) !important;
  color: var(--white) !important;
}
.scroll-top span {
  display: inline-block !important;
}

@media only screen and (max-width: 992px) {
  .scroll-top-mobile {
    background-image: url("../images/toppage-mobile.png");
    height: 60px;
    width: 60px;
    display: block !important;
    opacity: 0;
    transition: opacity 0.5s;
    position: fixed;
    z-index: 9999999;
    right: 14px;
    top: 50%;
  }
}

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