.cta-btn-glb {
  display: inline-block;
  margin-bottom: 3rem;
}
.cta-btn-glb .cta-btn-glb-lk {
  color: #243508;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.cta-btn-glb .cta-btn-glb-lk span {
  align-items: center;
  border: 2px solid #BFF355;
  background-color: #BFF355;
  color: #243508;
  display: flex;
  height: auto;
  font-family: "roobert_light";
  font-size: 2.5rem;
  line-height: 4rem;
  min-height: 60px;
  padding: 0.8rem 6.5rem 0.8rem 2rem;
  transition: all 0.4s ease;
  text-decoration: none;
}
.cta-btn-glb .cta-btn-glb-lk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease-in-out;
  z-index: 1;
}
.cta-btn-glb .cta-btn-glb-lk:hover::before {
  width: 100%;
}
.cta-btn-glb .cta-btn-glb-lk::after {
  background-image: url(../images/Common/cta-transform-arrow.svg);
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 40px);
  transition: transform 200ms linear;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.cta-btn-glb .cta-btn-glb-lk:hover::after {
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.cta-btn-glb.cta-btn-non-m-tp {
  margin-top: 0;
}
.cta-btn-glb.cta-btn-non-m-bt {
  margin-bottom: 0;
}