.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  padding: 0;
}
.cta-text-col{
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}
.cta-img-col{
  display: flex;
  align-items: flex-end;
}
.cta-img-col img{
  height: auto;
}

[dir=rtl] .cta-section img {
  right: inherit;
  left: 0;
  -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
}
.cta-section .btn-secondary.btn-outline::after{
  content: url(../../assets/images/arrow-right-blue.svg);
}
.cta-section .btn-secondary.btn-outline:hover::after{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3049%) hue-rotate(156deg) brightness(116%) contrast(101%);
}
.cta-section .btn.btn-primary::after,
.cta-section .secondary.btn-outline-light::after{
  content: url(../../assets/images/arrow-right.svg);
}
.cta-section .btn.btn-primary:hover::after,
.cta-section .secondary.btn-outline-light:hover::after{
  filter: brightness(0) saturate(100%) invert(9%) sepia(83%) saturate(6659%) hue-rotate(240deg) brightness(66%) contrast(122%);
}

@media (max-width: 1024px) {
  .cta-section {
    background-position: 50%;
  }
}
@media (max-width: 991px) {
  .cta-section {
    background-position: 65%;
  }
  .cta-section .title {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    display: block;
    padding-top: 40px;
    padding-bottom: 0;
    background-position: 73% 100%;
    background-size: 320%;
  }
  .cta-text-col {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .cta-img-col {
    display: flex;
    align-items: flex-end;
    overflow-x: hidden;
    margin-top: -50px;
    margin-left: auto;
    max-width: 400px;
  }
  .cta-img-col img{
    min-width: 375px; 
    max-width: 421px;
    margin-left: 55px;
  }
  .cta-section img.cta-image{
    position: relative;
  } 
}