.elementor-414 .elementor-element.elementor-element-51d8df8{width:100%;max-width:100%;}.elementor-414 .elementor-element.elementor-element-72eaa4a{--display:flex;}.elementor-414 .elementor-element.elementor-element-ca8218a{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-0943833 *//* ==========================================
   TENXTEL SMART IVR
========================================== */

.tt-ivr-hero {
    width: 100%;
    padding: 75px 20px 85px;
    background: #ffffff !important;
    overflow: hidden;
    font-family: Inter, Arial, sans-serif;
}

.tt-ivr-container {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;

    align-items: center;
    gap: 45px;
}


/* ==========================================
   IMAGE AREA
========================================== */

.tt-ivr-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-ivr-image {
    position: relative;
    z-index: 5;

    width: 100%;

    display: flex;
    justify-content: center;

    animation: ttIvrFloat 5s ease-in-out infinite;
}

.tt-ivr-image img {
    display: block;

    width: 100%;
    max-width: 550px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 30px rgba(15, 23, 42, .12)
        );
}


/* ==========================================
   BLUE MOVING ELEMENTS
========================================== */

.tt-ivr-orbit {
    position: absolute;

    border-radius: 50%;

    border: 2px solid rgba(37, 99, 235, .10);

    pointer-events: none;
}

.tt-ivr-orbit-1 {
    width: 390px;
    height: 390px;

    animation:
        ttIvrRotate 18s linear infinite;
}

.tt-ivr-orbit-2 {
    width: 510px;
    height: 250px;

    border-color: rgba(37, 99, 235, .07);

    transform: rotate(-25deg);

    animation:
        ttIvrRotateReverse 22s linear infinite;
}


/* Moving dots */

.tt-ivr-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #2563eb;

    z-index: 3;

    box-shadow:
        0 0 0 7px rgba(37, 99, 235, .08);

    animation:
        ttIvrPulse 2.5s ease-in-out infinite;
}

.tt-ivr-dot-1 {
    top: 17%;
    right: 10%;
}

.tt-ivr-dot-2 {
    bottom: 18%;
    left: 12%;

    width: 7px;
    height: 7px;

    animation-delay: 1s;
}


/* ==========================================
   CONTENT
========================================== */

.tt-ivr-content {
    position: relative;
    z-index: 10;

    max-width: 620px;
}

.tt-ivr-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.tt-ivr-content h1 {
    margin: 0 0 22px;

    color: #0f172a;

    font-size: 56px;
    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -2px;
}

.tt-ivr-content h1 span {
    color: #2563eb;
}


/* ==========================================
   DESCRIPTION
========================================== */

.tt-ivr-description {
    max-width: 590px;

    margin: 0 0 28px;

    color: #475569;

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================
   FEATURES
========================================== */

.tt-ivr-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 22px;

    margin: 0 0 32px;
    padding: 0;

    list-style: none;
}

.tt-ivr-features li {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #334155;

    font-size: 14px;

    font-weight: 600;
}

.tt-ivr-features li span {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
}


/* ==========================================
   BUTTONS
========================================== */

.tt-ivr-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}

.tt-ivr-btn {
    min-width: 155px;
    height: 50px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.tt-ivr-primary {
    background: #2563eb;

    color: #ffffff;

    border: 2px solid #2563eb;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .18);
}

.tt-ivr-primary span {
    margin-left: 8px;

    transition:
        transform .3s ease;
}

.tt-ivr-primary:hover {
    background: #1d4ed8;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(37, 99, 235, .25);
}

.tt-ivr-primary:hover span {
    transform: translateX(4px);
}

.tt-ivr-secondary {
    background: #ffffff;

    color: #2563eb;

    border: 2px solid #2563eb;
}

.tt-ivr-secondary:hover {
    background: #2563eb;

    color: #ffffff;

    transform: translateY(-3px);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes ttIvrFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes ttIvrRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes ttIvrRotateReverse {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}

@keyframes ttIvrPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .55;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .tt-ivr-hero {
        padding: 55px 20px 65px;
    }

    .tt-ivr-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .tt-ivr-visual {
        min-height: 400px;

        order: 1;
    }

    .tt-ivr-content {
        order: 2;

        max-width: 700px;
    }

    .tt-ivr-content h1 {
        font-size: 48px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .tt-ivr-hero {
        padding: 40px 16px 50px;
    }

    .tt-ivr-visual {
        min-height: 300px;
    }

    .tt-ivr-image img {
        max-width: 370px;
    }

    .tt-ivr-orbit-1 {
        width: 280px;
        height: 280px;
    }

    .tt-ivr-orbit-2 {
        width: 340px;
        height: 180px;
    }

    .tt-ivr-content h1 {
        font-size: 36px;

        line-height: 1.1;

        letter-spacing: -1px;
    }

    .tt-ivr-description {
        font-size: 15px;

        line-height: 1.6;
    }

    .tt-ivr-features {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .tt-ivr-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .tt-ivr-btn {
        width: 100%;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c11605c *//* ==========================================
   TENXTEL IVR PROCESS
========================================== */

.tt-ivr-process {

    width: 100%;

    padding: 90px 20px;

    background: #ffffff !important;

    overflow: hidden;

    font-family:
        Inter,
        Arial,
        sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

.tt-ivr-process-container {

    max-width: 1180px;

    margin: 0 auto;

}


/* ==========================================
   HEADING
========================================== */

.tt-ivr-process-heading {

    max-width: 700px;

    margin: 0 auto 75px;

    text-align: center;

}


.tt-ivr-process-heading > span {

    display: block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.tt-ivr-process-heading h2 {

    margin: 0 0 18px;

    color: #0f172a;

    font-size: 43px;

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 750;

}


.tt-ivr-process-heading h2 strong {

    color: #2563eb;

    font-weight: 750;

}


.tt-ivr-process-heading p {

    max-width: 620px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.7;

}


/* ==========================================
   TIMELINE
========================================== */

.tt-ivr-timeline {

    position: relative;

}


/*
   Vertical line
*/

.tt-ivr-timeline::before {

    content: "";

    position: absolute;

    top: 35px;

    bottom: 35px;

    left: 50%;

    width: 2px;

    background: #dbe7f8;

    transform: translateX(-50%);

}


/* ==========================================
   STEP
========================================== */

.tt-ivr-step {

    position: relative;

    min-height: 245px;

    display: grid;

    grid-template-columns: 1fr 80px 1fr;

    align-items: center;

    gap: 30px;

}


.tt-ivr-step + .tt-ivr-step {

    margin-top: 30px;

}


/* ==========================================
   MARKER
========================================== */

.tt-ivr-step-marker {

    position: relative;

    z-index: 5;

    width: 58px;

    height: 58px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #2563eb;

    box-shadow:
        0 0 0 8px rgba(37, 99, 235, .06);

}


.tt-ivr-step-marker span {

    color: #2563eb;

    font-size: 14px;

    font-weight: 800;

}


.tt-ivr-step-marker i {

    position: absolute;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #2563eb;

    animation: ttIvrMarkerPulse 2s ease-in-out infinite;

}


/* ==========================================
   IMAGE
========================================== */

.tt-ivr-image-wrap {

    position: relative;

    width: 100%;

    max-width: 420px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

}


.tt-ivr-image-wrap::before {

    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    border-radius: 50%;

    border: 1px solid rgba(37, 99, 235, .08);

    animation: ttIvrImageOrbit 8s linear infinite;

}


.tt-ivr-image-wrap img {

    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    max-width: 300px;

    height: 220px;

    object-fit: contain;

    transition:
        transform .45s ease,
        filter .45s ease;

}


.tt-ivr-image-wrap:hover img {

    transform:
        translateY(-8px)
        scale(1.04);

    filter:
        drop-shadow(
            0 15px 20px rgba(37, 99, 235, .12)
        );

}


/* ==========================================
   TEXT
========================================== */

.tt-ivr-step-text {

    max-width: 430px;

}


.tt-ivr-step-text small,
.tt-ivr-text-card small {

    display: block;

    margin-bottom: 9px;

    color: #2563eb;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.tt-ivr-step-text h3,
.tt-ivr-text-card h3 {

    margin: 0 0 10px;

    color: #0f172a;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 700;

}


.tt-ivr-step-text p,
.tt-ivr-text-card p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;

}


/* ==========================================
   TEXT CARD
========================================== */

.tt-ivr-text-card {

    max-width: 430px;

    padding: 10px 0;

}


/* ==========================================
   REVERSE
========================================== */

.tt-ivr-reverse .tt-ivr-text-card {

    margin-left: auto;

}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes ttIvrMarkerPulse {

    0%,
    100% {

        transform: scale(1);

        opacity: .5;

    }

    50% {

        transform: scale(1.8);

        opacity: 1;

    }

}


@keyframes ttIvrImageOrbit {

    0% {

        transform:
            rotate(0deg)
            translateX(5px);

    }

    50% {

        transform:
            rotate(180deg)
            translateX(12px);

    }

    100% {

        transform:
            rotate(360deg)
            translateX(5px);

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .tt-ivr-process {

        padding: 70px 20px;

    }


    .tt-ivr-process-heading {

        margin-bottom: 55px;

    }


    .tt-ivr-process-heading h2 {

        font-size: 36px;

    }


    .tt-ivr-step {

        grid-template-columns:
            1fr 60px 1fr;

        gap: 20px;

    }


    .tt-ivr-step-text h3,
    .tt-ivr-text-card h3 {

        font-size: 20px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .tt-ivr-process {

        padding: 55px 18px;

    }


    .tt-ivr-process-heading {

        margin-bottom: 45px;

    }


    .tt-ivr-process-heading h2 {

        font-size: 31px;

        letter-spacing: -1px;

    }


    .tt-ivr-process-heading p {

        font-size: 14px;

    }


    .tt-ivr-timeline::before {

        left: 28px;

        transform: none;

    }


    .tt-ivr-step,
    .tt-ivr-step.tt-ivr-reverse {

        min-height: auto;

        display: grid;

        grid-template-columns: 56px 1fr;

        gap: 15px;

        align-items: start;

    }


    .tt-ivr-step + .tt-ivr-step {

        margin-top: 50px;

    }


    .tt-ivr-step-marker {

        grid-column: 1;

        grid-row: 1;

        width: 56px;

        height: 56px;

    }


    .tt-ivr-step-content,
    .tt-ivr-step-text {

        grid-column: 2;

        grid-row: 1;

        max-width: none;

    }


    /*
       On mobile image/text ordering
    */

    .tt-ivr-step .tt-ivr-image-wrap {

        margin-bottom: 15px;

    }


    .tt-ivr-step .tt-ivr-step-content {

        padding-top: 5px;

    }


    .tt-ivr-step .tt-ivr-step-text {

        padding-top: 5px;

    }


    .tt-ivr-image-wrap img {

        height: 190px;

        max-width: 260px;

    }


    .tt-ivr-step-text h3,
    .tt-ivr-text-card h3 {

        font-size: 19px;

    }


    .tt-ivr-step-text p,
    .tt-ivr-text-card p {

        font-size: 13px;

    }


    .tt-ivr-reverse .tt-ivr-text-card {

        margin-left: 0;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .tt-ivr-process-heading h2 {

        font-size: 28px;

    }


    .tt-ivr-image-wrap img {

        height: 165px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79767fc *//* ==========================================
   TENXTEL IVR FEATURES
   WHITE + BLUE THEME
========================================== */

.tt-ivr-services {

    width: 100%;

    background: #ffffff !important;

    padding: 90px 20px;

    overflow: hidden;

    font-family:
        Inter,
        Arial,
        sans-serif;

}


/* ==========================================
   CONTAINER
========================================== */

.tt-ivr-services-container {

    max-width: 1180px;

    margin: 0 auto;

}


/* ==========================================
   SECTION HEADING
========================================== */

.tt-ivr-services-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


.tt-ivr-services-heading > span {

    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.tt-ivr-services-heading h2 {

    margin: 0 0 18px;

    color: #0f172a;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 750;

}


.tt-ivr-services-heading h2 strong {

    color: #2563eb;

    font-weight: 750;

}


.tt-ivr-services-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.7;

}


/* ==========================================
   GRID
========================================== */

.tt-ivr-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


/* ==========================================
   CARD
========================================== */

.tt-ivr-card {

    position: relative;

    min-height: 245px;

    padding: 30px 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


/* moving blue line */

.tt-ivr-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #2563eb;

    transition: width .4s ease;

}


.tt-ivr-card:hover::before {

    width: 100%;

}


.tt-ivr-card:hover {

    transform: translateY(-7px);

    border-color: #bfdbfe;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .08);

}


/* ==========================================
   ICON
========================================== */

.tt-ivr-icon {

    width: 48px;

    height: 48px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    color: #2563eb;

    font-size: 20px;

    font-weight: 800;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;

}


.tt-ivr-card:hover .tt-ivr-icon {

    transform:
        translateY(-4px)
        rotate(8deg);

    background: #2563eb;

    color: #ffffff;

}


/* ==========================================
   NUMBER
========================================== */

.tt-ivr-card-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #cbd5e1;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    transition:
        color .3s ease,
        transform .3s ease;

}


.tt-ivr-card:hover .tt-ivr-card-number {

    color: #2563eb;

    transform: translateX(-3px);

}


/* ==========================================
   TITLE
========================================== */

.tt-ivr-card h3 {

    margin: 0 0 10px;

    color: #0f172a;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 700;

}


/* ==========================================
   DESCRIPTION
========================================== */

.tt-ivr-card p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.65;

}


/* ==========================================
   SUBTLE FLOATING ANIMATION
========================================== */

.tt-ivr-card:nth-child(1) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out infinite;

}


.tt-ivr-card:nth-child(2) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out .5s infinite;

}


.tt-ivr-card:nth-child(3) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out 1s infinite;

}


.tt-ivr-card:nth-child(4) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out 1.5s infinite;

}


.tt-ivr-card:nth-child(5) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out 2s infinite;

}


.tt-ivr-card:nth-child(6) .tt-ivr-icon {

    animation:
        ttIvrFloat 4s ease-in-out 2.5s infinite;

}


@keyframes ttIvrFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-5px);

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .tt-ivr-services {

        padding: 70px 20px;

    }


    .tt-ivr-services-heading h2 {

        font-size: 36px;

    }


    .tt-ivr-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .tt-ivr-services {

        padding: 55px 18px;

    }


    .tt-ivr-services-heading {

        margin-bottom: 38px;

    }


    .tt-ivr-services-heading h2 {

        font-size: 30px;

        letter-spacing: -1px;

    }


    .tt-ivr-services-heading p {

        font-size: 14px;

    }


    .tt-ivr-services-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .tt-ivr-card {

        min-height: auto;

        padding: 25px;

    }


    .tt-ivr-card h3 {

        font-size: 18px;

    }


    .tt-ivr-card p {

        font-size: 13px;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .tt-ivr-services-heading h2 {

        font-size: 27px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-220dfcf *//* ==========================================
   TENXTEL EMAIL CTA
========================================== */

.tt-email-cta {

    width: 100%;

    padding: 80px 20px;

    background: #ffffff !important;

    overflow: hidden;

}


/* ==========================================
   MAIN BOX
========================================== */

.tt-email-container {

    position: relative;

    max-width: 1180px;

    min-height: 390px;

    margin: 0 auto;

    padding: 60px 60px;

    display: grid;

    grid-template-columns: 52% 48%;

    align-items: center;

    overflow: hidden;

    border-radius: 18px;

    background: #101f4d;

    box-shadow:
        0 20px 50px rgba(16, 31, 77, .12);

}


/* ==========================================
   CONTENT
========================================== */

.tt-email-content {

    position: relative;

    z-index: 5;

    max-width: 590px;

}


.tt-email-label {

    display: inline-block;

    margin-bottom: 14px;

    color: #60a5fa;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.tt-email-content h2 {

    margin: 0 0 17px;

    color: #ffffff;

    font-size: 44px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    font-weight: 750;

}


.tt-email-content h2 span {

    color: #60a5fa;

}


.tt-email-content p {

    max-width: 540px;

    margin: 0 0 25px;

    color: #d7e1f2;

    font-size: 15px;

    line-height: 1.65;

}


/* ==========================================
   FORM
========================================== */

.tt-email-form {

    width: 100%;

    max-width: 510px;

    display: flex;

    align-items: stretch;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 10px;

}


.tt-email-form input {

    flex: 1;

    min-width: 0;

    height: 54px;

    padding: 0 18px;

    border: 0 !important;

    outline: none !important;

    background: #ffffff !important;

    color: #111827 !important;

    font-size: 14px;

}


.tt-email-form input::placeholder {

    color: #7b8798;

}


.tt-email-form button {

    flex-shrink: 0;

    height: 54px;

    padding: 0 23px;

    border: 0;

    background: #2563eb;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;

}


.tt-email-form button span {

    display: inline-block;

    margin-left: 7px;

    font-size: 18px;

    transition: transform .3s ease;

}


.tt-email-form button:hover {

    background: #1d4ed8;

}


.tt-email-form button:hover span {

    transform: translateX(5px);

}


.tt-email-content small {

    display: block;

    margin-top: 11px;

    color: #9fb1cd;

    font-size: 11px;

}


/* ==========================================
   IMAGE AREA
========================================== */

.tt-email-visual {

    position: relative;

    height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.tt-email-image {

    position: relative;

    z-index: 4;

    width: 100%;

    display: flex;

    justify-content: center;

}


.tt-email-image img {

    display: block;

    width: 100%;

    max-width: 510px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 30px rgba(0, 0, 0, .22)
        );

    animation:
        ttEmailFloat 5s ease-in-out infinite;

}


/* ==========================================
   MOVING ORBITS
========================================== */

.tt-email-orbit {

    position: absolute;

    z-index: 1;

    border: 1px solid rgba(96, 165, 250, .22);

    border-radius: 50%;

    pointer-events: none;

}


.orbit-1 {

    width: 300px;

    height: 300px;

    animation:
        ttEmailRotate 16s linear infinite;

}


.orbit-2 {

    width: 390px;

    height: 220px;

    border-color: rgba(255, 255, 255, .12);

    transform: rotate(-25deg);

    animation:
        ttEmailRotateReverse 20s linear infinite;

}


/* ==========================================
   ANIMATION
========================================== */

@keyframes ttEmailFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-9px);

    }

}


@keyframes ttEmailRotate {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


@keyframes ttEmailRotateReverse {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(-360deg);

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .tt-email-cta {

        padding: 60px 20px;

    }

    .tt-email-container {

        grid-template-columns: 1fr;

        padding: 50px 45px;

        gap: 35px;

    }

    .tt-email-content {

        max-width: 650px;

    }

    .tt-email-visual {

        height: 300px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .tt-email-cta {

        padding: 45px 15px;

    }

    .tt-email-container {

        padding: 38px 24px;

        min-height: auto;

        border-radius: 14px;

        gap: 30px;

    }

    .tt-email-content h2 {

        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -.8px;

    }

    .tt-email-content p {

        font-size: 14px;

    }

    .tt-email-form {

        flex-direction: column;

        background: transparent;

        border: 0;

        overflow: visible;

        gap: 10px;

    }

    .tt-email-form input {

        width: 100%;

        border-radius: 9px !important;

    }

    .tt-email-form button {

        width: 100%;

        border-radius: 9px;

    }

    .tt-email-visual {

        height: 240px;

    }

    .tt-email-image img {

        max-width: 360px;

    }

    .orbit-1 {

        width: 230px;

        height: 230px;

    }

    .orbit-2 {

        width: 300px;

        height: 180px;

    }

}/* End custom CSS */