/*================================================================================================
    Start Call Action CSS
===================================================================================================*/
.bx-call-action {
  background-color: var(--bx-primary-color);
}
.bx-call-action::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/patterns/white-pattern-group-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  left: 0;
  top: 0;
}
.bx-call-action__shapes {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bx-call-action__shapes .shape-1 {
  position: absolute;
  left: 18%;
  top: 28%;
}
.bx-call-action__shapes .shape-2 {
  position: absolute;
  right: 22%;
  bottom: 24%;
}
.bx-call-action__content .sm-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.15px;
  color: #60726c;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-block;
  background: #f0f0f0;
}

.bx-call-action__content .title {
  margin: 0;
  margin-top: 24px;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.48px;
  color: var(--bx-white-color);
}
.bx-call-action__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 32px;
}
.bx-call-action__btn .bx-btn,
.bx-call-action__btn .bx-btn.outline-btn:hover {
  background: var(--bx-title-color);
  color: var(--bx-white-color);
  border: 1px solid transparent;
}
.bx-call-action__btn .bx-btn.outline-btn,
.bx-call-action__btn .bx-btn:hover {
  background: transparent;
  color: var(--bx-title-color);
  border: 1px solid var(--bx-title-color);
}

.bx-call-action.sidebar-cta {
  padding: 40px 30px;
  border-radius: 8px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  /* Call Action  */
  .bx-call-action__content .title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* Call Action  */
  .bx-call-action__content .title {
    font-size: 32px;
    line-height: 130%;
  }
  .bx-call-action__shapes .shape-1 {
    left: 5%;
  }
  .bx-call-action__shapes .shape-2 {
    right: 5%;
  }
}

@media only screen and (max-width: 767px) {
  /* Call Action  */
  .bx-call-action__content .sm-title {
    font-size: 14px;
  }
  .bx-call-action__content .title {
    font-size: 26px;
    line-height: 130%;
  }
  .bx-call-action__btn {
    flex-direction: column;
    gap: 16px;
  }
  .bx-call-action__shapes .shape-1 {
    left: 5%;
    max-width: 24px;
  }
  .bx-call-action__shapes .shape-2 {
    right: 5%;
    max-width: 24px;
  }
}

/*================================================================================================
    End Call Action CSS
===================================================================================================*/
