.cta-section .default-section-header {
    align-items: start;
    grid-template-columns: 1fr 300px;
}
.icons-wrapper {
    display: flex
;
    justify-content: space-between;
    padding-top: 30px;
}
@media screen and (max-width: 600px) {
    .icons-wrapper svg {
        height: 30px;
        width: auto;
    }
}@media screen and (max-width: 900px){
    .cta-section .default-section-header {
        align-items: start;
        grid-template-columns: 1fr;
    }
     .icons-wrapper {
        gap: 20px;
        align-items: center;
     }
    .icons-wrapper::before {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        flex: 1;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #000 53.37%, rgba(0, 0, 0, 0.00) 100%);
    }
}

