/*=========================================
LANDING HERO
=========================================*/

.landing-hero{

    position:relative;
    overflow:hidden;
    padding:110px 0 100px;
    background:#ffffff;

}

/* Background */

.landing-hero::before{

    content:"";
    position:absolute;

    width:700px;
    height:700px;

    right:-220px;
    top:-150px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.12) 0%,
    rgba(59,130,246,.07) 45%,
    transparent 72%);

}

.landing-hero::after{

    content:"";

    position:absolute;

    left:-120px;
    bottom:-120px;

    width:400px;
    height:400px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(59,130,246,.08),
    transparent 70%);

}

.landing-hero .container{

    position:relative;
    z-index:2;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:520px 1fr;

    align-items:center;

    gap:70px;

}

/*==========================
LEFT CONTENT
==========================*/

.hero-content{

    position:relative;

}

.hero-subtitle{

    display:inline-block;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.hero-title{

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    color:#0F172A;

    margin-bottom:28px;

}

.hero-title span{

    color:#3B5BFF;

}

.hero-text{

    font-size:18px;

    line-height:1.8;

    color:#64748B;

    max-width:500px;

    margin-bottom:40px;

}

/*==========================
BUTTONS
==========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:38px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:linear-gradient(90deg,#2563EB,#7C3AED);

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    border-radius:12px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(59,130,246,.25);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:#fff;

    border:2px solid #E5E7EB;

    color:#0F172A;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    border-color:#2563EB;

    color:#2563EB;

}

/*==========================
FEATURES
==========================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#334155;

    font-size:15px;

    font-weight:600;

}

.hero-features svg{

    width:18px;

    height:18px;

    color:#2563EB;

    flex-shrink:0;

}

/*=========================================
RIGHT HERO IMAGE
=========================================*/

.hero-image{

    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;

}

.hero-image img{

    width:100%;
    max-width:650px;
    display:block;
    position:relative;
    z-index:2;

    filter:drop-shadow(0 35px 70px rgba(37,99,235,.15));

}

/*==========================
FLOATING CARDS
==========================*/

.floating-card{

    position:absolute;
    background:#fff;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(15,23,42,.10);

    z-index:5;

}

/* Target Card */

.target-card{

    width:80px;
    height:80px;

    left:10px;
    top:80px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.target-card svg{

    width:38px;
    height:38px;

    color:#2563EB;

}

/* Analytics */

.analytics-card{

    top:20px;
    right:40px;

    padding:18px 26px;

    text-align:center;

}

.analytics-card .growth{

    display:block;

    font-size:32px;

    font-weight:800;

    color:#2563EB;

    line-height:1;

    margin-bottom:8px;

}

.analytics-card small{

    font-size:14px;

    color:#64748B;

}

/* Leads Card */

.leads-card{

    left:40px;
    bottom:40px;

    padding:18px 24px;

    min-width:180px;

}

.leads-card small{

    display:block;

    color:#64748B;

    font-size:13px;

    margin-bottom:8px;

}

.leads-card h4{

    font-size:30px;

    font-weight:800;

    color:#0F172A;

    margin-bottom:6px;

}

.leads-card span{

    color:#22C55E;

    font-weight:700;

    font-size:15px;

}

/* Floating Animation */

.target-card,
.analytics-card,
.leads-card{

    animation:floatCard 4s ease-in-out infinite;

}

.analytics-card{

    animation-delay:.4s;

}

.leads-card{

    animation-delay:.8s;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}



/*=========================================
WHY LANDING PAGE
=========================================*/

.why-landing-page{

    padding:110px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

/* Background Glow */

.why-landing-page::before{

    content:"";
    position:absolute;

    width:520px;
    height:520px;

    left:-180px;
    top:0;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 70%);

}

.why-landing-page .container{

    position:relative;
    z-index:2;

}

.why-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

}

/*=========================
IMAGE
=========================*/

.why-image{

    text-align:center;

}

.why-image img{

    width:100%;
    max-width:560px;
    display:block;
    margin:auto;

}

/*=========================
CONTENT
=========================*/

.section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:18px;

}

.why-content h2{

    font-size:48px;
    line-height:1.2;

    color:#0F172A;

    font-weight:800;

    margin-bottom:24px;

}

.why-content h2 span{

    color:#3B5BFF;

}

.why-content p{

    font-size:17px;
    line-height:1.9;

    color:#64748B;

    margin-bottom:35px;

    max-width:560px;

}

/*=========================
LIST
=========================*/

.why-list{

    list-style:none;
    padding:0;
    margin:0;

}

.why-list li{

    display:flex;
    align-items:flex-start;
    gap:14px;

    margin-bottom:20px;

}

.why-list li svg{

    width:22px;
    height:22px;

    color:#2563EB;

    flex-shrink:0;

    margin-top:2px;

}

.why-list li span{

    font-size:16px;
    color:#334155;
    line-height:1.7;
    font-weight:500;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.why-wrapper{

grid-template-columns:1fr;
gap:60px;

}

.why-image{

order:1;

}

.why-content{

order:2;
text-align:center;

}

.why-content p{

margin-left:auto;
margin-right:auto;

}

.why-list{

display:inline-block;
text-align:left;

}

}

@media(max-width:768px){

.why-landing-page{

padding:80px 0;

}

.why-content h2{

font-size:36px;

}

.why-content p{

font-size:16px;

}

}

@media(max-width:576px){

.why-content h2{

font-size:30px;

}

.why-list li{

align-items:flex-start;

}

.why-list li span{

font-size:15px;

}

}

/*=========================================
LANDING PAGE TYPES
=========================================*/

.landing-types{

    padding:110px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

.landing-types::before{

    content:"";
    position:absolute;

    width:650px;
    height:650px;

    left:50%;
    top:-350px;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.08),
    transparent 72%);

}

.landing-types .container{

    position:relative;
    z-index:2;

}

/*=========================
SECTION TITLE
=========================*/

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title .section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;
    font-weight:800;

    color:#0F172A;

    line-height:1.2;

}

/*=========================
GRID
=========================*/

.landing-types-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:24px;

}

/*=========================
CARD
=========================*/

.landing-type-card{

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.landing-type-card:hover{

    transform:translateY(-8px);

    border-color:#2563EB;

    box-shadow:0 25px 45px rgba(37,99,235,.15);

}

/*=========================
ICON
=========================*/

.landing-type-card .icon{

    width:78px;
    height:78px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF2FF;

    display:flex;

    justify-content:center;
    align-items:center;

    transition:.35s;

}

.landing-type-card:hover .icon{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

}

.landing-type-card .icon svg{

    width:34px;
    height:34px;

    color:#2563EB;

    transition:.35s;

}

.landing-type-card:hover .icon svg{

    color:#fff;

}

/*=========================
TEXT
=========================*/

.landing-type-card h3{

    font-size:22px;
    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

    line-height:1.3;

}

.landing-type-card p{

    font-size:15px;
    line-height:1.8;

    color:#64748B;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.landing-types-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.landing-types{

padding:80px 0;

}

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:34px;

}

.landing-types-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:28px;

}

.landing-types-grid{

grid-template-columns:1fr;

}

.landing-type-card{

padding:35px 25px;

}

}

/*==========================================
    DESIGN PROCESS
==========================================*/

.design-process{

    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

/* Section Heading */

.section-title{

    text-align:center;
    max-width:700px;
    margin:0 auto 80px;

}

.section-title span{

    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#2563EB;
    margin-bottom:12px;

}

.section-title h2{

    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#111827;

}

.section-title h2 span{

    color:#2563EB;

}

/* Timeline */

.process-wrapper{

    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;

}

/* Horizontal Line */

.process-line{

    position:absolute;
    top:42px;
    left:8%;
    width:84%;
    height:2px;

    background:linear-gradient(
        to right,
        #2563EB,
        #8B5CF6
    );

    opacity:.20;
    z-index:0;

}

/* Item */

.process-item{
    width: 100%;
    position:relative;
    text-align:center;
    z-index:2;

}

/* Icon */

.process-item .icon{

    width:84px;
    height:84px;

    background:#fff;

    border-radius:50%;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.process-item .icon svg{

    width:30px;
    height:30px;

    color:#2563EB;

    transition:.35s;

}

.process-item:hover .icon{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    transform:translateY(-8px);

}

.process-item:hover .icon svg{

    color:#fff;

}

/* Number */

.process-item .number{

    font-size:14px;
    font-weight:700;
    color:#2563EB;
    margin-bottom:12px;

}

/* Heading */

.process-item h3{

    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;

}

/* Paragraph */

.process-item p{

    max-width:180px;
    width:100%;

    margin:0 auto;

    color:#6B7280;

    line-height:1.8;

    font-size:15px;

    white-space:normal;
    word-break:normal;
    overflow-wrap:break-word;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

.process-wrapper{

    grid-template-columns:repeat(2,1fr);
    gap:50px;

}

.process-line{

    display:none;

}

.process-item p{

    max-width:240px;

}

}

/*=========================
Mobile
=========================*/

@media(max-width:576px){

.design-process{

    padding:80px 0;

}

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    font-size:34px;

}

.process-wrapper{

    grid-template-columns:1fr;
    gap:60px;
    position:relative;

}

/* Vertical Line */

.process-line{

    display:block;

    width:2px;
    height:calc(100% - 100px);

    left:50%;
    top:42px;

    transform:translateX(-50%);

    background:linear-gradient(
        to bottom,
        #2563EB,
        #8B5CF6
    );

    opacity:.20;

}

.process-item{

    padding-bottom:10px;
    /* display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center; */

}

.process-item .icon{
     
    width:78px;
    height:78px;

}

.process-item h3{

    font-size:22px;

}

.process-item p{

    max-width:280px;

}
.process-item .number {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    background-color: #fff;
}
}

/*=========================================
COMPLETE PACKAGE
=========================================*/

.package-section{

    padding:110px 0;
    background:#fff;

}

.package-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:60px;

    box-shadow:0 20px 60px rgba(15,23,42,.06);

    position:relative;
    overflow:hidden;

}

/* Background Glow */

.package-wrapper::before{

    content:"";

    position:absolute;

    right:-180px;
    top:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 70%);

}

/*=========================
LEFT
=========================*/

.package-content{

    flex:1;
    position:relative;
    z-index:2;

}

.package-content h2{

    font-size:44px;
    font-weight:800;

    color:#0F172A;

    line-height:1.25;

    margin-bottom:45px;

}

.package-content h2 span{

    color:#3B5BFF;

}

/*=========================
LIST GRID
=========================*/

.package-list{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.package-list ul{

    list-style:none;
    margin:0;
    padding:0;

}

.package-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

}

.package-list li:last-child{

    margin-bottom:0;

}

.package-list li svg{

    width:18px;
    height:18px;

    color:#2563EB;

    flex-shrink:0;

    margin-top:3px;

}

.package-list li span{

    font-size:15px;

    line-height:1.7;

    color:#475569;

    font-weight:500;

}

/*=========================
IMAGE
=========================*/

.package-image{

    width:320px;

    flex-shrink:0;

    text-align:right;

    position:relative;
    z-index:2;

}

.package-image img{

    width:100%;
    display:block;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.package-wrapper{

    flex-direction:column;

    text-align:center;

}

.package-image{

    width:280px;

}

.package-list{

    grid-template-columns:repeat(2,1fr);

    text-align:left;

}

}

@media(max-width:768px){

.package-section{

    padding:80px 0;

}

.package-wrapper{

    padding:40px 30px;

}

.package-content h2{

    font-size:34px;

}

.package-list{

    grid-template-columns:1fr;

    gap:10px;

}

.package-image{

    width:220px;

}

}

@media(max-width:576px){

.package-wrapper{

    padding:30px 20px;

}

.package-content h2{

    font-size:28px;

}

.package-list li span{

    font-size:14px;

}

}

/*==================================
WHY CHOOSE
==================================*/

.choose-us{

    padding:90px 0;

}

.choose-wrapper{

    background:linear-gradient(135deg,#08163f,#182a8d,#5B21B6);

    border-radius:28px;

    padding:70px 60px;

    display:grid;

    grid-template-columns:340px 1fr;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

}

.choose-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at right,#8B5CF633,transparent 45%),
    radial-gradient(circle at left,#2563EB22,transparent 40%);

    pointer-events:none;

}

.choose-content{

    position:relative;
    z-index:2;

}

.section-tag{

    color:#A5B4FC;

    font-size:13px;

    letter-spacing:1px;

    font-weight:700;

    text-transform:uppercase;

}

.choose-content h2{

    margin-top:18px;

    color:#fff;

    font-size:43px;

    line-height:1.15;

    font-weight:800;

}

.choose-content span{

    color:#4F8BFF;

}

.choose-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    position:relative;

    z-index:2;

}

.feature-item{

    text-align:center;

    padding:0 25px;

    border-left:1px solid rgba(255,255,255,.12);

}

.feature-item:first-child{

    border-left:none;

}

.feature-item svg{

    width:34px;

    height:34px;

    color:#3B82F6;

    margin-bottom:18px;

}

.feature-item h4{

    color:#fff;

    font-size:20px;

    margin-bottom:12px;

    font-weight:700;

}

.feature-item p{

    color:rgba(255,255,255,.75);

    line-height:1.7;

    font-size:15px;

}

/* Tablet */

@media(max-width:991px){

.choose-wrapper{

grid-template-columns:1fr;

text-align:center;

padding:60px 35px;

}

.choose-features{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.feature-item{

border:none;

padding:0;

}

}

/* Mobile */

@media(max-width:576px){

.choose-wrapper{

padding:45px 25px;

}

.choose-content h2{

font-size:36px;

}

.choose-features{

grid-template-columns:1fr;

gap:35px;

}

.feature-item{

border-top:1px solid rgba(255,255,255,.10);

padding-top:30px;

}

.feature-item:first-child{

border-top:none;

padding-top:0;

}

}

/*==================================
TECHNOLOGIES
==================================*/

.technologies{

    padding:90px 0;
    background:#fff;

}

.tech-title{

    margin-bottom:45px;

}

.tech-title span{

    color:#2563EB;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

}

.tech-grid{

    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:25px;
    align-items:center;

}

.tech-item{

    text-align:center;
    transition:.35s;

}

.tech-item:hover{

    transform:translateY(-8px);

}

.tech-item i{

    font-size:58px;
    margin-bottom:18px;
    transition:.35s;

}

.tech-item h4{

    font-size:16px;
    font-weight:600;
    color:#374151;

}

/* Brand Colors */

.html{
    color:#E34F26;
}

.css{
    color:#1572B6;
}

.js{
    color:#F7DF1E;
}

.php{
    color:#777BB4;
}

.laravel{
    color:#FF2D20;
}

.wordpress{
    color:#21759B;
}

.react{
    color:#61DAFB;
}

.mysql{
    color:#0F5D9C;
}

/* Tablet */

@media(max-width:991px){

.tech-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Mobile */

@media(max-width:576px){

.technologies{

padding:70px 0;

}

.tech-grid{

grid-template-columns:repeat(2,1fr);
gap:35px;

}

.tech-item i{

font-size:50px;

}

}

/*==================================
FAQ
==================================*/

.faq-section{

    padding:120px 0;
    background:#fff;

}

.faq-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.faq-item{

    background:#F8FAFF;

    border:1px solid #E5E7EB;

    border-radius:14px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 12px 30px rgba(37,99,235,.08);

}

.faq-question{

    width:100%;

    border:none;

    background:none;

    padding:22px 24px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    color:#111827;

}

.faq-question svg{

    width:20px;

    height:20px;

    transition:.3s;

    flex-shrink:0;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 24px 22px;

    color:#6B7280;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:200px;

}

.faq-item.active .faq-question svg{

    transform:rotate(180deg);

}

/* Responsive */

@media(max-width:991px){

.faq-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.faq-section{

padding:80px 0;

}

.faq-question{

font-size:15px;
padding:18px;

}

.faq-answer p{

padding:0 18px 18px;

}

}

/*==================================
        CTA SECTION
==================================*/

.service-cta{

    padding:100px 0;

}

.cta-wrapper{

    background:linear-gradient(135deg,#1D4ED8 0%,#4F46E5 55%,#7C3AED 100%);

    border-radius:22px;

    padding:40px 45px;

    display:grid;

    grid-template-columns:110px 1fr auto;

    align-items:center;

    gap:35px;

    position:relative;

    overflow:hidden;

}

/* Background Glow */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    left:-140px;

    top:-90px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-80px;

    bottom:-120px;

}

/* Icon */

.cta-icon{

    position:relative;

    z-index:2;

}

.icon-circle{

    width:82px;

    height:82px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.icon-circle svg{

    width:38px;

    height:38px;

    color:#2563EB;

}

/* Content */

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content h2{

    color:#fff;

    font-size:38px;

    font-weight:700;

    margin-bottom:12px;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.8;

    max-width:600px;

}

/* Button */

.cta-btn{

    position:relative;

    z-index:2;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#2563EB;

    text-decoration:none;

    padding:16px 30px;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

    transition:.3s;

}

.theme-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.theme-btn svg{

    width:18px;

    height:18px;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.cta-wrapper{

grid-template-columns:1fr;

text-align:center;

padding:45px 30px;

}

.cta-icon{

margin:auto;

}

.cta-content p{

margin:auto;

}

.cta-btn{

margin-top:10px;

}

}

@media(max-width:576px){

.service-cta{

padding:70px 0;

}

.cta-content h2{

font-size:30px;

}

.cta-content p{

font-size:15px;

}

.theme-btn{

padding:15px 26px;

}

}