:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-873ba3e *//*=================================
HERO SECTION IMPROVED
=================================*/

.rud-hero{
    position:relative;
    padding:130px 0 70px;
    min-height:auto;
    overflow:hidden;

    background:url('https://reliableurgentdelivery.com/wp-content/uploads/2026/06/delivery-driver-driving-van-with-parcels-on-seat-o-2026-03-25-02-15-19-utc-scaled.jpg');
    background-size:cover;
    background-position:center;
}

.rud-hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.70) 45%,
        rgba(0,0,0,.30) 100%
    );
}

.rud-hero .rud-wrap{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
}

/* Badge */

.rud-badge{
    display:inline-flex;

    background:rgba(53,225,103,.15);
    border:1px solid rgba(53,225,103,.25);

    color:#35E167;

    padding:10px 16px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

/* Heading */

.rud-hero-content h1{
    color:#fff;
    font-size:58px;
    line-height:1.05;
    font-weight:800;

    margin-bottom:18px;
}

.rud-hero-content h1 span{
    color:#35E167;
}

.rud-hero-content p{
    max-width:600px;

    color:rgba(255,255,255,.85);

    font-size:17px;
    line-height:1.8;

    margin-bottom:28px;
}

/* Buttons */

.rud-hero-buttons{
    display:flex;
    gap:14px;
    margin-bottom:28px;
}

/* REMOVE FEATURES */

.rud-hero-features{
    display:none;
}

/* Stats */

.rud-hero-stats{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.rud-stat-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    padding:14px 18px;

    border-radius:10px;

    min-width:140px;
}

.rud-stat-box strong{
    display:block;

    color:#35E167;

    font-size:26px;
    margin-bottom:4px;
}

.rud-stat-box span{
    color:#fff;
    font-size:13px;
}

/* IMAGE */

.rud-hero-image{
    text-align:center;
}

.rud-hero-image img{

    width:100%;
    max-width:620px;

    animation:rudFloat 4s ease-in-out infinite;
}

/* Float */

@keyframes rudFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/* TABLET */

@media(max-width:991px){

    .rud-hero{
        padding:110px 0 60px;
    }

    .rud-hero .rud-wrap{
        grid-template-columns:1fr;
        text-align:center;
    }

    .rud-hero-image{
        order:-1;
    }

    .rud-hero-image img{
        max-width:420px;
    }

    .rud-hero-content h1{
        font-size:46px;
    }

    .rud-hero-buttons,
    .rud-hero-stats{
        justify-content:center;
    }

    .rud-hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

}

/* MOBILE */

@media(max-width:576px){

    .rud-hero{
        padding:95px 0 40px;
    }

    .rud-hero-image img{
        max-width:280px;
    }

    .rud-hero-content h1{
        font-size:34px;
        line-height:1.1;
    }

    .rud-hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .rud-hero-buttons{
        flex-direction:column;
    }

    .rud-btn{
        width:100%;
    }

    .rud-stat-box{
        width:100%;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cf29563 */.rud-services{
    padding:100px 0;
    background:#f7f9fb;
}

.rud-section-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.rud-section-head span{
    display:inline-block;
    background:rgba(53,225,103,.10);
    color:#35E167;
    padding:8px 16px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

.rud-section-head h2{
    font-size:46px;
    color:#292929;
    margin-bottom:15px;
    font-weight:800;
}

.rud-section-head p{
    color:#6b7280;
    line-height:1.8;
}

.rud-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.rud-service-card{
    background:#fff;
    border:1px solid #e9edf0;
    border-radius:14px;
    overflow:hidden;
    transition:.4s;
}

.rud-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.rud-service-image{
    height:220px;
    overflow:hidden;
    position:relative;
}

.rud-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.rud-service-card:hover .rud-service-image img{
    transform:scale(1.10);
}

.rud-service-image:before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform:skewX(-25deg);
    z-index:2;
    transition:.8s;
}

.rud-service-card:hover .rud-service-image:before{
    left:150%;
}

.rud-service-content{
    padding:28px;
}

.rud-service-content h3{
    font-size:22px;
    color:#292929;
    margin-bottom:10px;
}

.rud-service-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:20px;
}

.rud-service-buttons{
    display:flex;
    gap:10px;
}

.rud-service-call,
.rud-service-whatsapp{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:12px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.rud-service-call{
    background:#292929;
    color:#fff;
}

.rud-service-call:hover{
    background:#111;
    color:#fff;
}

.rud-service-whatsapp{
    background:#35E167;
    color:#fff;
}

.rud-service-whatsapp:hover{
    background:#2ecb5a;
    color:#fff;
}

@media(max-width:991px){

    .rud-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .rud-services-grid{
        grid-template-columns:1fr;
    }

    .rud-service-buttons{
        flex-direction:column;
    }

    .rud-section-head h2{
        font-size:32px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b024488 *//* DELIVERY OPTIONS */

.rud-delivery-options{
    padding:100px 0;
    background:#fff;
}

.rud-delivery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.rud-delivery-card{

    background:#fff;

    border:1px solid #e7ecef;

    border-radius:16px;

    padding:30px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.rud-delivery-card:hover{

    transform:translateY(-6px);

    border-color:#35E167;
}

.rud-delivery-featured{
    border:2px solid #35E167;
}

.rud-delivery-top{

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:20px;
}

.rud-delivery-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(53,225,103,.12);

    font-size:34px;
}

.rud-delivery-card h3{

    margin:0;

    font-size:28px;

    color:#292929;
}

.rud-price{

    margin-top:6px;

    color:#6b7280;

    font-size:14px;
}

.rud-price strong{

    color:#35E167;

    font-size:26px;

    margin-left:5px;
}

.rud-delivery-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:20px;
}

.rud-delivery-card ul{

    list-style:none;

    margin:0 0 25px;

    padding:0;
}

.rud-delivery-card ul li{

    padding:8px 0;

    color:#292929;

    font-weight:600;
}

.rud-delivery-card ul li:before{

    content:"✓";

    color:#35E167;

    margin-right:10px;
}

.rud-delivery-buttons{

    display:flex;

    gap:10px;
}

.rud-delivery-call,
.rud-delivery-wa{

    flex:1;

    text-align:center;

    padding:14px;

    text-decoration:none;

    border-radius:8px;

    font-weight:700;

    transition:.3s;
}

.rud-delivery-call{

    background:#292929;

    color:#fff !important;
}

.rud-delivery-call:hover{

    background:#111;
}

.rud-delivery-wa{

    background:#35E167;

    color:#fff !important;
}

.rud-delivery-wa:hover{

    background:#2fd35d;
}

@media(max-width:991px){

    .rud-delivery-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .rud-delivery-card{
        padding:24px;
    }

    .rud-delivery-top{
        flex-direction:column;
        text-align:center;
    }

    .rud-delivery-buttons{
        flex-direction:column;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4f5fdf4 *//*=================================
WHY CHOOSE US
=================================*/

.rud-why{
    padding:80px 0;
    background:#fff;
}

.rud-why-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
}

.rud-tag{
    display:inline-block;
    color:#35E167;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.rud-why-content h2{
    font-size:42px;
    line-height:1.15;
    color:#292929;
    margin:0 0 18px;
    font-weight:800;
}

.rud-why-content p{
    color:#6b7280;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;
    max-width:620px;
}

/* FEATURES */

.rud-why-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:25px;
}

.rud-why-item{
    background:#fff;
    border:1px solid #e8edf1;
    border-radius:10px;
    padding:15px 18px;
    font-size:15px;
    font-weight:600;
    color:#292929;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.rud-why-item:hover{
    border-color:#35E167;
    transform:translateY(-3px);
}

/* TRUST TAGS */

.rud-why-trust{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.rud-why-trust span{
    background:#f8fafb;
    border:1px solid #edf0f3;
    padding:10px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#292929;
}

/* IMAGE */

.rud-why-image{
    text-align:center;
}

.rud-why-image img{
    width:100%;
    max-width:500px;
    animation:rudFloat 4s ease-in-out infinite;
}

@keyframes rudFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

/* TABLET */

@media(max-width:991px){

    .rud-why-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .rud-why-image{
        order:-1;
    }

    .rud-why-list{
        grid-template-columns:repeat(2,1fr);
    }

    .rud-why-trust{
        justify-content:center;
    }

    .rud-why-image img{
        max-width:350px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .rud-why{
        padding:60px 0;
    }

    .rud-why-content h2{
        font-size:32px;
    }

    .rud-why-list{
        grid-template-columns:1fr;
    }

    .rud-why-image img{
        max-width:260px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b76b184 *//*=================================
UAE COVERAGE
=================================*/

.rud-coverage{
    padding:110px 0;
    background:#292929;
    position:relative;
    overflow:hidden;
}

.rud-coverage::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#35E167;
    opacity:.05;
    border-radius:50%;
    filter:blur(120px);
    right:-200px;
    top:-100px;
}

.rud-coverage-head{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.rud-coverage-head span{
    display:inline-block;
    color:#35E167;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.rud-coverage-head h2{
    color:#fff;
    font-size:48px;
    line-height:1.2;
    margin-bottom:15px;
    font-weight:800;
}

.rud-coverage-head p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:17px;
}

.rud-coverage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    position:relative;
    z-index:2;
}

.rud-city-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:30px;
    transition:.35s;
}

.rud-city-card:hover{
    border-color:#35E167;
    transform:translateY(-6px);
}

.rud-city-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.rud-city-card p{
    color:rgba(255,255,255,.70);
    line-height:1.7;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .rud-coverage-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .rud-coverage-head h2{
        font-size:38px;
    }

}

/* Mobile */

@media(max-width:576px){

    .rud-coverage{
        padding:80px 0;
    }

    .rud-coverage-grid{
        grid-template-columns:1fr;
    }

    .rud-coverage-head h2{
        font-size:30px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7861739 *//*=================================
PROCESS SECTION
=================================*/

.rud-process{
    padding:90px 0;
    background:#fff;
}

.rud-process-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.rud-process-head span{
    display:inline-block;
    color:#35E167;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.rud-process-head h2{
    font-size:46px;
    line-height:1.2;
    color:#292929;
    margin:0 0 15px;
    font-weight:800;
}

.rud-process-head p{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/* ROW */

.rud-process-row{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* DOTTED LINE */

.rud-process-row:before{
    content:"";
    position:absolute;
    top:42px;
    left:12%;
    width:76%;
    border-top:2px dashed #d7dde3;
    z-index:1;
}

/* STEP */

.rud-step{
    position:relative;
    z-index:2;
    text-align:center;
}

.rud-step-icon{
    width:85px;
    height:85px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8fafb;
    border:2px solid #e5eaef;
    border-radius:50%;

    font-size:34px;

    position:relative;

    transition:.35s ease;
}

.rud-step:hover .rud-step-icon{
    border-color:#35E167;
    transform:translateY(-5px);
}

.rud-step-icon span{
    position:absolute;
    top:-6px;
    right:-6px;

    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#35E167;
    color:#fff;

    border-radius:50%;

    font-size:12px;
    font-weight:700;
}

.rud-step h3{
    font-size:22px;
    color:#292929;
    margin-bottom:10px;
    font-weight:700;
}

.rud-step p{
    max-width:240px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* BUTTONS */

.rud-process-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:60px;
}

.rud-call-btn,
.rud-wa-btn{
    min-width:180px;
    text-align:center;
    text-decoration:none;

    padding:14px 24px;

    border-radius:8px;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;
}

/* CALL */

.rud-call-btn{
    background:#292929;
    color:#fff !important;
    border:2px solid #292929;
}

.rud-call-btn:hover{
    background:#111;
    border-color:#111;
    color:#fff !important;
}

/* WHATSAPP */

.rud-wa-btn{
    background:#35E167;
    color:#fff !important;
    border:2px solid #35E167;
}

.rud-wa-btn:hover{
    background:#2ecc59;
    border-color:#2ecc59;
    color:#fff !important;
}

/* TABLET */

@media(max-width:991px){

    .rud-process{
        padding:80px 0;
    }

    .rud-process-row{
        grid-template-columns:repeat(2,1fr);
        gap:40px 30px;
    }

    .rud-process-row:before{
        display:none;
    }

    .rud-process-head h2{
        font-size:38px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .rud-process{
        padding:70px 0;
    }

    .rud-process-head{
        margin-bottom:40px;
    }

    .rud-process-head h2{
        font-size:30px;
    }

    .rud-process-head p{
        font-size:15px;
    }

    .rud-process-row{
        grid-template-columns:1fr;
        gap:35px;
    }

    .rud-step-icon{
        width:75px;
        height:75px;
        font-size:28px;
        margin-bottom:18px;
    }

    .rud-step h3{
        font-size:20px;
    }

    .rud-step p{
        max-width:100%;
    }

    .rud-process-buttons{
        flex-direction:column;
        gap:12px;
        margin-top:40px;
    }

    .rud-call-btn,
    .rud-wa-btn{
        width:100%;
        max-width:300px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f58d7a6 *//*=================================
TESTIMONIALS SECTION
=================================*/

.rud-testimonials{
    padding:110px 0;
    background:#292929;
    position:relative;
    overflow:hidden;
}

.rud-testimonials::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#35E167;
    opacity:.05;
    border-radius:50%;
    filter:blur(120px);
    top:-150px;
    right:-150px;
}

.rud-testimonials::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#35E167;
    opacity:.04;
    border-radius:50%;
    filter:blur(100px);
    bottom:-200px;
    left:-100px;
}

.rud-testimonials .rud-wrap{
    position:relative;
    z-index:2;
}

/* HEADING */

.rud-testimonials-head{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.rud-testimonials-head span{
    display:inline-block;
    color:#35E167;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.rud-testimonials-head h2{
    font-size:48px;
    color:#fff;
    line-height:1.2;
    margin:0 0 15px;
    font-weight:800;
}

.rud-testimonials-head p{
    color:rgba(255,255,255,.75);
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/* GRID */

.rud-testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */

.rud-testimonial-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:30px;

    transition:.35s ease;

    backdrop-filter:blur(8px);
}

.rud-testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#35E167;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

/* STARS */

.rud-stars{
    color:#35E167;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:20px;
}

/* REVIEW TEXT */

.rud-testimonial-card p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
}

/* CLIENT */

.rud-client{
    display:flex;
    align-items:center;
    gap:14px;
}

.rud-avatar{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#35E167;
    color:#fff;

    border-radius:50%;

    font-size:18px;
    font-weight:700;
}

.rud-client h4{
    color:#fff;
    margin:0 0 4px;
    font-size:17px;
    font-weight:700;
}

.rud-client span{
    color:rgba(255,255,255,.65);
    font-size:14px;
}

/* CTA BUTTONS */

.rud-review-cta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:60px;
}

.rud-call-btn,
.rud-wa-btn{
    min-width:190px;

    text-align:center;
    text-decoration:none;

    padding:14px 28px;

    border-radius:8px;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;
}

/* CALL BUTTON */

.rud-call-btn{
    background:#ffffff;
    color:#292929 !important;
    border:2px solid #ffffff;
}

.rud-call-btn:hover{
    background:transparent;
    color:#ffffff !important;
    border-color:#ffffff;
}

/* WHATSAPP BUTTON */

.rud-wa-btn{
    background:#35E167;
    color:#ffffff !important;
    border:2px solid #35E167;
}

.rud-wa-btn:hover{
    background:transparent;
    color:#35E167 !important;
    border-color:#35E167;
}

/* TABLET */

@media(max-width:991px){

    .rud-testimonials{
        padding:90px 0;
    }

    .rud-testimonials-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .rud-testimonials-head h2{
        font-size:38px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .rud-testimonials{
        padding:70px 0;
    }

    .rud-testimonials-head{
        margin-bottom:45px;
    }

    .rud-testimonials-head h2{
        font-size:30px;
    }

    .rud-testimonials-head p{
        font-size:15px;
    }

    .rud-testimonials-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .rud-testimonial-card{
        padding:25px;
    }

    .rud-review-cta{
        flex-direction:column;
        gap:12px;
        margin-top:40px;
    }

    .rud-call-btn,
    .rud-wa-btn{
        width:100%;
        max-width:320px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bad7ced *//* MINI FAQ */

.rud-mini-faq{
    padding:70px 0;
    background:#fff;
}

.rud-mini-head{
    text-align:center;
    margin-bottom:40px;
}

.rud-mini-head span{
    color:#35E167;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.rud-mini-head h2{
    font-size:38px;
    color:#292929;
    margin-top:10px;
}

.rud-mini-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.rud-mini-item{
    background:#f8fafb;
    border:1px solid #edf0f3;
    border-radius:12px;
    padding:25px;
    transition:.3s;
}

.rud-mini-item:hover{
    border-color:#35E167;
    transform:translateY(-4px);
}

.rud-mini-item h3{
    font-size:18px;
    color:#292929;
    margin-bottom:10px;
}

.rud-mini-item p{
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

    .rud-mini-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .rud-mini-grid{
        grid-template-columns:1fr;
    }

    .rud-mini-head h2{
        font-size:30px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f964407 *//*=================================
FINAL CTA
=================================*/

.rud-final-cta{
    padding:90px 0;
    background:#ffffff;
}

.rud-cta-box{
    background:#292929;
    border-radius:20px;
    padding:70px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.rud-cta-box::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#35E167;
    opacity:.08;
    border-radius:50%;
    filter:blur(80px);
    top:-120px;
    right:-80px;
}

.rud-cta-box span{
    display:inline-block;
    color:#35E167;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.rud-cta-box h2{
    color:#ffffff;
    font-size:52px;
    line-height:1.1;
    margin:0 0 20px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.rud-cta-box p{
    max-width:700px;
    margin:0 auto 25px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:17px;
    position:relative;
    z-index:2;
}

.rud-cta-phone{
    color:#35E167;
    font-size:30px;
    font-weight:800;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.rud-cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    position:relative;
    z-index:2;
}

/* CALL BUTTON */

.rud-cta-call{
    background:#ffffff;
    color:#292929 !important;
    text-decoration:none;
    padding:15px 32px;
    border-radius:8px;
    font-weight:700;
    border:2px solid #ffffff;
    transition:.3s;
}

.rud-cta-call:hover{
    background:transparent;
    color:#ffffff !important;
}

/* WHATSAPP */

.rud-cta-whatsapp{
    background:#35E167;
    color:#ffffff !important;
    text-decoration:none;
    padding:15px 32px;
    border-radius:8px;
    font-weight:700;
    border:2px solid #35E167;
    transition:.3s;
}

.rud-cta-whatsapp:hover{
    background:transparent;
    color:#35E167 !important;
}

/* TABLET */

@media(max-width:991px){

    .rud-cta-box h2{
        font-size:42px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .rud-final-cta{
        padding:70px 0;
    }

    .rud-cta-box{
        padding:50px 25px;
        border-radius:16px;
    }

    .rud-cta-box h2{
        font-size:32px;
    }

    .rud-cta-phone{
        font-size:24px;
    }

    .rud-cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .rud-cta-call,
    .rud-cta-whatsapp{
        width:100%;
        max-width:280px;
        text-align:center;
    }

}/* End custom CSS */