.cta-section {
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
    background-image:url(../images/cta-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
}

.cta-container{
    height: 100%;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.cta-text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
}

.cta-title {
    color:#E6EAF0;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.92px;
}

.cta-title span{
    color: #00AEE3;
}

.cta-paragraph {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 143%; /* 28.6px */
    letter-spacing: -0.8px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
}

.cta-button1{
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--BlueNormal);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: #fff;
  transition: .3s ease-in-out;
}

.cta-button1 path{
    transition: .3s ease-in-out;
}

.cta-button1:hover{
    background-color: #007DA3;
}

.cta-button2{
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 16px 24px;
  justify-content:space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: #000;
  transition: .3s ease-in-out;
}

.cta-button2 path{
    transition: .3s ease-in-out;
}

.cta-button2:hover{
  background-color: var(--BlueNormal);
  color: #fff;
}

.cta-button2:hover path{
    stroke: #fff;
}

@media only screen and (max-width: 1400px) {
    .cta-text-content {
        max-width: 500px;
    }
}

@media only screen and (max-width: 1200px) {

    .cta-container{
        background-position: left;
    }

    .cta-text-content {
        max-width: 600px;
    }

    .cta-link-content {
        flex-direction: initial;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

}

@media only screen and (max-width: 725px) {

    .cta-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
    }

    .cta-button2{
      width: -webkit-fill-available;
    }
    
    .cta-content {
        gap:24px;
    }

    .cta-buttons {
        flex-direction:column;
        align-items:center;
    }

    .cta-text-content {
        gap: 32px;
        max-width: none;
    }

}