/* =========================
GLOBAL
========================= */

.container{
    width:94%;
    max-width:1420px;
    margin:auto;
    box-sizing: border-box;
}

img{
    width:100%;
    display:block;
}

#ai-agent{
    background:#fff;
}


/* =========================
HERO
========================= */

.uiux-hero{
    padding:120px 0 80px;
     background-image: url(../../assets/images/static/banner/services_banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content{
    margin:0 auto;
    text-align:center;
}
.hero-tag{
    font-size: 20px;
    font-weight:700;
    margin: 0 0 15px 0;
    letter-spacing: 0;
}
.hero-content h1{
    font-size:72px;
    line-height:1;
    font-weight:700;
    color:#111;
    text-transform:capitalize;
}
.hero-cntnt-hdng-bl, .hero-tag{
    color: #0816fb;
}
.hero-cntnt-hdng-blck{ 
    color: #010101
}
.hero-content p{
    margin:25px auto 0;
    font-size:28px;
    font-weight: 500;
    line-height:1.2;
    color:#282828;
}

.hero-btn {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 28px;
    border-radius: 60px;
    background: linear-gradient(90deg, #2016ff, #1dd8ff);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

.hero-btn span{
    font-size:24px;
    text-align: center;
    margin: -6px 0 0 10px;
}



/* =========================
Agentic AI Features
========================= */


.agentic-section, .services-section{
    position:relative;
    border-top:1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding:80px 0 40px 0;
    margin: 20px 0 0 0;
}

.agentic-section .container::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left: 20px;
    width:1px;
    background:#e5e5e5;
}

.agentic-section .container::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    right: 20px;
    width:1px;
    background:#e5e5e5;
}

.agentic-heading{
    text-align:center;
    margin:0 auto 50px;
}

.agentic-heading h2{
    font-size:42px;
    font-weight:700;
    color:#010101;
    margin-top:0;
}

.agentic-heading p{
    font-size:24px;
    margin-top:0;
    color:#474747;
    line-height:1.3;
}

.agentic-grid, .services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.agentic-card, .service-card{
    background:#f4f4f8;
    border-radius:16px;
    padding:30px 20px;
    transition:.3s;
}

.agentic-card:hover, .service-card{
    transform:translateY(-6px);
}

.agentic-card img, .service-icon img{
    width:60px;
    margin-bottom:20px;
}

.agentic-card h3, .services-grid h3{
    font-size:24px;
    color:#010101;
    margin-bottom:12px;
}

.agentic-card p, .services-grid p{
    font-size: 15px;
    color:#010101;
    line-height:1.3;
}

/* =========================
Industry Cards
========================= */

.industry-section{
    padding:80px 0 100px;
}
.industry-section-heading h2{
    font-size: 60px;
    font-weight: 700;
    color: #010101;
    margin: 10px 0;
}
.industry-section-heading p{
    font-size: 20px;
    font-weight: 500;
    color: #474747;
    line-height:1.3;
    margin-top:0;

}
.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top: 40px;
}

.industry-card{
    padding:30px 20px;
    border-radius:18px;
}

.real-estate{
    background:#ece8ff;
}

.hospitality{
    background:#dff7f2;
}

.restaurant{
    background:#fff1cf;
}

.fintech{
    background:#e9f0ff;
}

.industry-card img{
    width:100px;
    margin-bottom:60px;
}

.industry-card h3{
    font-size:28px;
    color: #010101;
    margin-bottom:12px;

}
.industry-card p{
    font-size:16px;
    color: #474747;
    line-height: 1.3;
    font-weight: 500;

}

/* =========================
50+ AI Agents Section
========================= */

.agents-showcase{
    padding-bottom:100px;
}

.agents-wrapper{
    background:#f4f4f8;
    border: 1px solid #e1e1ec;
    border-radius:20px;
    display:grid;
    grid-template-columns:1fr .7fr;
    gap:40px;
    align-items:center;
}
.agents-left{
    padding: 30px 20px;
}
.agents-left h2{
    font-size:40px;
    color: #010101;
    margin-top: 0;
    margin-bottom:10px;
}

.agents-left p{
    font-size:18px;
    color: #474747;
    font-weight: 500;
}

.agent-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:30px 0;
}

.agent-tags span{
    background:#eceaec;
    padding:10px 18px;
    border-radius:50px;
    font-size:15px;
    color: #010101;
    font-weight: 600;
}
.agents-right{
    padding-right: 40px;
    display: flex;
    align-items: end;
    height: 100%;
}
.agents-right img{
    width: 100%;
    position: relative;
    bottom: 0;
}

.team-link{
    display: flex;
    gap: 10px;
    font-size:15px;
    color: #0817fb;
    font-weight: 600;
}
.team-link span img{
    width: 24px;
    
    margin-top: -3px;
}
.team-link span img{
    width: 22px;
}



/* =========================
CTA Banner
========================= */

.cta-box{
    border-radius:24px;
    overflow:hidden;
    background-image: url(../../assets/images/static/banner/build_ai_agent_banner.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display:grid;
    grid-template-columns:1fr 550px;
    align-items:center;
}

.cta-left{
    padding:30px 20px;
    color:#fff;
}

.cta-left h2{
    font-size:42px;
    line-height:1.2;
}

.cta-left p{
    margin:20px 0 30px;
    opacity:.9;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    font-size: 14px;
    font-weight: 500;
    padding:15px 28px;
    background:#2458ff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}



/* ===================================
 AGENTIC AI SECTION
=================================== */

.agentic-stack-section{
    min-height:100vh;
    padding:100px 0;
    box-sizing: border-box;
}

.stack-scroll{
    cursor:grab;
    overscroll-behavior:contain;
}
#aiAgent .page-container{
    padding: 0;
}
.agentic-stack-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    box-sizing: border-box;
}


.stack-left{
    display:flex;
    flex-direction:column;
    height:82vh;
}

.stack-heading{
    flex-shrink:0;
    margin-bottom:30px;
}

.stack-heading h2{
    font-size:46px;
    line-height:1.1;
    font-weight:700;
    color:#111;
    margin-bottom: 20px;
    margin-top: 0;
}

.stack-heading span{
    color:#2952ff;
}


.stack-scroll{
    flex:1;
    overflow-y:auto;
    padding-right:15px;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.stack-scroll::-webkit-scrollbar{
    display:none;
}


.stack-item{
    position:relative;
    display:flex;
    gap:24px;
    padding-bottom:40px;
}

.stack-item:last-child{
    padding-bottom:0;
}

.stack-item::before{
    content:"";
    position:absolute;
    top:0;
    width:1px;
    height:100%;
    background:#dddddd;
}


.stack-number{
    min-width:40px;
    position:relative;
    padding-left: 10px;
    font-size:24px;
    font-weight:700;
    color:#bcbcbc;
}

.stack-number::before{
    content:"";
    position:absolute;
    left:0;
    top: 2px;
    width:2px;
    height:24px;

    background:#0816fb;
}


.stack-content{
    flex:1;
}

.stack-content h3{
    margin:0 0 15px;
    font-size:22px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
}

.stack-content p{
    margin:0 0 16px;
    font-size:15px;
    font-weight:500;
    line-height:1.4;
    color:#474747;
}

.stack-content h4{
    margin:18px 0 8px;
    font-size:17px;
    font-weight:700;
    color:#0816fb;
}


.stack-right{
    position:sticky;
    top:40px;
    height:fit-content;
}

.stack-right-content p{
    font-size:20px;
    line-height:1.4;
    color:#474747;
    margin-top: 0;
    margin-bottom:28px;
}

.stack-right-content img,
.stack-right-content video{
    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:24px;
    display:block;
    margin-top: 20px;
}


/* =========================
Services Section
========================= */

.services-container{
    max-width:1240px;
    margin:0 auto;
    padding:0 22px;
}


.service-card{
    height: auto;
}
.services-section .page-container::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left: 20px;
    width:1px;
    background:#e5e5e5;
}

.services-section .page-container::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    right: 20px;
    width:1px;
    background:#e5e5e5;
}

.services-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    margin-bottom:55px;
}

.services-tag{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#2340ff;
    margin-bottom:15px;
}

.services-left h2{
    font-size:50px;
    line-height:1.2;
    font-weight:700;
    color:#000;
    margin-bottom:14px;
    margin-top:0;
}

.services-left p{
    font-size:20px;
    line-height:1.3;
    color:#202020;
    font-weight:500;
}

.services-right p{
    font-size:16px;
    line-height:1.55;
    color:#4a4a4a;
    width:90%;
     font-weight:500;
}

/* =========================
Briefing Section
========================= */
.brief-section{
    padding: 100px 0;
}
.ai-adds-stack-heading{
    text-align: center;
    margin-bottom: 40px;
}
.ai-adds-stack-heading h2{
    font-size: 60px;
    margin-bottom: 20px;
    margin-top: 0;
}
.ai-adds-stack-heading p{
    font-size: 22px;
    margin-bottom: 20px;
}



/** Blog section**/
.blog-section {
    width:100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-sec .title {
    font-family: 'DM Serif Text', serif !important;
}
.industry-section .title {
    font-size: 60px;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
    color: var(--color-primary-heading);
}

.industry-section .subtitle {
    color: #2D2D2D;
    font-size: 22px;
    padding: 10px 0;
    text-align: left;
    margin: unset;
    margin-bottom: 30px;
}

.blog-card {
    width: 31.6%;
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 5px;
    color: #000;
}

.blog-card .date {
    font-size: 14px;
    color: #848484;
    margin: 0;
    font-weight: 500;
}
.blog-sec .title{
    font-family: 'DM Serif Text', serif !important;
}


/* =========================
   AI Chatbot
========================= */

/* POWERED BY SECTION */

.powered-by{
    padding:40px 0 0 0;
    background:#fff;
}
.powered-by .page-container{
    border-top:1px solid #ececec;
}
.powered-title{
    text-align:center;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    color:#9c9c9c;
    text-transform:uppercase;
    margin-bottom:30px;
}

/* LOGOS GRID */

.powered-logos{
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    align-items:center;
    gap:40px;
}

.logo-item{
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo-item img{
    max-width:100%;
    height:38px;
    width:auto;
    object-fit:contain;
    transition:all .3s ease;
}

.logo-item:hover img{
    transform:scale(1.05);
}


/*=========================
CHATBOT FEATURES SECTION
=========================*/


.chatbot-features{
    background: #fbfafd;
    padding: 40px 0;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

/* FEATURE GRID */

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* CARD */

.feature-card{
    background:#fff;
    border:1px solid #e7e7ec;
    border-radius:22px;
    padding:10px 24px;
    min-height:122px;
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-card h3{
    font-size:20px;
    line-height:1.3;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.feature-card p{
    font-size:14px;
    line-height:1.55;
    color:#555;
    margin:0;
}

/* =========================
   CONVERSATION SECTION
========================= */

.conversation-section .page-container, .industry-section .page-container{
    border-bottom: 1px solid #ececec;
}
.conversation-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/*  LEFT CONTENT */

.conversation-content{
    flex:0 0 48%;
}

.conversation-heading h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    color:#010101;
    margin-bottom:28px;
}
.conversation-heading{
    margin-bottom: 60px;
}
.conversation-heading p{
    font-size:18px;
    line-height:1.3;
    font-weight:500;
    color:#474747;
}

.conversation-heading h2 span{
    color:#2338ff;
}

.description{
   width:85%;
    font-size:16px;
    line-height:1.3;
    color:#555;
    margin-bottom:45px;
    font-weight:500;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    position:relative;
    padding-left:15px;
    margin-bottom:18px;
    font-size:16px;
    color:#010101;
    font-weight:500;
    line-height:1;
}

.feature-list li::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#c4c6ca;
    position:absolute;
    left:0;
    top:0.5em; /* aligns with first line of text */
    transform:translateY(-50%);
}

/*  RIGHT IMAGE */

.conversation-image{
    flex:0 0 47%;
}

.conversation-image img{
    width:100%;
    display:block;
}



/* ===========================
CONTACT SECTION
=========================== */

.contact-section{
    border-top:1px solid #e9e9e9;
    padding: 20px 0;
}

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}

/* LEFT CONTENT */

.contact-content{
    flex:1;
    max-width:520px;
    margin-top: -40px;
}

.contact-heading{
    margin-bottom:30px;
}

.contact-heading h2{
    font-size:45px;
    line-height:1;
    font-weight:600;
    color:#000;
    margin-bottom:10px;
}

.contact-heading p{
    font-size:26px;
    line-height:1.3;
    color:#111;
    font-weight:400;
    margin-top: 0;
}

.contact-subheading p{
    font-size: 13px;
    line-height:1.3;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top: 90px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:18px;
    color:#222;
    font-weight:400;
}

.contact-item span:last-child{
    font-size:16px;
    line-height:1;
    color:#333;
    font-weight: 600;
}
/* ICONS */

.icon{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.location{
    color:#2748ff;
}

.mail{
    color:#20d3f7;
}

.phone{
    color:#f39c12;
}

/* MAP  */

.contact-map{
    width:620px;
    height:365px;
    overflow:hidden;
    border-radius:24px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
    border-radius:24px;
}


/* ===================================
FAQ Section
=================================== */

#aiAdds .page-container, #aiAgent .page-container{
    padding: 0;
}
#aiAdds .faq-section{
    padding-top: 100px;
}
#aiChatbot .faq-section{
    padding-top: 100px;
}
#aiChatbot .faq-section .page-container{
    padding: 0;
}


#aiChatbot .industry-section{
    padding: 0 0 100px 0;
}


/* ===================================
LARGE DESKTOP
=================================== */

@media(min-width:1480px){

    .agentic-section .container::before, .services-section .page-container::before{
        left:calc(50% - 730px);
    }
    
    .agentic-section .container::after, .services-section .page-container::after{
        right:calc(50% - 730px);
    }


}

/* ===================================
RESPONSIVE - 1400px
=================================== */

@media(max-width:1400px){

    .cta-section{
        width:calc(100% - 120px);
        padding:100px 35px;
    }

    .cta-title{
        font-size:44px;
    }

}

/* ===================================
RESPONSIVE - 1200px
=================================== */

@media(max-width:1200px){

    .hero-content h1{
        font-size:60px;
    }

    .section-title h2{
        font-size:42px;
    }

    .faq-heading h2{
        font-size:56px;
    }

    .process-left h3{
        font-size:24px;
    }

    .cta-section{
        width:calc(100% - 80px);
        padding:90px 30px;
    }

    .logo{
        width:150px;
    }

    .logo-underline{
        width:100px;
    }

    .cta-title{
        font-size:38px;
        line-height:1.15;
    }

    .cta-desc{
        font-size:14px;
        max-width:760px;
    }
     .contact-heading h2{
        font-size:52px;
    }

    .contact-heading p{
        font-size:22px;
    }

    .contact-map{
        flex:0 0 520px;
    }

}

/* ===================================
RESPONSIVE - 1180px
=================================== */

@media(max-width:1180px){

    .cta-box{
        border-radius:24px;
        overflow:hidden;
        background-image:url(../../assets/images/static/banner/build_ai_agent_banner.webp);
        background-size:100% 100%;
        background-position:center;
        background-repeat:no-repeat;
        display:grid;
        grid-template-columns:1fr;
        align-items:center;
    }

}

/* ===================================
RESPONSIVE - 991px
=================================== */

@media(max-width:991px){

    /* Agentic Stack */

    .agentic-stack-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .stack-left{
        height:auto;
    }

    .stack-scroll{
        overflow:visible;
    }

    .stack-heading h2{
        font-size:42px;
    }

    .stack-right{
        position:relative;
        top:auto;
    }

    .stack-right-content img,
    .stack-right-content video{
        height:auto;
    }

    /* Old AI Stack */

    .ai-tech-stack{
        height:auto;
    }

    .tech-container{
        grid-template-columns:1fr;
    }

    .tech-scroll{
        max-height:none;
        overflow:visible;
    }

    /* Layout */

    .agentic-grid,
    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .agents-wrapper,
    .cta-box{
        grid-template-columns:1fr;
    }

    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:46px;
    }

    .agents-right{
        padding:0;
    }

    /* CTA */

    .cta-section{
        width:calc(100% - 60px);
        padding:80px 25px;
        border-radius:28px;
        margin-bottom:70px;
    }

    .container{
        padding-left:24px;
        padding-right:24px;
    }

    .logo-wrapper{
        margin-bottom:28px;
    }

    .logo{
        width:130px;
    }

    .logo-underline{
        width:90px;
    }

    .cta-title{
        font-size:32px;
        letter-spacing:-1px;
    }

    .cta-desc{
        font-size:14px;
        line-height:1.8;
        max-width:100%;
    }

    .cta-btn{
        margin-top:35px;
        height:48px;
        padding:0 22px;
        font-size:13px;
        gap:10px;
    }

    .cta-btn span{
        font-size:22px;
    }

    

    /* AI Adds - services */
    .services-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .services-left h2{
        max-width:100%;
        font-size:42px;
    }

    .services-right p{
        max-width:100%;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-wrapper{
        flex-direction:column;
        gap:50px;
    }

    .contact-content{
        max-width:100%;
    }

    .contact-heading{
        margin-bottom:60px;
    }

    .contact-map{
        flex:0 0 auto;
        width:100%;
    }

    .contact-heading h2{
        font-size:48px;
    }

    .contact-heading p{
        font-size:22px;
    }

    .contact-item{
        font-size:20px;
    }

}

/* ===================================
RESPONSIVE - 767px
=================================== */

@media(max-width:767px){

    .agentic-grid,
    .industry-grid,
    .project-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .agents-wrapper,
    .cta-left{
        padding:30px 30px 0;
    }

    .agentic-card,
    .industry-card{
        padding:25px;
    }

    .cta-section{
        width:calc(100% - 32px);
        padding:70px 20px;
        border-radius:24px;
        margin-bottom:60px;
    }

    .container{
        padding-left:18px;
        padding-right:18px;
    }

    .logo{
        width:110px;
    }

    .logo-underline{
        width:75px;
        margin-top:10px;
    }

    .agents-left{
        padding:30px 0;
    }

    .cta-title{
        font-size:26px;
        line-height:1.2;
    }

    .cta-desc{
        font-size:13px;
        line-height:1.7;
    }

    .cta-btn{
        height:46px;
        padding:0 20px;
        font-size:12px;
        margin-top:30px;
    }

    .cta-btn span{
        font-size:18px;
        margin-bottom:2px;
    }

     /* AI Adds - services */

    .services-left h2{
        font-size:42px;
    }

    .services-left p,
    .services-right p{
        font-size:18px;
    }
    .service-card h3{
        font-size:22px;
    }
    .service-card p{
        font-size:18px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .service-card{
        min-height:auto;
        padding:22px;
    }

    .service-icon{
        margin-bottom:30px;
    }
    .contact-section{
        padding:60px 0;
    }

    .contact-heading{
        margin-bottom:40px;
    }

    .contact-heading h2{
        font-size:38px;
    }

    .contact-heading p{
        font-size:18px;
    }

    .contact-item{
        font-size:16px;
        gap:12px;
    }

    .icon{
        width:24px;
        height:24px;
        font-size:18px;
    }

    .contact-map img{
        border-radius:16px;
    }

}

/* ===================================
RESPONSIVE - 640px
=================================== */

@media(max-width:640px){

    .agentic-section .container::before,
    .agentic-section .container::after, .services-section .page-container::before, .services-section .page-container::after{
        display:none;
    }

}

/* ===================================
RESPONSIVE - 630px
=================================== */

@media(max-width:630px){


    .container{
        width:100%;
        padding:0 16px;
    }

    .hero-btn{
        margin-top:50px;
        gap:10px;
        padding:16px 28px;
        font-size:16px;
    }

    .hero-btn span{
        font-size:30px;
        text-align:center;
        margin:-4px 0 0 10px;
    }

    .section-title-img{
        width:300px;
    }

    .section-title-txt{
        width:100%;
        padding:0 16px;
    }

    .process-item{
        padding:30px 0;
    }

    .process-left{
        display:block;
        width:100%;
    }

    .process-number{
        width:50px;
        float:left;
        margin-top:10px;
    }

    .process-left h3{
        width:calc(100% - 50px);
        float:left;
        margin-top:10px;
        font-size:24px;
    }

}

/* ===================================
RESPONSIVE - 575px
=================================== */

@media(max-width:575px){

    .cta-section{
        width:calc(100% - 24px);
        padding:55px 16px;
        border-radius:20px;
    }

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .logo{
        width:90px;
    }

    .logo-underline{
        width:60px;
    }

    .cta-title{
        font-size:22px;
    }

    .cta-desc{
        font-size:12px;
    }

}

/* ===================================
RESPONSIVE - 420px
=================================== */

@media(max-width:420px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .cta-section{
        padding:50px 14px;
    }

    .cta-title{
        font-size:20px;
        line-height:1.25;
    }

    .cta-desc{
        font-size:11px;
        line-height:1.8;
    }

    .cta-btn{
        height:42px;
        padding:0 18px;
        font-size:11px;
    }

    .cta-btn span{
        font-size:16px;
    }

}

/* ===================================
RESPONSIVE - 350px
=================================== */

@media(max-width:350px){

    .cta-title{
        font-size:18px;
    }

    .cta-desc{
        font-size:10px;
    }

}

