.ctaBox {
    padding-top: 30px;
}

.ctaBox h1 {
    color: #fff;
}

.ctaBox .ctaRow {
    gap: 90px;
}
.ctaBox .iconRow {
    flex: 1;
    gap: 60px;
}
.ctaBox .listRow {
    flex: .6;
    gap: 20px;
    flex-direction: column;
}
.ctaBox .iconCol {
    gap: 40px;
}
.ctaBox .textCol {
    gap: 10px;
    color: #fff;
}
.ctaBox .listCol {
    gap: 40px;
    color: #fff;
}

.ctaBox .gradientBack {
    display: flex;
    background: rgba(120,33,80,1);
    background: linear-gradient(90deg, rgba(120,33,80,1) 0%, rgba(238,116,2,1) 100%);
}

.ctaBox .gradientFront {
    position: relative;
    width: 100%;
    background: rgba(177,25,73,1);
    background: linear-gradient(90deg, rgba(177,25,73,.64) 0%, rgba(207,0,85,.64) 40%, rgba(244,152,0,.64) 100%);
    margin-top: -30px;
    margin-bottom: 30px;
    padding: 80px 0 50px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
}

.iconCircle {
    width: 157px;
    height: 157px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iconCircle img {
    height: 50%;
}

.ctaBox button {
    white-space: nowrap;
}

.circleNumber {
    font-size: 28px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1280px)
{
    .ctaBox .ctaRow {
        align-items: start;
        flex-direction: column;
        gap: 60px;
    }
    .ctaBox .iconRow {
        flex-direction: column;
        gap: 40px;
    }
    .ctaBox .iconCol {
        flex-direction: row;
        gap: 20px;
    }
    .ctaBox .iconCircle {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 800px)
{
    .ctaBox .listCol {
        gap: 25px;
    }
    .circleNumber {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
}