@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import 'bootstrap/bootstrap.min.css';
@import 'fork-awesome/css/fork-awesome.min.css';
@import 'styles/inter.css';
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
}

.hamburger-box {
  width: 32px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 32px;
  height: 3px;
  background-color: #333333;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4.5714285714px, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

.page {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.page .wrapper {
  flex: 1;
}

.header {
  height: 50px;
  color: #333333;
  background-color: #a2c536 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 15px rgba(50, 50, 93, 0.2);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-social {
  height: inherit;
  display: none;
}
@media (min-width: 992px) {
  .header .header-social {
    display: block;
  }
}

.footer-strip {
  background: #a2c536;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .footer {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.footer .footer-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Inter";
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .footer .footer-title {
    margin: 0;
  }
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.footer ul li {
  display: block;
  margin-right: 10px;
  font-size: 0.8rem;
  color: #ffffff;
}
.footer ul li:last-of-type {
  margin-right: 0;
}
.footer ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
.footer ul li.copyright {
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 576px) {
  .footer ul {
    height: inherit;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }
  .footer ul li {
    list-style: none;
  }
  .footer ul li a {
    display: inline-block;
    height: 40px;
    padding: 10px 8px 10px 8px;
    font-weight: 300;
  }
}
@media (min-width: 768px) {
  .footer ul li {
    font-size: 0.9rem;
  }
}

.sub-footer-strip {
  background: rgb(129.0836653386, 156.9721115538, 43.0278884462);
  padding-top: 10px;
  padding-bottom: 10px;
}

.sub-footer {
  display: flex;
  justify-content: space-between;
}
.sub-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-footer ul li {
  list-style: none;
  display: block;
  font-size: 0.8rem;
  color: #fff;
}
.sub-footer ul li a {
  color: #fff;
  text-decoration: none;
}
.sub-footer ul li a:hover {
  text-decoration: underline;
}
.sub-footer ul li span {
  display: inline-block;
  height: 40px;
  padding: 10px 0px 10px 8px;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 576px) {
  .sub-footer ul li {
    display: inline-block;
    margin-left: 10px;
  }
  .sub-footer ul li:first-of-type {
    margin-left: 0;
  }
}

.logo {
  display: none;
}
@media (min-width: 576px) {
  .logo {
    display: block;
    width: 180px;
  }
}
.logo img {
  width: 100%;
  height: auto;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-mobile {
  display: block;
  width: 180px;
}
@media (min-width: 576px) {
  .logo-mobile {
    display: none;
  }
}
.logo-mobile img {
  width: 100%;
  height: auto;
}
.logo-mobile a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-menu {
  height: inherit;
  display: none;
}
@media (min-width: 768px) {
  .main-menu {
    display: block;
  }
}
.main-menu > ul {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu > ul > li {
  height: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu > ul > li:last-of-type {
  margin: 0;
}
.main-menu > ul > li > a {
  height: inherit;
  display: inline-block;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  color: inherit;
  padding: 10px 14px 10px 14px;
  text-decoration: none;
}
.main-menu > ul > li > a:hover {
  background: #333333;
  color: #fff;
  text-decoration: none;
}
.main-menu > ul > li.active > a {
  background: #333333;
  text-decoration: none;
  color: #fff;
}
.main-menu > ul > li.active > a:hover {
  text-decoration: none;
  background: #333333;
  transition: all 225ms ease-in 0s;
  color: #fff;
}
.main-menu > ul > li.active > a span {
  display: block;
}
.main-menu > ul > li.active ul.sub-menu.hidden {
  display: flex;
  opacity: 0;
  transition: all 225ms ease-in 0s;
  z-index: 1;
}
.main-menu > ul > li.active ul.sub-menu {
  display: flex;
  opacity: 0.8;
  transition: all 225ms ease-in 0s;
}

.button_container {
  position: fixed;
  top: 5%;
  right: 2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button_container span {
  background: #333333;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}

.main-menu-mobile {
  position: fixed;
  background: #333333;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-menu-mobile.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
  z-index: 10;
}
.main-menu-mobile.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.main-menu-mobile.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.main-menu-mobile.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.main-menu-mobile.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.main-menu-mobile.open li:nth-of-type(5) {
  animation-delay: 0.55s;
}
.main-menu-mobile.open li:nth-of-type(6) {
  animation-delay: 0.6s;
}
.main-menu-mobile ul {
  font-size: 2rem;
  font-family: "Inter";
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0;
}
.main-menu-mobile ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.main-menu-mobile ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.main-menu-mobile ul li a:hover:after, .main-menu-mobile ul li a:focus:after, .main-menu-mobile ul li a:active:after {
  width: 100%;
}
.main-menu-mobile ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.lock-scroll {
  overflow: hidden;
}

ul.social {
  height: inherit;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
}
ul.social svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}
ul.social li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.social li:last-of-type {
  margin: 0;
}
ul.social li a {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  padding: 8px;
  display: block;
}
ul.social li a span {
  font-size: 24px;
}

.hamburger {
  padding: 0;
  padding-top: 10px;
  outline: none;
  z-index: 10;
  cursor: pointer;
  height: 40px;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger:focus {
  outline: none;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
  background: #333333;
}
.hamburger .hamburger-inner::after {
  width: 18px;
  right: 0;
}
.hamburger.is-active .hamburger-inner::after {
  width: inherit;
  right: unset;
}

.button {
  white-space: nowrap;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #333333;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.button:hover {
  color: #fff;
  background-color: rgb(76.5, 76.5, 76.5);
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.title-1 {
  color: #333333;
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "Inter";
}
@media (min-width: 768px) {
  .title-1 {
    font-size: 3rem;
  }
}
.title-1.black {
  color: #222222;
}

.title-2 {
  font-family: "Inter";
  font-weight: light;
  color: #333333;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .title-2 {
    font-size: 4rem;
  }
}
.title-2 a {
  display: block;
}

.title-3 {
  font-family: "Inter";
  font-weight: light;
  color: #333333;
  font-size: 1.6rem;
}
@media (min-width: 576px) {
  .title-3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .title-3 {
    font-size: 2rem;
  }
}
.title-3 a {
  display: block;
}

.content ul,
.content ol {
  margin-top: 10px;
  margin-bottom: 20px;
}
.content ul li,
.content ol li {
  margin-bottom: 5px;
  margin-left: 20px;
}
.content a {
  text-decoration: underline;
}
.content p {
  color: rgb(78, 78, 78);
  font-family: "Inter";
}
.content h1 {
  font-family: "Inter";
  line-height: 1.2;
  font-weight: 300;
  color: #333333;
}
@media (min-width: 768px) {
  .content h1 {
    line-height: 1.2;
    font-weight: 300;
  }
}
.content h2 {
  font-family: "Inter";
  line-height: 1.4;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
  color: #333333;
}
@media (min-width: 768px) {
  .content h2 {
    line-height: 1.4;
  }
}
.content h3 {
  color: #333333;
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .content h3 {
    line-height: 1.4;
    letter-spacing: 1.8px;
    font-weight: 200;
  }
}

.intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 100px;
}
@media (min-width: 576px) {
  .intro {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .intro {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .intro {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
.intro h1 {
  color: #000000;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Inter";
  width: 70%;
}
@media (min-width: 576px) {
  .intro h1 {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .intro h1 {
    font-size: 35px;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .intro h1 {
    font-size: 35px;
    width: 50%;
  }
}
.intro p {
  width: 80%;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.4;
  color: #ffffff;
}
@media (min-width: 576px) {
  .intro p {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .intro p {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .intro p {
    width: 40%;
  }
}

.intro-small {
  padding-top: 100px;
  padding-bottom: 30px;
}

.strip {
  margin-top: 100px;
  background: white;
}

.strip-white {
  background: white;
}

.strip-diagonal {
  transform: skewY(5deg);
  padding-bottom: 50px;
  margin-bottom: 65px;
}
.strip-diagonal > div {
  transform: skewY(-5deg);
}

.whitebox {
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  box-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 10px;
}

.feature {
  height: 100%;
  border: 2px solid #eaeaea;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.feature .feature-image {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  margin-bottom: 20px;
  text-align: center;
}
.feature img {
  width: 100%;
  height: auto;
}
.feature .feature-title {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.feature .feature-content {
  margin-bottom: 0;
  margin-top: auto;
}
.feature .feature-content p {
  margin: 0;
}
.feature .feature-content p strong {
  color: #a2c536;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}
.feature .feature-content p em {
  color: #333333;
  font-style: normal;
}

.referenz {
  height: 220px;
  border: 2px solid #eaeaea;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  vertical-align: middle;
}
.referenz .referenz-image {
  padding-top: 50px;
  width: 180px;
  display: flex;
  text-align: center;
  top: 35%;
}
.referenz img {
  width: 100%;
  height: auto;
}

.partner {
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.partner .partner-image {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  margin-bottom: 20px;
  text-align: center;
}
.partner img {
  height: auto;
}
.partner .partner-title {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.partner .partner-content {
  margin-bottom: 0;
  margin-top: auto;
}
.partner .partner-content p {
  margin: 0;
}
.partner .partner-content p strong {
  color: #a2c536;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}
.partner .partner-content p em {
  color: #333333;
  font-style: normal;
}

/* sidebar */
/* the basic width */
/* screen width: >= 1650px */
/* other framework sizes */
/* screen width: < 850px */
/* syntax highlight */
/* fonts */
/* Less than the given width */
/* Less than or equal to the given width */
h5, h4, h3, h2, h1 {
  color: var(--heading-color);
  font-weight: 400;
  font-family: Lato, "Microsoft Yahei", sans-serif;
  scroll-margin-top: 3.5rem;
}

h5 .anchor, h4 .anchor, h3 .anchor, h2 .anchor {
  font-size: 80%;
}

@media (hover: hover) {
  h5 .anchor, h4 .anchor, h3 .anchor, h2 .anchor {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease-in, visibility 0s ease-in 0.25s;
  }
  h5:hover .anchor, h4:hover .anchor, h3:hover .anchor, h2:hover .anchor {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease-in, visibility 0s ease-in 0s;
  }
}
.tag:hover {
  background: var(--tag-hover);
  transition: background 0.35s ease-in-out;
}

.table-wrapper > table tbody tr td, .table-wrapper > table thead th {
  padding: 0.4rem 1rem;
  font-size: 95%;
  white-space: nowrap;
}

footer a:hover, .post-meta a:not([class]):hover, .content a:not(.img-link):hover {
  color: #d2603a !important;
  border-bottom: 1px solid #d2603a;
  text-decoration: none;
}

a {
  color: var(--link-color);
}

.content a:not(.img-link) {
  border-bottom: 1px solid var(--link-underline-color);
}

i.far, i.fas, .content a.popup {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main .categories a:not(:hover),
main #tags a:not(:hover),
main #archives a:not(:hover) {
  border-bottom: none;
}

.post-meta em {
  font-style: normal;
}

blockquote[class^=prompt-], .preview-img, .preview-img img, .post-preview, .post-preview::before, .embed-video {
  border-radius: 10px;
}

.content a.popup + em, .embed-video + em, .embed-audio + em {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 80%;
  padding: 0;
  color: #6d6c6c;
}

footer em, footer a {
  color: var(--text-muted-highlight-color);
  font-weight: 600;
}

.post-meta {
  font-size: 0.85rem;
}

footer {
  font-size: 0.8rem;
}

.footnotes > ol > li:target, sup:target {
  background-color: var(--footnote-target-bg);
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  transition: background-color 1.75s ease-in-out;
}

:root {
  font-size: 16px;
}

@media all and (min-width: 850px) {
  html {
    overflow-y: scroll;
  }
}

body {
  background: var(--main-bg);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  font-family: "Inter";
}

@media all and (max-width: calc(850px - 1px)) {
  h1.dynamic-title {
    display: none;
  }
  h1.dynamic-title ~ .content {
    margin-top: 2.5rem;
  }
}

@media all and (min-width: 1650px) {
  main.col-12 {
    padding-right: 4.5rem !important;
  }
}

.preview-img {
  aspect-ratio: 40/21;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.preview-img:not(.no-bg) {
  background: var(--img-bg);
}
.preview-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#post-list .preview-img img {
  width: 100%;
}

.post-preview {
  border: 0;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}
.post-preview::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--card-hovor-bg);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.post-preview:hover::before {
  opacity: 0.3;
}

.content {
  font-size: 1.08rem;
  margin-top: 2rem;
  overflow-wrap: break-word;
  /* ul */
}
@media all and (min-width: 1200px) {
  .content {
    font-size: 1.03rem;
  }
}
.content a.popup {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: zoom-in;
}
.content ol:not([class]), .content ol.task-list,
.content ul:not([class]),
.content ul.task-list {
  -webkit-padding-start: 1.75rem;
  padding-inline-start: 1.75rem;
}
.content ol:not([class]) li, .content ol.task-list li,
.content ul:not([class]) li,
.content ul.task-list li {
  margin: 0.25rem 0;
  padding-left: 0.25rem;
}
.content ol:not([class]) ol,
.content ol:not([class]) ul, .content ol.task-list ol,
.content ol.task-list ul,
.content ul:not([class]) ol,
.content ul:not([class]) ul,
.content ul.task-list ol,
.content ul.task-list ul {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
  margin: 0.5rem 0;
}
.content ul.task-list {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
}
.content ul.task-list li {
  list-style-type: none;
  padding-left: 0;
  /* checkbox icon */
}
.content ul.task-list li > i {
  width: 2rem;
  margin-left: -1.25rem;
  color: var(--checkbox-color);
}
.content ul.task-list li > i.checked {
  color: var(--checkbox-checked-color);
}
.content ul.task-list li ul {
  -webkit-padding-start: 1.75rem;
  padding-inline-start: 1.75rem;
}
.content ul.task-list input[type=checkbox] {
  margin: 0 0.5rem 0.2rem -1.3rem;
  vertical-align: middle;
}
.content dl > dd {
  margin-left: 1rem;
}
.content ::marker {
  color: var(--text-muted-color);
}
@media all and (min-width: 850px) {
  .content .table-wrapper > table {
    min-width: 70%;
  }
}

/* .content */
.post-tag {
  display: inline-block;
  min-width: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--btn-border-color);
  padding: 0 0.4rem;
  color: var(--text-muted-color);
  line-height: 1.3rem;
}
.post-tag:not(:last-child) {
  margin-right: 0.2rem;
}

.rounded-10 {
  border-radius: 10px !important;
}

.img-link {
  color: transparent;
  display: inline-flex;
}

.shimmer {
  overflow: hidden;
  position: relative;
  background: var(--img-bg);
}
.shimmer::before {
  content: "";
  position: absolute;
  background: var(--shimmer-bg);
  height: 100%;
  width: 100%;
  -webkit-animation: shimmer 1.3s infinite;
  animation: shimmer 1.3s infinite;
}
@-webkit-keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.embed-video {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}
.embed-video.twitch {
  aspect-ratio: 310/189;
}
.embed-video.file {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  margin-bottom: 0;
}

.embed-audio {
  width: 100%;
  display: block;
}

/* --- Effects classes --- */
.flex-grow-1 {
  flex-grow: 1 !important;
}

.btn-box-shadow {
  box-shadow: var(--card-shadow);
}

/* overwrite bootstrap muted */
.text-muted {
  color: var(--text-muted-color) !important;
}

/* Overwrite bootstrap tooltip */
.tooltip-inner {
  font-size: 0.7rem;
  max-width: 220px;
  text-align: left;
}

/* Overwrite bootstrap outline button */
.btn.btn-outline-primary:not(.disabled):hover {
  border-color: #007bff !important;
}

.disabled {
  color: rgb(206, 196, 196);
  pointer-events: auto;
  cursor: not-allowed;
}

.hide-border-bottom {
  border-bottom: none !important;
}

.input-focus {
  box-shadow: none;
  border-color: var(--input-focus-border-color) !important;
  background: center !important;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.left {
  float: left;
  margin: 0.75rem 1rem 1rem 0;
}

.right {
  float: right;
  margin: 0.75rem 0 1rem 1rem;
}

/* --- Overriding --- */
/* mermaid */
.mermaid {
  text-align: center;
}

/* MathJax */
mjx-container {
  overflow-y: hidden;
  min-width: auto !important;
}

@media (hover: hover) {
  #sidebar ul > li:last-child::after {
    transition: top 0.5s ease;
  }
  .nav-link {
    transition: background-color 0.3s ease-in-out;
  }
  .post-preview {
    transition: background-color 0.35s ease-in-out;
  }
}
#mask {
  inset: 0 0 0 0;
}

#main-wrapper {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
@media all and (max-width: calc(850px - 1px)) {
  #main-wrapper {
    transition: transform 0.4s ease;
  }
}
@media all and (min-width: 850px) {
  #main-wrapper {
    margin-left: 260px;
  }
}
@media all and (min-width: 1650px) {
  #main-wrapper {
    margin-left: 300px;
  }
}
#main-wrapper > .container {
  min-height: 100vh;
  /* Pad horizontal */
}
@media all and (max-width: 768px) {
  #main-wrapper > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: calc(850px - 1px)) {
  #main-wrapper > .container {
    max-width: 100%;
  }
}
@media all and (min-width: 992px) and (max-width: calc(1200px - 1px)) {
  #main-wrapper > .container .col-lg-11 {
    flex: 0 0 96%;
    max-width: 96%;
  }
}
@media all and (max-width: calc(1200px - 1px)) {
  #main-wrapper > .container > .row {
    justify-content: center !important;
  }
}
@media all and (min-width: 1650px) {
  #main-wrapper > .container {
    max-width: 1250px;
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

/* --- basic wrappers --- */
#topbar-wrapper.row,
#main-wrapper > .container > .row,
#search-result-wrapper > .row {
  margin-left: 0;
  margin-right: 0;
}

@media all and (min-width: 1650px) {
  #tail-wrapper {
    padding-right: 4.5rem !important;
  }
}
#tail-wrapper > :not(script) {
  margin-top: 3rem;
}

/* sidebar */
/* the basic width */
/* screen width: >= 1650px */
/* other framework sizes */
/* screen width: < 850px */
/* syntax highlight */
/* fonts */
/* Less than the given width */
/* Less than or equal to the given width */
h1, h2, h3, h4, h5 {
  color: var(--heading-color);
  font-weight: 400;
  font-family: Lato, "Microsoft Yahei", sans-serif;
  scroll-margin-top: 3.5rem;
}

h2 .anchor, h3 .anchor, h4 .anchor, h5 .anchor {
  font-size: 80%;
}

@media (hover: hover) {
  h2 .anchor, h3 .anchor, h4 .anchor, h5 .anchor {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease-in, visibility 0s ease-in 0.25s;
  }
  h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease-in, visibility 0s ease-in 0s;
  }
}
.tag:hover {
  background: var(--tag-hover);
  transition: background 0.35s ease-in-out;
}

.table-wrapper > table thead th, .table-wrapper > table tbody tr td {
  padding: 0.4rem 1rem;
  font-size: 95%;
  white-space: nowrap;
}

.post-meta a:not([class]):hover, .content a:not(.img-link):hover, footer a:hover {
  color: #d2603a !important;
  border-bottom: 1px solid #d2603a;
  text-decoration: none;
}

a {
  color: var(--link-color);
}

.content a:not(.img-link) {
  border-bottom: 1px solid var(--link-underline-color);
}

.content a.popup, i.far, i.fas {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main .categories a:not(:hover),
main #tags a:not(:hover),
main #archives a:not(:hover) {
  border-bottom: none;
}

.post-meta em {
  font-style: normal;
}

.preview-img, .preview-img img, .post-preview, .post-preview::before, .embed-video, blockquote[class^=prompt-] {
  border-radius: 10px;
}

.content a.popup + em, .embed-video + em, .embed-audio + em {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 80%;
  padding: 0;
  color: #6d6c6c;
}

footer a, footer em {
  color: var(--text-muted-highlight-color);
  font-weight: 600;
}

.post-meta {
  font-size: 0.85rem;
}

footer {
  font-size: 0.8rem;
}

sup:target, .footnotes > ol > li:target {
  background-color: var(--footnote-target-bg);
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  transition: background-color 1.75s ease-in-out;
}

h1 {
  font-size: 2rem;
}

main h2 {
  margin: 2.5rem 0 1.25rem;
}
h2 {
  font-size: 1.54rem;
}

main h3 {
  margin: 2rem 0 1rem;
}
h3 {
  font-size: 1.36rem;
}

main h4 {
  margin: 2rem 0 1rem;
}
h4 {
  font-size: 1.18rem;
}

h5 {
  font-size: 1.05rem;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.35s ease-in-out;
}
.blur img {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}

blockquote {
  border-left: 0.125rem solid var(--blockquote-border-color);
  padding-left: 1rem;
  color: var(--blockquote-text-color);
  margin-top: 0.5rem;
}
blockquote > p:last-child {
  margin-bottom: 0;
}
blockquote[class^=prompt-] {
  border-left: 0;
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--prompt-text-color);
}
blockquote[class^=prompt-]::before {
  text-align: center;
  width: 3rem;
  position: absolute;
  left: 0.25rem;
  margin-top: 0.4rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
blockquote.prompt-tip {
  background-color: var(--prompt-tip-bg);
}
blockquote.prompt-tip::before {
  content: "\f0eb";
  color: var(--prompt-tip-icon-color);
  font: var(--fa-font-regular);
}
blockquote.prompt-info {
  background-color: var(--prompt-info-bg);
}
blockquote.prompt-info::before {
  content: "\f06a";
  color: var(--prompt-info-icon-color);
  font: var(--fa-font-solid);
  transform: rotate(180deg);
}
blockquote.prompt-warning {
  background-color: var(--prompt-warning-bg);
}
blockquote.prompt-warning::before {
  content: "\f06a";
  color: var(--prompt-warning-icon-color);
  font: var(--fa-font-solid);
}
blockquote.prompt-danger {
  background-color: var(--prompt-danger-bg);
}
blockquote.prompt-danger::before {
  content: "\f071";
  color: var(--prompt-danger-icon-color);
  font: var(--fa-font-solid);
}

kbd {
  font-family: Lato, sans-serif;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3rem;
  min-width: 1.75rem;
  text-align: center;
  margin: 0 0.3rem;
  padding-top: 0.1rem;
  color: var(--kbd-text-color);
  background-color: var(--kbd-bg-color);
  border-radius: 6px;
  border: solid 1px var(--kbd-wrap-color);
  box-shadow: inset 0 -2px 0 var(--kbd-wrap-color);
}

hr {
  border-color: var(--main-border-color);
  opacity: 1;
}

footer {
  background-color: var(--main-bg);
  height: 5rem;
  border-top: 1px solid var(--main-border-color);
}
footer p {
  text-align: center;
  margin-bottom: 0;
}

/* fontawesome icons */
main {
  line-height: 1.75;
}
main h1 {
  margin-top: 2rem;
}
@media all and (min-width: 850px) {
  main h1 {
    margin-top: 3rem;
  }
}
main p > a.popup:not(.normal):not(.left):not(.right) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 576px) {
  main .content > blockquote[class^=prompt-] {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    max-width: none;
  }
}

.footnotes > ol {
  padding-left: 2rem;
  margin-top: 0.5rem;
}
.footnotes > ol > li:not(:last-child) {
  margin-bottom: 0.3rem;
}
.footnotes > ol > li > p {
  margin-left: 0.25em;
  margin-top: 0;
  margin-bottom: 0;
}

a.footnote {
  margin-left: 1px;
  margin-right: 1px;
  padding-left: 2px;
  padding-right: 2px;
  border-bottom-style: none !important;
}

a.reversefootnote {
  font-size: 0.6rem;
  line-height: 1;
  position: relative;
  bottom: 0.25em;
  margin-left: 0.25em;
  border-bottom-style: none !important;
}

/* --- Begin of Markdown table style --- */
/* it will be created by Liquid */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  /* table */
}
.table-wrapper > table {
  min-width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  /* tbody */
}
.table-wrapper > table thead {
  border-bottom: solid 2px rgba(210, 215, 217, 0.75);
}
.table-wrapper > table tbody tr {
  border-bottom: 1px solid var(--tb-border-color);
}
.table-wrapper > table tbody tr:nth-child(2n) {
  background-color: var(--tb-even-bg);
}
.table-wrapper > table tbody tr:nth-child(2n+1) {
  background-color: var(--tb-odd-bg);
}
.page-home {
  background-image: url("../images/bg.png");
  background-size: cover;
}
@media (max-width: 767.98px) {
  .page-home .mainlogo {
    width: 0px;
    background-size: 0px;
  }
}
@media (min-width: 768px) {
  .page-home .mainlogo {
    width: 400px;
  }
}
@media (min-width: 992px) {
  .page-home .mainlogo {
    width: 500px;
  }
}
.page-home .intro {
  padding-top: 200px;
}
@media (max-width: 767.98px) {
  .page-home .intro {
    width: 0px;
    padding-top: 0px;
  }
}
.page-home .intro h1 {
  color: #ffffff;
  font-size: 65px;
}
.page-home .intro h5 {
  color: #ffffff;
}
.page-home .call {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  width: 100%;
  color: #a2c536;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 576px) {
  .page-home .call {
    align-items: center;
    flex-direction: row;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .page-home .call {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .page-home .call {
    width: 50%;
    float: left;
  }
}
.page-home .call .call-box-top {
  flex: 1 0 auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .page-home .call .call-box-top {
    padding: 20px;
  }
}
.page-home .call .call-box-bottom {
  flex: 0 0 auto;
  padding: 0 20px 20px 20px;
}
@media (min-width: 576px) {
  .page-home .call .call-box-bottom {
    padding: 20px;
  }
}
.page-home .call .call-name {
  font-size: 1.1rem;
  font-weight: bold;
}
.page-home .call svg {
  fill: rgb(235.4980079681, 243.1673306773, 211.8326693227);
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 100px;
  height: 100px;
}
@media (min-width: 576px) {
  .page-home .call svg {
    width: 120px;
    height: 120px;
  }
}
.page-home .news {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  width: 30%;
  color: #a2c536;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 576px) {
  .page-home .news {
    align-items: center;
    flex-direction: row;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .page-home .news {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .page-home .news {
    float: right;
    width: 40%;
  }
}
.page-home .news .news-box-top {
  flex: 1 0 auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .page-home .news .news-box-top {
    padding: 20px;
  }
}
.page-home .certified {
  background-image: url("/images/undraw_experts3_3njd.svg");
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: -100px 0;
  overflow: visible;
  position: relative;
  display: inherit;
  padding-top: 220px;
}
@media (min-width: 576px) {
  .page-home .certified {
    background-size: 90%;
    padding-top: 250px;
    background-position: -110px 30px;
  }
}
@media (min-width: 992px) {
  .page-home .certified {
    padding-top: 280px;
    background-size: 85%;
    background-position: -170px 0px;
  }
}
.page-home .certified h1 {
  text-align: right;
  float: right;
  color: #333333;
  margin-top: -30%;
  color: #333333;
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "Inter";
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .page-home .certified h1 {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .page-home .certified h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .page-home .certified h1 {
    margin-top: -20%;
    width: 70%;
  }
}

.team-summary {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.team-summary .team-image {
  flex: 0;
  margin-right: 10px;
}
.team-summary .team-image img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
.team-summary .team-meta {
  flex: 1;
}
.team-summary .team-meta h2 {
  margin: 0;
}
.team-summary .team-meta p {
  margin: 0;
}
.team-summary .team-content {
  flex: 1 0 100%;
}

.page-team-list {
  background-image: url("../images/undraw_hang_out_h9ud.svg");
  background-repeat: no-repeat;
  background-size: 115%;
  background-position: 49px -40px;
}
@media (min-width: 576px) {
  .page-team-list {
    background-size: 90%;
    background-position: 159px -40px;
  }
}
@media (min-width: 768px) {
  .page-team-list {
    background-size: 85%;
    background-position: 199px -80px;
  }
}
@media (min-width: 992px) {
  .page-team-list {
    background-size: 60%;
    background-position: 100% -110px;
  }
}

.testimonials-summary {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.testimonials-summary .testimonials-image {
  flex: 0;
  margin-right: 10px;
}
.testimonials-summary .testimonials-image img {
  width: 160px;
}
.testimonials-summary .testimonials-meta {
  flex: 1;
  margin-bottom: 10px;
}
.testimonials-summary .testimonials-meta p {
  margin: 0;
}
.testimonials-summary .testimonials-title {
  margin-bottom: 5px;
}
.testimonials-summary .testimonials-name {
  font-weight: bold;
  display: inline-block;
}
.testimonials-summary .testimonials-jobtitle {
  display: inline-block;
  color: #a2c536;
}
.testimonials-summary .testimonials-content {
  flex: 1 0 100%;
}
.testimonials-summary .testimonials-content blockquote {
  display: block;
  border-width: 2px 0 0 0;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 0.5em;
  margin: 1.5em 0;
  position: relative;
}
.testimonials-summary .testimonials-content blockquote:before {
  content: "“";
  position: absolute;
  top: 0em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 3rem;
  height: 2rem;
  font: 6em/1.08em "PT Sans", sans-serif;
  color: #333333;
  text-align: center;
}

.page-testimonials-list {
  background-repeat: no-repeat;
  background-size: 115%;
  background-position: 49px -40px;
}
@media (min-width: 576px) {
  .page-testimonials-list {
    background-size: 90%;
    background-position: 159px -40px;
  }
}
@media (min-width: 768px) {
  .page-testimonials-list {
    background-size: 85%;
    background-position: 199px -80px;
  }
}
@media (min-width: 992px) {
  .page-testimonials-list {
    background-size: 60%;
    background-position: 100% -110px;
  }
}

.page-services-list .intro {
  padding-top: 50px;
}
.page-services-list .intro h1 {
  color: #000000;
}
.page-services-list .green {
  background-color: lawngreen;
}
.page-services-list .yellow {
  background-color: yellow;
}
.page-services-list .red {
  background-color: red;
}
.page-services-list .gray {
  background-color: lightgray;
}
.page-services-list .sub {
  padding-left: 20px;
}

.page .image {
  border-radius: 5px;
}
@media (max-width: 1199.98px) {
  .page .image {
    width: 400px;
  }
}
.page .content-pagination {
  float: left;
  padding-bottom: 30px;
  padding-top: 20px;
  width: 400px;
  height: 150px;
}
@media (max-width: 1199.98px) {
  .page .content-pagination {
    width: 100%;
    height: 50px;
  }
}
.page .image-pagination {
  border-radius: 5px;
  width: 250px;
}
@media (max-width: 1199.98px) {
  .page .image-pagination {
    width: 0px;
  }
}

.page-services-single {
  background-color: white;
  background-attachment: fixed;
  background-size: cover;
}

.service-summary {
  display: flex;
  align-items: flex-start;
}
.service-summary .service-image {
  flex: 0 0 100px;
  margin-right: 10px;
}
.service-summary .service-image img {
  max-width: 100%;
  height: auto;
}
.service-summary .service-content {
  flex: 1;
}
.service-summary .service-content .service-title {
  font-family: "Inter";
  font-size: 1.3rem;
}
.service-summary .service-content p {
  color: #a2c536;
}

html {
  font-family: "Inter", sans-serif;
  -webkit-font-feature-settings: "salt" on, "frac" off, "liga" on, "calt" on, "tnum" on, "ss01" on, "ss03" on, "ss02" on;
  -moz-font-feature-settings: "salt" on, "frac" off, "liga" on, "calt" on, "tnum" on, "ss01" on, "ss03" on, "ss02" on;
  -ms-font-feature-settings: "salt" on, "frac" off, "liga" on, "calt" on, "tnum" on, "ss01" on, "ss03" on, "ss02" on;
  font-feature-settings: "salt" on, "frac" off, "liga" on, "calt" on, "tnum" on, "ss01" on, "ss03" on, "ss02" on;
}

.background-secondary {
  background-color: #a2c536;
}

.background-light {
  background-color: #a2c536;
}

.kis {
  color: #a2c536 !important;
}

.block {
  text-align: justify;
}

.more_docs {
  margin-top: 50px;
  margin-left: 20px;
  width: 300px;
}

.bold {
  font-weight: bold !important;
}

.shadow {
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.24) !important;
}

.support-headline {
  font-weight: bold;
}

.support-text {
  padding: 50px;
  font-size: 16px;
}

.nav-item a:hover {
  color: white !important;
}

a {
  color: #333333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: black !important;
}

.content a:hover {
  color: black !important;
}

.nav-link {
  height: inherit;
  display: inline-block;
  text-transform: uppercase !important;
  font-size: 0.9rem;
  font-weight: 400;
  color: inherit;
  padding: 10px 14px 10px 14px;
  margin: 5px;
}

.blog-date {
  float: left;
  width: 60px;
  height: 200px;
  margin-left: -50px;
  margin-right: 10px;
}
.blog-date .day {
  margin-top: -10px;
  font-weight: bold;
  font-size: 30px;
}
.blog-date .month {
  text-transform: uppercase !important;
  font-weight: thin;
  font-size: 25px;
}

.post_tags {
  font-weight: bolder;
  font-size: 13px;
}
.post_tags .tag {
  font-weight: lighter;
  font-size: 13px;
}

.pagination {
  margin-bottom: 50px;
  float: right;
  font-size: 15px;
}
.pagination .page-link {
  color: #000000;
  text-decoration: none;
}
.pagination .selected a {
  color: #198754;
}

.more_docs .tag {
  font-size: 13px;
  padding-right: 5px;
}
.more_docs .selected {
  color: #198754 !important;
}
.more_docs .contact {
  font-size: 13px;
}

/*! div style */
.image-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  padding: 4px;
}

.box {
  flex-basis: 25%;
  width: 100%;
  padding: 10px;
  margin: 2px;
}

.img-gallery {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.img-gallery:hover {
  transform: scale(1.05);
}

a[rel=external] {
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  position: relative;
  text-decoration: none;
}

a[rel=external]:after {
  content: "External Link";
  position: absolute;
  bottom: 130%;
  left: 20%;
  background: #a2c536;
  padding: 5px 15px;
  color: black;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a[rel=external]:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #a2c536;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  left: 30%;
  bottom: 90%;
}

a[rel=external]:hover:after {
  bottom: 100%;
}

a[rel=external]:hover:before {
  bottom: 70%;
}

a[rel=external]:hover:after, a:hover:before {
  opacity: 1;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125 !important;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #a2c536;
}

.userimage {
  margin-right: 20px;
  position: relative;
  width: 100px;
  height: 100px;
  border: 3px solid #fff;
  border-radius: 100%;
}

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