.cta {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #013866;
}

.cta__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cta__wrap {
    position: relative;
    z-index: 2;
    padding: 65px 0;
    text-align: center;
}

.cta__wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -240px;
    width: 501px;
    height: 501px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, 0);
}

.cta__text {
    min-height: 290px;
    max-width: 330px;
    margin: 0 auto;
    padding-bottom: 132px;

    & a:not(.btn) {
        display: inline-block;
    }
}

.cta__text h3  {
    line-height: 1.4em;
    min-height: 158px;
}

.cta__text a[href*="tel:"] {
    font-weight: 700;
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__btn {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media (min-width: 768px) {
    .cta__wrap {
        padding: 65px 0;
    }
    
    .cta__wrap::before {
        top: -600px;
        width: 906px;
        height: 906px;
    }
    
    .cta__text {
        max-width: 606px;
        margin: 0 auto;
        padding-bottom: 0;
    }
    
    .cta__text h3  {
        line-height: 1.42em;
        font-size: 35px;
        min-height: 0;
    }

    .cta__btn {
        position: relative;
    }
}

@media (min-width: 1200px) {
    .cta__wrap {
        padding: 70px 0;
    }
    
    .cta__wrap::before {
        left: 0;
        top: 0;
        width: calc(50% + 385px);
        height: 100%;
        border-radius: 0 300px 300px 0;
        background: #2C628B;
        transform: none;
    }

    .cta__content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .cta__text {
        min-height: 0;
        max-width: 890px;
        margin: 0;
    }

    .cta__text h3  {
        padding: 0;
    }
    
    .cta__btn {
        width: calc(100% - 890px);
        text-align: right;
    }



}















