.button {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.button:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .button:before {
    border-radius: 60px 40px 40px 0;
  }
}
.button:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .button:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .button {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .button:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .button:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .button:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .button:hover:before {
    width: calc(100% + 7px);
  }
}
.button:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.button:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.button:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .button:focus:before {
    width: calc(100% + 7px);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-medium.css.map */