.button-transparent-bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 2px solid var(--Azul-01, #008ac9);
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-right: 40px;
}
.button-transparent-bg:hover {
  border: 2px solid var(--Azul-03, #00a9e0);
  color: #00a9e0;
}
@media (max-width: 1280px) {
  .button-transparent-bg {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .button-transparent-bg {
    width: 100%;
  }
}
.button-transparent-bg:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 92%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: url("../../images/icon/arrow-blue.svg");
  background-size: cover;
  z-index: 0;
}
.button-transparent-bg .link-text {
  color: #008ac9;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button-blue-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--Azul-01, #008ac9);
  margin-top: 32px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .button-blue-bg {
    width: 100% !important;
  }
}
.button-blue-bg:hover {
  background: var(--Azul-03, #00a9e0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button-blue-bg[disabled] {
  background: #e4e5e4;
  color: #c1c1c1;
}
@media (max-width: 768px) {
  .button-blue-bg {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .button-blue-bg {
    margin-top: 0;
  }
}
@media (min-width: 769px) {
  .button-blue-bg {
    margin-top: 0;
  }
}
.button-blue-bg:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 92%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: url("../../images/icon/arrow-right.svg");
  background-size: cover;
  z-index: 0;
}
.button-blue-bg .link-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.button-transparent-white-bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 2px solid #fff;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-right: 40px;
}
.button-transparent-white-bg:hover {
  border: 2px solid #fcfcfc;
  color: #fcfcfc;
}
@media (max-width: 1280px) {
  .button-transparent-white-bg {
    width: 100% !important;
  }
}
@media (max-width: 1280px) {
  .button-transparent-white-bg {
    width: 100%;
  }
}
.button-transparent-white-bg:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 92%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: url("../../images/icon/arrow-right.svg");
  background-size: cover;
  z-index: 0;
}
.button-transparent-white-bg .link-text {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.paragraph--type--green-cta {
  background: -webkit-gradient(linear, left bottom, left top, from(#78B829), to(#78B829)), -webkit-gradient(linear, left top, left bottom, from(rgba(193, 209, 19, 0)), color-stop(80%, rgba(193, 209, 19, 0.16)));
  background: linear-gradient(0deg, #78B829, #78B829), linear-gradient(180deg, rgba(193, 209, 19, 0) 0%, rgba(193, 209, 19, 0.16) 80%);
  padding: 72px 0;
}
@media (max-width: 1280px) {
  .paragraph--type--green-cta {
    padding: 40px 16px;
  }
}
.paragraph--type--green-cta .green-cta--wrapper {
  margin: 0 auto;
  max-width: 1140px;
}
.paragraph--type--green-cta .green-cta--wrapper .green-cta-title {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  text-align: center;
  color: #fff;
}
@media (max-width: 1280px) {
  .paragraph--type--green-cta .green-cta--wrapper .green-cta-title {
    font-size: 32px;
    line-height: 38px;
  }
}
.paragraph--type--green-cta .green-cta--wrapper .green-cta-text {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media (max-width: 1280px) {
  .paragraph--type--green-cta .green-cta--wrapper .green-cta-text {
    font-size: 14px;
    line-height: 18px;
  }
}
.paragraph--type--green-cta .green-cta--wrapper .green-cta-text p {
  margin: 0;
}
.paragraph--type--green-cta .green-cta--wrapper .green-cta-button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  .paragraph--type--green-cta .green-cta--wrapper .green-cta-button {
    display: block;
    width: 100%;
  }
}
/*# sourceMappingURL=green-cta.css.map */
