.cta-background{
  margin-top: 120px;
  @media(max-width: 1024px){
    margin-top: 80px;
  }
  @media(max-width: 600px){
    margin-top: 64px;
  }
}

.cta-background__content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  @media(max-width: 700px){
    grid-template-columns: repeat(1, 1fr);
  }
}

.cta-background__text-wrapper{
  padding: 56px;
  background: #D3E8F9;
  height: 100%;
  position: relative;
  @media(max-width: 1200px){
    padding: 32px;
  }
  @media(max-width: 700px){
    padding: 32px 16px;
  }
}

.cta-background__brush-image{
  transform: translateY(100%);
  width: 56px;
  height: auto;
  position: absolute;
  right: 15%;
  bottom: 40%;
  @media(max-width: 1200px){
    right: 5%;
    bottom: 30%;
    max-width: 30px;
  }
  @media(max-width: 1024px){
    bottom: 28%;
  }
  @media(max-width: 700px){
    max-width: 24px;
    bottom: 26%;
  }
  @media(max-width: 375px){
    display: none;
  }
}

.cta-background__image{
  width: 100%;
  height: 100%;
  @media(max-width: 700px){
    grid-row: 1;
  }
}

.cta-background__title{
  color: #000;
  font-size: 55px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  @media(max-width: 1024px){
    font-size: 32px;
  }
  @media(max-width: 600px){
    font-size: 28px;
  }
}

.cta-background__text{
  color: #000;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0 !important;
  @media(max-width: 1024px){
    font-size: 14px;
    margin-top: 8px;
  }
}

.cta-background__buttons{
  display: flex;
  gap: 16px;
  margin-top: 32px;
  @media(max-width: 1024px){
    margin-top: 16px;
  }
}

.cta-background__button.button-bordered{
  background: #D3E8F9;
  border-color: #000;
}

@media(hover: hover){
  .cta-background__button.button-bordered:hover{
    background-color: black !important;
    border-color: #000;
  }
}