/***

==================================================================
	Cta Section
==================================================================

***/
.cta-section {
    position: relative;
    background: linear-gradient(270deg, #CB38FF 0%, #682FFF 100%);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}
.cta-1-bg {
    position: absolute;
    top: -50px;
    left: -356px;
    right: 0px;
    bottom: -48px;
    background-size: cover;
    -webkit-animation: service_hexagon_2 40s infinite linear;
    -moz-animation: service_hexagon_2 40s infinite linear;
    -o-animation: service_hexagon_2 40s infinite linear;
    animation: service_hexagon_2 40s infinite linear;
}
.section_heading_title_big,
.cta-section .heading_title,
.cta-section h2.heading_title {
    font-size: var(--h2-size);
    line-height: 1.2;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn-1 {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 20px 40px;
    text-align: center;
    z-index: 1;
    color: #111111;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    transition: .5s;
    background-color:rgba(255, 255, 255, 1);
    border-radius: 55px;
    margin-top: 10px;
}
.btn-1:hover{
	color: var(--white-color);

    /* Do a white inside border */
    outline: 2px solid var(--white-color);
}
.btn-1:before, .btn-1:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    content: '';
    z-index: -1;
    background: linear-gradient(270deg, #CB38FF 0%, #682FFF 100%);
    color: var(--white-color);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}
.btn-1:hover:before{
    width: 100%;
}
.btn-1:hover:after {
    border-radius: 55px;
    transform: scale(1) rotate(180deg);
}


/* --------------------------- */
.cta-section-two {
    position: relative;
    background-color: #19191A;
    padding: 90px 0 100px 0;
    overflow: hidden;
}

.cta-2-bg {
    position: absolute;
    top: -50px;
    left: -356px;
    right: 0px;
    bottom: -48px;
    background-size: cover;
}

.cta-section p {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}