/* ==========================================================
   TK CTA
========================================================== */

.tkcta{
    padding:30px 0 80px;
    background:#fff;
}

.tkcta__inner{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    padding:70px 40px;

    background:linear-gradient(
        135deg,
        #0F766E 0%,
        #115E59 100%
    );

    box-shadow:
        0 20px 60px rgba(15,118,110,.18);

}

/* ===========================
   Background Shape
=========================== */

.tkcta__inner::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-150px;
    top:-150px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.tkcta__inner::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    left:-100px;
    bottom:-100px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

/* ===========================
   Content
=========================== */

.tkcta__content{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    text-align:center;

}

.tkcta__title{

    margin:0 0 22px;

    color:#fff;

    font-size:34px;

    font-weight:700;

    line-height:1.3;

    text-transform:uppercase;

}

.tkcta__subtitle{

    margin:0 auto;

    max-width:680px;

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

}

/* ===========================
   Button
=========================== */

.tkcta__actions{

    margin-top:40px;

}

.tkcta__button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:250px;

    height:58px;

    padding:0 34px;

    border-radius:999px;

    background:#F97316;

    color:#fff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

}

.tkcta__button:hover{

    background:#EA580C;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 14px 30px rgba(249,115,22,.35);

}

/* ===========================
   Contact
=========================== */

.tkcta__contact{

    margin-top:28px;

}

.tkcta__phone{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

}

.tkcta__email{

    color:rgba(255,255,255,.85);

    font-size:16px;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

    .tkcta{

        padding:70px 0;

    }

    .tkcta__inner{

        padding:60px 30px;

    }

    .tkcta__title{

        font-size:34px;

    }

}

@media(max-width:767px){

    .tkcta{

        padding:60px 0;

    }

    .tkcta__inner{

        padding:45px 24px;

        border-radius:22px;

    }

    .tkcta__title{

        font-size:28px;

    }

    .tkcta__subtitle{

        font-size:16px;

        line-height:1.8;

    }

    .tkcta__button{

        width:100%;

    }

    .tkcta__phone{

        font-size:20px;

    }

}