:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9c350fe *//*==================================================
                    HERO SECTION
==================================================*/

.hero {
    background: #222222;
    padding: 120px 6%;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


/*==================================================
                    LEFT CONTENT
==================================================*/

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-tag {
    display: inline-block;

    padding: 10px 22px;

    border: 1px solid #ffc400;
    border-radius: 40px;

    color: #ffc400;

    font-size: 14px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.15;

    color: #ffffff;

    margin: 0 0 25px;
}

.hero h1 span {
    color: #ffc400;
    display: block;
}

.hero p {
    font-size: 18px;
    line-height: 1.9;

    color: #d0d0d0;

    margin: 0 0 40px;
}

.hero-btn {
    display: inline-block;

    padding: 18px 42px;

    background: #ffc400;
    color: #111111;

    font-weight: 700;

    border-radius: 8px;

    text-decoration: none;

    transition: 0.35s ease;

    box-sizing: border-box;
}

.hero-btn:hover {
    background: transparent;
    color: #ffc400;
    border: 2px solid #ffc400;
}


/*==================================================
                    FEATURES
==================================================*/

.hero-features {
    display: flex;

    gap: 30px;

    margin-top: 45px;

    flex-wrap: wrap;
}

.feature {
    color: #ffffff;
    font-weight: 600;
}

.feature i {
    color: #ffc400;
    margin-right: 8px;
}


/*==================================================
                    HERO IMAGE
==================================================*/

.hero-image {
    flex: 1;
    position: relative;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: auto;

    border-radius: 20px;

    display: block;
}


/*==================================================
                    FLOATING CARDS
==================================================*/

.floating-card {
    position: absolute;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    padding: 18px 25px;

    border-radius: 15px;

    color: #ffffff;
}

.floating-card h3 {
    color: #ffc400;
    margin: 0 0 5px;
}

.card-1 {
    left: -30px;
    top: 50px;
}

.card-2 {
    right: -20px;
    bottom: 50px;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    .hero {
        padding: 100px 5%;
    }

    .hero-container {
        flex-direction: column;

        text-align: center;

        gap: 50px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        max-width: 750px;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-features {
        justify-content: center;
    }

    .card-1,
    .card-2 {
        display: none;
    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    .hero {
        padding: 80px 20px 60px;
    }

    .hero-container {
        width: 100%;

        gap: 35px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        max-width: 100%;
    }


    /* TAG */

    .hero-tag {
        padding: 8px 16px;

        font-size: 12px;

        margin-bottom: 18px;
    }


    /* MAIN HEADING */

    .hero h1 {
        font-size: 36px;
        line-height: 1.15;

        margin-bottom: 20px;
    }


    /* DESCRIPTION */

    .hero p {
        font-size: 16px;
        line-height: 1.65;

        margin-bottom: 28px;
    }


    /* BUTTON */

    .hero-btn {
        width: auto;

        max-width: 100%;

        padding: 15px 28px;

        font-size: 15px;
    }


    /* FEATURES */

    .hero-features {
        margin-top: 30px;

        gap: 15px 25px;

        justify-content: center;
    }

    .feature {
        font-size: 14px;
    }


    /* IMAGE */

    .hero-image img {
        width: 100%;

        border-radius: 16px;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .hero {
        padding: 70px 16px 50px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 31px;
        line-height: 1.18;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 14px 24px;

        font-size: 14px;
    }

    .hero-features {
        gap: 12px 18px;
    }

    .feature {
        font-size: 13px;
    }

    .hero-image img {
        border-radius: 14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a95eb72 *//*==================================================
                    ABOUT US
==================================================*/

.about-section {
    background: #000000;
    padding: 100px 6%;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/*==================================================
                    IMAGE
==================================================*/

.about-image {
    overflow: hidden;

    border-radius: 18px;
    border: 2px solid transparent;

    transition: 0.35s ease;
}

.about-image img {
    width: 100%;
    height: 550px;

    object-fit: cover;

    display: block;

    border-radius: 18px;

    transition: 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:hover {
    border-color: #ffc400;

    box-shadow:
        0 20px 40px rgba(255, 196, 0, 0.15);
}


/*==================================================
                    CONTENT
==================================================*/

.about-content {
    color: #ffffff;
}

.about-subtitle {
    color: #ffc400;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-content h2 {
    font-size: 48px;
    line-height: 1.2;

    margin: 20px 0 30px;

    color: #ffffff;
}

.about-content p {
    color: #cfcfcf;

    font-size: 17px;
    line-height: 1.8;

    margin: 0 0 25px;
}


/*==================================================
                    BUTTON
==================================================*/

.about-btn {
    display: inline-block;

    margin-top: 15px;

    padding: 15px 34px;

    background: #ffc400;
    color: #000000;

    border: 2px solid #ffc400;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s ease;
}

.about-btn:hover {
    background: transparent;
    color: #ffc400;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    .about-section {
        padding: 90px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 750px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.75;
    }

    .about-image img {
        height: 450px;
    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    .about-section {
        padding: 70px 20px;
    }

    .about-container {
        width: 100%;

        gap: 35px;
    }


    /* CONTENT */

    .about-content {
        text-align: center;
    }

    .about-subtitle {
        font-size: 14px;

        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 30px;

        line-height: 1.2;

        margin: 15px 0 20px;
    }

    .about-content p {
        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 20px;
    }


    /* IMAGE */

    .about-image {
        width: 100%;

        border-radius: 15px;
    }

    .about-image img {
        width: 100%;

        height: 320px;

        min-height: 0;

        border-radius: 15px;
    }


    /* BUTTON */

    .about-btn {
        width: auto;

        max-width: 100%;

        box-sizing: border-box;

        padding: 14px 28px;

        font-size: 14px;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .about-section {
        padding: 60px 16px;
    }

    .about-container {
        gap: 28px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-image img {
        height: 280px;
    }

    .about-btn {
        padding: 13px 24px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6510b0b *//*==================================================
                WHAT WE OFFER
==================================================*/

.services-section {
    background: #222222;
    padding: 100px 6%;
    overflow: hidden;
}


/*==================================================
                SECTION HEADING
==================================================*/

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    color: #ffc400;

    font-size: 52px;
    font-weight: 700;

    line-height: 1.2;

    margin: 0 0 20px;
}

.section-heading p {
    color: #d8d8d8;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;
    font-size: 17px;
}


/*==================================================
                SERVICES GRID
==================================================*/

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    width: 100%;
}


/*==================================================
                SERVICE CARD
==================================================*/

.service-card {
    background: #000000;

    border: 2px solid transparent;

    border-radius: 18px;

    padding: 40px 30px;

    transition: 0.35s ease;

    text-align: center;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    min-height: 410px;

    box-sizing: border-box;
}

.service-card:hover {
    border-color: #ffc400;

    transform: translateY(-12px);

    box-shadow:
        0 20px 40px rgba(255, 196, 0, 0.15);
}


/*==================================================
                SERVICE ICON
==================================================*/

.service-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #111111;

    border: 2px solid #ffc400;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 34px;

    color: #ffc400;

    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    background: #ffc400;

    color: #000000;

    transform:
        rotate(8deg)
        scale(1.08);
}


/*==================================================
                SERVICE TITLE
==================================================*/

.service-card h3 {
    color: #ffffff;

    font-size: 24px;

    line-height: 1.3;

    margin: 0 0 18px;
}


/*==================================================
                SERVICE DESCRIPTION
==================================================*/

.service-card p {
    color: #cfcfcf;

    line-height: 1.75;

    margin: 0 0 35px;

    flex: 1;
}


/*==================================================
                SERVICE BUTTON
==================================================*/

.service-btn {
    display: inline-block;

    padding: 14px 30px;

    color: #000000;

    background: #ffc400;

    border: 2px solid #ffc400;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.35s ease;
}

.service-btn:hover {
    background: transparent;

    color: #ffc400;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    .services-section {
        padding: 80px 5%;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .service-card {
        min-height: 390px;

        padding: 35px 25px;
    }

}


/*==================================================
                MOBILE SERVICES
==================================================*/

@media (max-width: 768px) {

    .services-section {
        padding: 65px 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.65;
    }

    /* FORCE ONE CARD PER ROW */

    .services-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        width: 100%;

        gap: 20px;
    }

    .service-card {
        width: 100% !important;

        min-width: 0 !important;
        max-width: 100% !important;

        min-height: 0;

        padding: 32px 22px;

        box-sizing: border-box;
    }

    .service-icon {
        width: 70px;
        height: 70px;

        font-size: 29px;

        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 25px;
    }

    .service-btn {
        padding: 13px 26px;
        font-size: 14px;
    }
}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .services-section {
        padding: 55px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        width: 100% !important;
        max-width: 100% !important;

        padding: 28px 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 20px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-63b7f1f *//*==================================================
                WHY CHOOSE US
==================================================*/

.why-section {
    background: #000000;
    padding: 100px 6%;
    overflow: hidden;
}

.why-container {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 40% 60%;

    gap: 70px;

    align-items: center;
}


/*==================================================
                    LEFT
==================================================*/

.section-tag {
    color: #ffc400;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.why-left h2 {
    color: #ffffff;

    font-size: 46px;
    line-height: 1.2;

    margin: 20px 0;
}

.why-left p {
    color: #cfcfcf;

    font-size: 17px;
    line-height: 1.9;

    margin: 0;
}


/*==================================================
                    RIGHT
==================================================*/

.why-right {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


/*==================================================
                    WHY CARD
==================================================*/

.why-card {
    background: #111111;

    border: 2px solid transparent;

    border-radius: 16px;

    padding: 28px;

    display: flex;

    gap: 18px;

    box-sizing: border-box;

    transition: 0.35s ease;
}

.why-card:hover {
    border-color: #ffc400;

    transform: translateY(-8px);

    box-shadow:
        0 20px 35px rgba(255, 196, 0, 0.15);
}


/* ICON */

.why-card i {
    color: #ffc400;

    font-size: 28px;

    min-width: 40px;

    margin-top: 5px;
}


/* CARD TITLE */

.why-card h3 {
    color: #ffffff;

    font-size: 22px;

    line-height: 1.3;

    margin: 0 0 12px;
}


/* CARD TEXT */

.why-card p {
    color: #cfcfcf;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    .why-section {
        padding: 80px 5%;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 800px;
    }

    .why-left {
        text-align: center;
    }

    .why-left h2 {
        font-size: 40px;
    }

    .why-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    .why-section {
        padding: 65px 20px;
    }

    .why-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* LEFT */

    .why-left {
        text-align: center;
    }

    .section-tag {
        font-size: 14px;

        letter-spacing: 1.5px;
    }

    .why-left h2 {
        font-size: 30px;

        line-height: 1.2;

        margin: 15px 0 18px;
    }

    .why-left p {
        font-size: 15px;

        line-height: 1.7;
    }


    /*==================================================
                FORCE ONE BOX PER ROW
    ==================================================*/

    .why-right {
        display: grid !important;

        grid-template-columns: 1fr !important;

        width: 100%;

        gap: 16px;
    }


    /* CARD */

    .why-card {
        width: 100% !important;

        min-width: 0 !important;

        max-width: 100% !important;

        padding: 22px;

        gap: 15px;

        box-sizing: border-box;

        border-radius: 14px;
    }


    /* ICON */

    .why-card i {
        font-size: 25px;

        min-width: 35px;

        margin-top: 3px;
    }


    /* TITLE */

    .why-card h3 {
        font-size: 20px;

        line-height: 1.3;

        margin-bottom: 8px;
    }


    /* TEXT */

    .why-card p {
        font-size: 14px;

        line-height: 1.65;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .why-section {
        padding: 55px 16px;
    }

    .why-left h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-card p {
        font-size: 14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4fda58a *//*==================================================
                    OUR PROCESS
==================================================*/

.process-section {
    background: #222222;
    padding: 100px 6%;
    overflow: hidden;
}


/*==================================================
                    HEADING
==================================================*/

.process-heading {
    text-align: center;
    margin-bottom: 70px;
}

.process-heading span {
    color: #ffc400;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.process-heading h2 {
    color: #ffffff;

    font-size: 48px;
    line-height: 1.2;

    margin: 18px 0 0;
}


/*==================================================
                    GRID
==================================================*/

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

    width: 100%;
}


/*==================================================
                    PROCESS CARD
==================================================*/

.process-card {
    background: #000000;

    border: 2px solid transparent;

    border-radius: 18px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    box-sizing: border-box;

    transition: 0.35s ease;
}

.process-card:hover {
    border-color: #ffc400;

    transform: translateY(-12px);

    box-shadow:
        0 20px 40px rgba(255, 196, 0, 0.15);
}


/*==================================================
                    STEP NUMBER
==================================================*/

.step-number {
    position: absolute;

    top: -18px;
    left: 50%;

    transform: translateX(-50%);

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #ffc400;

    color: #000000;

    display: flex;

    justify-content: center;
    align-items: center;

    font-weight: 700;
    font-size: 18px;
}


/*==================================================
                    ICON
==================================================*/

.process-card i {
    color: #ffc400;

    font-size: 42px;

    margin-top: 25px;
    margin-bottom: 25px;
}


/*==================================================
                    TITLE
==================================================*/

.process-card h3 {
    color: #ffffff;

    font-size: 24px;

    line-height: 1.3;

    margin: 0 0 18px;
}


/*==================================================
                    PARAGRAPH
==================================================*/

.process-card p {
    color: #cfcfcf;

    font-size: 15px;

    line-height: 1.8;

    margin: 0;
}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 1024px) {

    .process-section {
        padding: 80px 5%;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .process-heading {
        margin-bottom: 55px;
    }

    .process-heading h2 {
        font-size: 40px;
    }

    .process-card {
        padding: 35px 25px;
    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    .process-section {
        padding: 65px 20px;
    }


    /* HEADING */

    .process-heading {
        margin-bottom: 45px;
    }

    .process-heading span {
        font-size: 14px;

        letter-spacing: 1.5px;
    }

    .process-heading h2 {
        font-size: 30px;

        line-height: 1.2;

        margin-top: 14px;
    }


    /*==================================================
            FORCE ONE CARD PER ROW
    ==================================================*/

    .process-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        width: 100%;

        gap: 20px;
    }


    /* CARD */

    .process-card {
        width: 100% !important;

        min-width: 0 !important;

        max-width: 100% !important;

        padding: 35px 22px;

        border-radius: 16px;

        box-sizing: border-box;
    }


    /* STEP NUMBER */

    .step-number {
        width: 50px;
        height: 50px;

        top: -16px;

        font-size: 16px;
    }


    /* ICON */

    .process-card i {
        font-size: 36px;

        margin-top: 22px;
        margin-bottom: 20px;
    }


    /* TITLE */

    .process-card h3 {
        font-size: 21px;

        line-height: 1.3;

        margin-bottom: 12px;
    }


    /* TEXT */

    .process-card p {
        font-size: 14px;

        line-height: 1.65;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .process-section {
        padding: 55px 16px;
    }

    .process-heading h2 {
        font-size: 28px;
    }

    .process-grid {
        grid-template-columns: 1fr !important;

        gap: 16px;
    }

    .process-card {
        padding: 32px 20px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ac3b040 *//*==================================================
                    TESTIMONIALS
==================================================*/

.testimonial-section {
    background: #000000;

    padding: 100px 0;

    overflow: hidden;
}


/*==================================================
                    HEADING
==================================================*/

.testimonial-heading {
    text-align: center;

    margin-bottom: 60px;

    padding: 0 20px;

    box-sizing: border-box;
}

.testimonial-heading span {
    color: #ffc400;

    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.testimonial-heading h2 {
    color: #ffffff;

    font-size: 46px;

    line-height: 1.2;

    margin: 15px 0 0;
}


/*==================================================
                    MARQUEE
==================================================*/

.marquee {
    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    margin-bottom: 30px;
}

.marquee-content {
    display: inline-flex;

    gap: 25px;

    animation: scroll 40s linear infinite;

    will-change: transform;
}

.reverse .marquee-content {
    animation: scrollReverse 40s linear infinite;
}


/*==================================================
                TESTIMONIAL CARD
==================================================*/

.testimonial-card {
    flex: 0 0 380px;

    width: 380px;

    background: #222222;

    border: 2px solid transparent;

    border-radius: 18px;

    padding: 30px;

    white-space: normal;

    box-sizing: border-box;

    transition: 0.35s ease;
}

.testimonial-card:hover {
    border-color: #ffc400;

    transform: translateY(-8px);
}


/*==================================================
                    CARD CONTENT
==================================================*/

.testimonial-card h3 {
    color: #ffc400;

    margin: 0 0 15px;

    font-size: 20px;

    line-height: 1.3;
}

.testimonial-card p {
    color: #d4d4d4;

    line-height: 1.8;

    font-size: 15px;

    margin: 0 0 20px;
}

.testimonial-card h4 {
    color: #ffffff;

    font-size: 17px;

    line-height: 1.3;

    margin: 0;
}


/*==================================================
                    ANIMATION
==================================================*/

@keyframes scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes scrollReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 992px) {

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-heading {
        margin-bottom: 50px;
    }

    .testimonial-heading h2 {
        font-size: 40px;
    }

    .testimonial-card {
        flex: 0 0 340px;

        width: 340px;

        padding: 27px;
    }

}
/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    /* SECTION */

    .testimonial-section {
        padding: 65px 0;
    }


    /* HEADING */

    .testimonial-heading {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonial-heading span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .testimonial-heading h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-top: 10px;
    }


    /* MARQUEE */

    .marquee {
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .marquee-content {
        display: inline-flex;
        gap: 14px;

        animation: scroll 40s linear infinite;
        will-change: transform;
    }

    .reverse .marquee-content {
        animation: scrollReverse 40s linear infinite;
    }


    /* TESTIMONIAL CARD */

    .testimonial-card {
        flex: 0 0 270px;

        width: 270px;
        max-width: 270px;

        padding: 20px;

        border-radius: 14px;

        box-sizing: border-box;

        white-space: normal;
    }


    /* CARD TITLE */

    .testimonial-card h3 {
        font-size: 17px;

        line-height: 1.3;

        margin: 0 0 10px;
    }


    /* REVIEW */

    .testimonial-card p {
        font-size: 13px;

        line-height: 1.55;

        margin: 0 0 15px;
    }


    /* CUSTOMER NAME */

    .testimonial-card h4 {
        font-size: 14px;

        line-height: 1.3;

        margin: 0;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    /* SECTION */

    .testimonial-section {
        padding: 55px 0;
    }


    /* HEADING */

    .testimonial-heading {
        margin-bottom: 35px;

        padding: 0 16px;
    }

    .testimonial-heading span {
        font-size: 11px;

        letter-spacing: 1px;
    }

    .testimonial-heading h2 {
        font-size: 22px;

        line-height: 1.2;

        margin-top: 8px;
    }


    /* MARQUEE */

    .marquee {
        margin-bottom: 16px;
    }

    .marquee-content {
        gap: 12px;
    }


    /* SMALLER CARD */

    .testimonial-card {
        flex: 0 0 250px;

        width: 250px;
        max-width: 250px;

        padding: 18px;

        border-radius: 13px;
    }


    /* CARD TITLE */

    .testimonial-card h3 {
        font-size: 16px;

        line-height: 1.3;

        margin-bottom: 9px;
    }


    /* REVIEW */

    .testimonial-card p {
        font-size: 12.5px;

        line-height: 1.55;

        margin-bottom: 13px;
    }


    /* CUSTOMER NAME */

    .testimonial-card h4 {
        font-size: 13px;

        line-height: 1.3;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1ebf958 *//*==================================
        FAQ SECTION
==================================*/

.faq-section{
    background:#222222;
    padding:100px 6%;
}

.faq-container{
    max-width:1100px;
    margin:auto;
}

/*==========================
        Heading
==========================*/

.faq-heading{
    text-align:center;
    margin-bottom:60px;
}

.faq-heading span{
    display:block;
    color:#ffc400;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.faq-heading h2{
    color:#ffffff;
    font-size:48px;
    font-weight:700;
    margin:0;
}

/*==========================
        FAQ Wrapper
==========================*/

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*==========================
        FAQ Card
==========================*/

.faq-item{

    background:#000;

    border:2px solid #333;

    border-radius:15px;

    overflow:hidden;

    transition:.35s ease;

}

.faq-item:hover{

    border-color:#ffc400;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(255,196,0,.15);

}

/*==========================
        Question
==========================*/

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    cursor:pointer;

}

.faq-question span{

    color:#fff;

    font-size:20px;

    font-weight:600;

    line-height:1.5;

}

.faq-question i{

    color:#ffc400;

    font-size:22px;

    transition:.35s ease;

    flex-shrink:0;

}

/*==========================
        Answer
==========================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease,
               padding .45s ease;

    padding:0 30px;

}

.faq-answer p{

    color:#cfcfcf;

    line-height:1.9;

    font-size:16px;

    margin:0;

    padding-bottom:25px;

}

/*==========================
        Hover Effect
==========================*/

.faq-item:hover .faq-answer{

    max-height:300px;

    padding-top:5px;

}

.faq-item:hover .faq-question i{

    transform:rotate(45deg);

}

/*==========================
        Tablet
==========================*/

@media(max-width:992px){

.faq-heading h2{

font-size:40px;

}

.faq-question{

padding:22px 25px;

}

.faq-question span{

font-size:18px;

}

}

/*==================================================
                    FAQ MOBILE
==================================================*/

@media (max-width: 768px) {

    /* SECTION */

    .faq-section {
        padding: 65px 20px;
    }


    /* CONTAINER */

    .faq-container {
        width: 100%;
        max-width: 100%;
    }


    /* HEADING */

    .faq-heading {
        margin-bottom: 40px;
    }

    .faq-heading span {
        font-size: 12px;

        letter-spacing: 1.2px;

        margin-bottom: 10px;
    }

    .faq-heading h2 {
        font-size: 26px;

        line-height: 1.2;
    }


    /* FAQ WRAPPER */

    .faq-wrapper {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }


    /* FAQ CARD */

    .faq-item {
        width: 100%;

        border-radius: 13px;

        box-sizing: border-box;
    }


    /* QUESTION */

    .faq-question {
        width: 100%;

        padding: 17px 18px;

        gap: 15px;

        box-sizing: border-box;
    }


    /* QUESTION TEXT */

    .faq-question span {
        font-size: 15px;

        line-height: 1.45;

        font-weight: 600;

        text-align: left;

        flex: 1;
    }


    /* PLUS ICON */

    .faq-question i {
        font-size: 18px;

        flex-shrink: 0;
    }


    /* ANSWER */

    .faq-answer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-answer p {
        font-size: 14px;

        line-height: 1.65;

        padding-bottom: 18px;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    /* SECTION */

    .faq-section {
        padding: 55px 16px;
    }


    /* HEADING */

    .faq-heading {
        margin-bottom: 32px;
    }

    .faq-heading span {
        font-size: 11px;

        letter-spacing: 1px;

        margin-bottom: 8px;
    }

    .faq-heading h2 {
        font-size: 23px;
    }


    /* GAP */

    .faq-wrapper {
        gap: 12px;
    }


    /* CARD */

    .faq-item {
        border-radius: 12px;
    }


    /* QUESTION */

    .faq-question {
        padding: 15px 16px;

        gap: 12px;
    }


    /* TEXT */

    .faq-question span {
        font-size: 14px;

        line-height: 1.45;
    }


    /* ICON */

    .faq-question i {
        font-size: 17px;
    }


    /* ANSWER */

    .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .faq-answer p {
        font-size: 13px;

        line-height: 1.6;

        padding-bottom: 16px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7f34dcb *//*==========================
        CTA SECTION
==========================*/

.cta-section{

    background:#000;

    padding:110px 6%;

}

.cta-container{

    max-width:1100px;

    margin:auto;

    background:#222222;

    border:2px solid transparent;

    border-radius:20px;

    padding:70px 60px;

    text-align:center;

    transition:.35s;

}

.cta-container:hover{

    border-color:#ffc400;

    box-shadow:0 20px 40px rgba(255,196,0,.12);

}

.cta-subtitle{

    display:block;

    color:#ffc400;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-container h2{

    color:#fff;

    font-size:50px;

    line-height:1.3;

    margin-bottom:25px;

}

.cta-container h2 span{

    color:#ffc400;

}

.cta-container p{

    color:#d4d4d4;

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

/* Buttons */

.cta-btn{

    padding:16px 40px;

    border-radius:8px;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

/* Primary */

.primary-btn{

    background:#ffc400;

    color:#000;

}

.primary-btn:hover{

    background:transparent;

    color:#ffc400;

    border:2px solid #ffc400;

}

/* Secondary */

.secondary-btn{

    border:2px solid #ffc400;

    color:#ffc400;

}

.secondary-btn:hover{

    background:#ffc400;

    color:#000;

}

/* Tablet */

@media(max-width:992px){

.cta-container{

padding:55px 40px;

}

.cta-container h2{

font-size:40px;

}

}

/* Mobile */

@media(max-width:768px){

.cta-section{

padding:70px 5%;

}

.cta-container{

padding:45px 25px;

}

.cta-container h2{

font-size:30px;

}

.cta-container p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

}

.cta-btn{

width:100%;

text-align:center;

}

}

/*==================================================
                    CTA MOBILE
==================================================*/

@media (max-width: 768px) {

    /* SECTION */

    .cta-section {
        padding: 65px 20px;
    }


    /* CTA CONTAINER */

    .cta-container {
        width: 100%;

        padding: 40px 22px;

        border-radius: 16px;

        box-sizing: border-box;
    }


    /* SUBTITLE */

    .cta-subtitle {
        font-size: 12px;

        letter-spacing: 1.3px;

        margin-bottom: 12px;
    }


    /* HEADING */

    .cta-container h2 {
        font-size: 26px;

        line-height: 1.25;

        margin-bottom: 18px;
    }


    /* DESCRIPTION */

    .cta-container p {
        font-size: 14px;

        line-height: 1.65;

        max-width: 100%;
    }


    /* BUTTONS */

    .cta-buttons {
        display: flex;

        flex-direction: column;

        gap: 12px;

        margin-top: 30px;

        width: 100%;
    }


    /* BUTTON */

    .cta-btn {
        width: 100%;

        padding: 14px 20px;

        font-size: 14px;

        text-align: center;

        box-sizing: border-box;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    /* SECTION */

    .cta-section {
        padding: 55px 16px;
    }


    /* CONTAINER */

    .cta-container {
        padding: 35px 18px;

        border-radius: 14px;
    }


    /* SUBTITLE */

    .cta-subtitle {
        font-size: 11px;

        letter-spacing: 1px;

        margin-bottom: 10px;
    }


    /* HEADING */

    .cta-container h2 {
        font-size: 23px;

        line-height: 1.25;

        margin-bottom: 15px;
    }


    /* TEXT */

    .cta-container p {
        font-size: 13px;

        line-height: 1.6;
    }


    /* BUTTONS */

    .cta-buttons {
        gap: 10px;

        margin-top: 25px;
    }


    /* BUTTON */

    .cta-btn {
        padding: 13px 18px;

        font-size: 13px;

        border-radius: 7px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-859797b *//* =========================
       CONTACT SECTION
========================= */

.contact-section {
    background: #222222;
    padding: 90px 20px;
    color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADING */

.contact-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.contact-heading span {
    display: block;
    color: #ffc400;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-heading h2 {
    margin: 0 0 15px;
    font-size: 42px;
    font-weight: 800;
}

.contact-heading p {
    margin: 0;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.7;
}


/* CONTACT GRID */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* CONTACT CARD */

.contact-card {
    background: #121212;
    border: 1px solid rgba(255, 196, 0, 0.15);
    padding: 35px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 196, 0, 0.6);
}


/* ICON */

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 196, 0, 0.08);
    border: 1px solid rgba(255, 196, 0, 0.3);

    border-radius: 50%;

    color: #ffc400;
    font-size: 22px;
}


/* TEXT */

.contact-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #ffffff;
}

.contact-card p {
    margin: 0 0 12px;
    color: #999999;
    font-size: 14px;
}

.contact-card a {
    color: #ffc400;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.contact-card a:hover {
    color: #ffffff;
}


/* =========================
       TABLET
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/*==================================================
                    CONTACT MOBILE
==================================================*/

@media (max-width: 550px) {

    /* SECTION */

    .contact-section {
        padding: 60px 16px;
    }


    /* CONTAINER */

    .contact-container {
        width: 100%;
        max-width: 100%;
    }


    /* HEADING */

    .contact-heading {
        margin-bottom: 38px;
        padding: 0 5px;
    }

    .contact-heading span {
        font-size: 11px;

        letter-spacing: 1.2px;

        margin-bottom: 9px;
    }

    .contact-heading h2 {
        font-size: 26px;

        line-height: 1.2;

        margin-bottom: 12px;
    }

    .contact-heading p {
        font-size: 14px;

        line-height: 1.6;
    }


    /*==================================================
                CONTACT GRID
    ==================================================*/

    .contact-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        width: 100%;

        gap: 14px;
    }


    /*==================================================
                CONTACT CARD
    ==================================================*/

    .contact-card {
        width: 100%;

        padding: 26px 18px;

        border-radius: 12px;

        box-sizing: border-box;
    }


    /* ICON */

    .contact-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 15px;

        font-size: 19px;
    }


    /* TITLE */

    .contact-card h3 {
        font-size: 18px;

        line-height: 1.3;

        margin-bottom: 7px;
    }


    /* DESCRIPTION */

    .contact-card p {
        font-size: 13px;

        line-height: 1.5;

        margin-bottom: 9px;
    }


    /* LINK */

    .contact-card a {
        font-size: 13px;

        line-height: 1.4;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 400px) {

    .contact-section {
        padding: 50px 14px;
    }


    /* HEADING */

    .contact-heading {
        margin-bottom: 32px;
    }

    .contact-heading span {
        font-size: 10px;

        letter-spacing: 1px;
    }

    .contact-heading h2 {
        font-size: 23px;

        margin-bottom: 10px;
    }

    .contact-heading p {
        font-size: 13px;

        line-height: 1.55;
    }


    /* GRID */

    .contact-grid {
        grid-template-columns: 1fr !important;

        gap: 12px;
    }


    /* CARD */

    .contact-card {
        padding: 23px 16px;

        border-radius: 11px;
    }


    /* ICON */

    .contact-icon {
        width: 48px;
        height: 48px;

        font-size: 18px;

        margin-bottom: 13px;
    }


    /* TITLE */

    .contact-card h3 {
        font-size: 17px;
    }


    /* TEXT */

    .contact-card p {
        font-size: 12px;
    }


    /* LINK */

    .contact-card a {
        font-size: 12px;
    }

}/* End custom CSS */