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

.plugin-hero{
    margin-top: 40px;
    position:relative;
    overflow:hidden;
    padding:110px 8%;
    background:
        radial-gradient(circle at top left,#0e5c6d22,transparent 40%),
        radial-gradient(circle at bottom right,#4cc9f022,transparent 35%),
        linear-gradient(135deg,#ffffff,#f7fbfc);
}

.plugin-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('/image/dot-pattern.svg');
    opacity:.06;
    pointer-events:none;
}

.plugin-hero .container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}

.hero-left{
    position:relative;
    z-index:2;
}

.plugin-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:#ffffff;

    color:#11404b;

    font-weight:700;

    font-size:.95rem;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    margin-bottom:28px;

}

.plugin-badge i{

    color:#0073aa;
    font-size:18px;

}

.hero-left h1{

    font-size:4rem;
    line-height:1.1;
    color:#0e2530;
    margin-bottom:25px;
    font-weight:800;

}

.hero-left h1 span{

    background:linear-gradient(90deg,#0073aa,#00c2ff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-description{

    font-size:1.15rem;

    color:#52606d;

    line-height:1.9;

    margin-bottom:40px;

    max-width:720px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.btn-primary{

    padding:16px 36px;

    border-radius:50px;

    background:linear-gradient(135deg,#0073aa,#00b4ff);

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,115,170,.28);

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(0,115,170,.35);

}

.btn-secondary{

    padding:16px 34px;

    border-radius:50px;

    border:2px solid #0073aa;

    text-decoration:none;

    color:#0073aa;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#0073aa;

    color:#fff;

}

.hero-meta{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-meta div{

    background:#fff;

    border-radius:18px;

    padding:18px 25px;

    min-width:150px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.hero-meta div:hover{

    transform:translateY(-6px);

}

.hero-meta strong{

    display:block;

    font-size:1.35rem;

    color:#0e2530;

}

.hero-meta span{

    color:#667;

    font-size:.92rem;

}

.hero-right{

    position:relative;

}

.hero-right img{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:

    0 35px 70px rgba(0,0,0,.18);

    animation:floatingHero 6s ease-in-out infinite;

}

@keyframes floatingHero{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Floating Glow */

.hero-right::before{

    content:'';

    width:320px;

    height:320px;

    position:absolute;

    background:#00b4ff;

    filter:blur(140px);

    opacity:.15;

    right:-80px;

    bottom:-80px;

    z-index:-1;

}

/*=========================================
 Responsive
=========================================*/

@media(max-width:1200px){

.plugin-hero .container{

grid-template-columns:1fr;

text-align:center;

}

.hero-description{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-meta{

justify-content:center;

}

.hero-right{

margin-top:40px;

}

}

@media(max-width:768px){

.plugin-hero{

padding:70px 25px;

}

.hero-left h1{

font-size:2.7rem;

}

.hero-description{

font-size:1rem;

}

.hero-meta{

flex-direction:column;

}

.hero-meta div{

width:100%;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}

@media(max-width:480px){

.hero-left h1{

font-size:2.15rem;

}

.plugin-badge{

font-size:.82rem;

}

.hero-buttons{

gap:12px;

}

}

/*=========================================
FEATURES
=========================================*/

.plugin-features{

    padding:110px 8%;
    background:#f8fbfd;

}

.section-title{

    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    display:inline-block;
    background:#eaf7ff;
    color:#0073aa;
    padding:10px 22px;
    border-radius:40px;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;

}

.section-title h2{

    font-size:2.7rem;
    color:#112531;
    margin-bottom:18px;

}

.section-title p{

    color:#667788;
    line-height:1.9;
    font-size:1.08rem;

}

.feature-grid{

    display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

}


.feature-card{

    background:#fff;
    border-radius:22px;
    padding:40px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    border:1px solid #eef3f7;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,115,170,.18);

}

.feature-icon{
    transform: translate(85px, 6px);
    width:72px;
    height:72px;
    border-radius:18px;
    background:linear-gradient(135deg,#0073aa,#00b4ff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    margin-bottom:28px;

}

.feature-card h3{

    font-size:1.4rem;
    margin-bottom:16px;
    color:#122734;

}

.feature-card p{

    color:#677;
    line-height:1.8;

}


/* Tablet */

@media(max-width:991px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.plugin-features{

padding:70px 25px;

}

.section-title h2{

font-size:2rem;

}

.feature-grid{


}

.feature-card{

padding:30px;

}

}

/*==================================
Dashboard Showcase
==================================*/

.dashboard-showcase{

    padding:120px 8%;

    background:#ffffff;

}

.dashboard-showcase .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.section-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    background:#edf8ff;

    color:#0073aa;

    font-weight:700;

    margin-bottom:25px;

}

.dashboard-left h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;

    color:#122431;

}

.dashboard-left h2 span{

    color:#0073aa;

}

.dashboard-left p{

    color:#677;

    line-height:1.9;

    margin-bottom:40px;

}

.dashboard-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.dashboard-list div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:15px;

    background:#f8fbfd;

    transition:.3s;

}

.dashboard-list div:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.dashboard-list i{

    color:#14b86f;

    font-size:20px;

}

.dashboard-right{
    max-width:720px;

margin:auto;

    position:relative;

}

.dashboard-right img{

    width:100%;

    border-radius:22px;

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    animation:floatCard 5s ease-in-out infinite;

}

.floating-card strong{

    display:block;

    font-size:24px;

    color:#122431;

}

.floating-card span{

    color:#667;

    font-size:14px;

}

.card-one{

    top:-20px;

    left:-30px;

}

.card-two{

    bottom:40px;

    left:-40px;

}

.card-three{

    right:-20px;

    top:50%;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:992px){

.dashboard-showcase .container{

grid-template-columns:1fr;

}

.dashboard-right{

margin-top:60px;

}

}

@media(max-width:768px){

.dashboard-showcase{

padding:80px 25px;

}

.dashboard-left h2{

font-size:2rem;

}

.dashboard-list{

grid-template-columns:1fr;

}

.floating-card{

display:none;

}

}


/*==========================
        HOW IT WORKS
==========================*/

.how-it-works{

    padding:120px 0;
    background:#f8fbff;
    position:relative;

}

.steps-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
    position:relative;

}

.progress-line{

    position:absolute;
    top:60px;
    left:8%;
    right:8%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#4f46e5);
    z-index:1;

}

.step-card{

    position:relative;
    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #e8eefb;
    transition:.35s;
    z-index:2;

}

.step-card:hover{

    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.step-number{

    width:52px;
    height:52px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    margin-bottom:25px;

}

.step-icon{

    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;

}

.step-icon i{

    font-size:34px;
    color:#2563eb;

}

.step-card:hover .step-icon{

    background:linear-gradient(135deg,#2563eb,#4f46e5);

}

.step-card:hover .step-icon i{

    color:#fff;

}

.step-card h3{

    font-size:22px;
    color:#111827;
    margin-bottom:18px;

}

.step-card p{

    color:#64748b;
    line-height:1.8;
    font-size:15px;

}

@media(max-width:1200px){

.steps-wrapper{

grid-template-columns:repeat(2,1fr);

}

.progress-line{

display:none;

}

}

@media(max-width:768px){

.how-it-works{

padding:90px 0;

}

.steps-wrapper{

grid-template-columns:1fr;
gap:25px;

}

.step-card{

padding:35px 25px;

}

.step-card h3{

font-size:20px;

}

.step-icon{

width:70px;
height:70px;

}

.step-icon i{

font-size:28px;

}

}

@media(max-width:576px){

.how-it-works{

padding:70px 0;

}

.step-card{

border-radius:18px;

}

}

/*==========================
        WHY GGR
==========================*/

.why-ggr{

    padding:140px 10px;
    background:#fff;

}

.why-wrapper{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:70px;

}

.problem-column,
.solution-column{

    border-radius:24px;
    padding:45px;
    position:relative;
    overflow:hidden;
    transition:.35s;

}

.problem-column{

    background:#fff5f5;
    border:1px solid #ffd9d9;

}

.solution-column{

    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;

}

.problem-column:hover,
.solution-column:hover{

    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.problem-column h3,
.solution-column h3{

    font-size:28px;
    margin-bottom:35px;

}

.problem-column h3 i{

    color:#ef4444;
    margin-right:10px;

}

.solution-column h3 i{

    color:#fff;
    margin-right:10px;

}

.problem-column ul,
.solution-column ul{

    list-style:none;
    padding:0;
    margin:0;

}

.problem-column li,
.solution-column li{

    display:flex;
    align-items:center;
    margin-bottom:22px;
    font-size:17px;
    line-height:1.7;

}

.problem-column li::before{

    content:"✕";
    color:#ef4444;
    font-weight:700;
    margin-right:15px;

}

.solution-column li::before{

    content:"✓";
    color:#fff;
    font-weight:700;
    margin-right:15px;

}

.stats-row{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:#fff;

    border:1px solid #edf2ff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.stat-box strong{

    display:block;

    font-size:34px;

    color:#2563eb;

    margin-bottom:12px;

}

.stat-box span{

    color:#64748b;

    font-size:15px;

}

@media(max-width:1200px){

.stats-row{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.why-wrapper{

grid-template-columns:1fr;

}

.problem-column,
.solution-column{

padding:35px;

}

}

@media(max-width:768px){

.why-ggr{

padding:90px 0;

}

.stats-row{

grid-template-columns:1fr;

}

.problem-column h3,
.solution-column h3{

font-size:24px;

}

.problem-column li,
.solution-column li{

font-size:15px;

}

}

@media(max-width:576px){

.why-ggr{

padding:70px 0;

}

.problem-column,
.solution-column{

padding:28px;

border-radius:18px;

}

}

/*==========================
      BUILT FOR EVERYONE
==========================*/

.who-is-it-for{

    padding:120px 0;
    background:#f8fbff;

}

.audience-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;

}

.audience-card{

    background:#fff;
    border:1px solid #edf2ff;
    border-radius:22px;
    padding:40px 35px;
    transition:.35s;
    text-align:center;

}

.audience-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.audience-icon{

    width:80px;
    height:80px;
    border-radius:20px;
    margin:auto;
    margin-bottom:25px;

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    display:flex;
    justify-content:center;
    align-items:center;

}

.audience-icon i{

    color:#fff;
    font-size:32px;

}

.audience-card h3{

    font-size:24px;
    margin-bottom:18px;
    color:#111827;

}

.audience-card p{

    color:#64748b;
    line-height:1.8;
    font-size:15px;

}

@media(max-width:1200px){

.audience-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.who-is-it-for{

padding:90px 0;

}

.audience-grid{

grid-template-columns:1fr;

gap:25px;

}

.audience-card{

padding:35px 28px;

}

.audience-card h3{

font-size:21px;

}

.audience-icon{

width:70px;
height:70px;

}

.audience-icon i{

font-size:28px;

}

}

@media(max-width:576px){

.who-is-it-for{

padding:70px 0;

}

.audience-card{

border-radius:18px;

}

}

/*=====================================================
 MODULE SHOWCASE
======================================================*/

.module-showcase {
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.module-showcase.alt-layout {
    background: #f8fbff;
}

.module-grid {
   display:grid;
    grid-template-columns:minmax(420px,520px) minmax(520px,700px);
    justify-content:center;
    align-items:center;
    gap:60px;
}

.module-showcase.alt-layout .module-grid {
      grid-template-columns:minmax(520px,700px) minmax(420px,520px);
}

.module-content h2 {
    font-size: 46px;
    line-height: 1.2;
    margin: 18px 0 24px;
    color: #0f172a;
    font-weight: 800;
}

.module-content h2 span {
    display: block;
    color: #3b82f6;
}

.module-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 35px;
}

.module-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px 28px;
}

.module-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
}

.module-list i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.module-image {
     width:100%;
    max-width:680px;
    margin:auto;
}

.module-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow:
            0 25px 70px rgba(15,23,42,.08),
            0 8px 25px rgba(59,130,246,.08);
    transition: .45s ease;
}

.module-image:hover img {
    transform: translateY(-8px);
    box-shadow:
            0 40px 90px rgba(15,23,42,.12),
            0 20px 40px rgba(59,130,246,.12);
}


/*=====================================================
 COMPLETE SUITE
======================================================*/

.complete-suite {
    padding: 120px 0;
    background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.complete-suite .section-title {
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.complete-suite .section-title h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.complete-suite .section-title h2 span {
    color: #3b82f6;
}

.complete-suite .section-title p {
    margin-top: 20px;
    font-size: 18px;
    color: #64748b;
    line-height: 1.9;
}

.suite-image {
    max-width:1200px;

margin:auto;
    text-align: center;
}

.suite-image img {
    width: 100%;
    max-width: 1400px;
    border-radius: 26px;
    display: block;
    margin: auto;
    border: 1px solid #e5e7eb;
    box-shadow:
            0 30px 80px rgba(15,23,42,.10),
            0 12px 35px rgba(59,130,246,.08);
}


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

@media (max-width:1400px){

    .module-grid{
        gap:60px;
    }

    .module-content h2{
        font-size:42px;
    }

}


/*=====================================================
 TABLET
======================================================*/

@media (max-width:1024px){

    .module-showcase{
        padding:90px 0;
    }

    .complete-suite{
        padding:90px 0;
    }

    .module-grid,
    .module-showcase.alt-layout .module-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    /* Alternate section me image niche chali jayegi */
    .module-showcase.alt-layout .module-image{
        order:2;
    }

    .module-showcase.alt-layout .module-content{
        order:1;
    }

    .module-content{
        text-align:center;
    }

    .module-list{
        max-width:700px;
        margin:auto;
    }

    .module-content h2{
        font-size:38px;
    }

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

}


/*=====================================================
 MOBILE
======================================================*/

@media (max-width:768px){

    .module-showcase{
        padding:70px 0;
    }

    .complete-suite{
        padding:70px 0;
    }

    .module-grid{
        gap:40px;
    }

    .module-content h2,
    .complete-suite .section-title h2{
        font-size:32px;
    }

    .module-content p,
    .complete-suite .section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .module-list{
        grid-template-columns:1fr;
        gap:16px;
        text-align:left;
    }

    .module-list div{
        font-size:15px;
    }

    .module-image img,
    .suite-image img{
        border-radius:18px;
    }

}


/*=====================================================
 SMALL MOBILE
======================================================*/

@media (max-width:480px){

    .module-showcase{
        padding:55px 0;
    }

    .complete-suite{
        padding:55px 0;
    }

    .module-content h2,
    .complete-suite .section-title h2{
        font-size:28px;
    }

    .module-content p{
        margin-bottom:25px;
    }

    .module-list div{
        font-size:14px;
        align-items:flex-start;
    }

    .module-list i{
        margin-top:2px;
    }

}

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

.plugin-faq{

    padding:110px 0;

    background:#f8fbff;

}

.faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#fff;

    border:1px solid #e8eef5;

    border-radius:18px;

    margin-bottom:22px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 30px;

    background:none;

    border:none;

    cursor:pointer;

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    text-align:left;

}

.faq-question i{

    color:#2563eb;

    transition:.35s;

}

.faq-answer{

    display:block;

    padding:0 30px 28px;

}

.faq-answer p{

    color:#64748b;

    line-height:1.9;

    font-size:16px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

@media(max-width:992px){

    .plugin-faq{

        padding:90px 0;

    }

}

@media(max-width:768px){

    .faq-question{

        padding:24px;

        font-size:18px;

    }

    .faq-answer{

        padding:0 24px 24px;

    }

    .faq-answer p{

        font-size:15px;

    }

}

@media(max-width:576px){

    .plugin-faq{

        padding:70px 0;

    }

    .faq-question{

        font-size:16px;

        padding:20px;

    }

    .faq-answer{

        padding:0 20px 20px;

    }

}
/*=====================================================
                FINAL CTA
======================================================*/

.plugin-cta{

    padding:120px 0;

    background:linear-gradient(135deg,#0f172a,#1e3a8a);

    position:relative;

    overflow:hidden;

}

.plugin-cta::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(59,130,246,.15);

    border-radius:50%;

    top:-180px;

    left:-120px;

    filter:blur(90px);

}

.plugin-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(99,102,241,.15);

    border-radius:50%;

    bottom:-150px;

    right:-120px;

    filter:blur(90px);

}

.cta-box{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.plugin-cta .section-badge{

    background:rgba(255,255,255,.12);

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

}

.cta-box h2{

    margin:25px 0;

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    color:#fff;

}

.cta-box h2 span{

    color:#60a5fa;

}

.cta-box p{

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.cta-buttons .btn-primary,

.cta-buttons .btn-secondary{

    min-width:230px;

}

.cta-buttons i{

    margin-right:10px;

}

@media(max-width:992px){

    .plugin-cta{

        padding:90px 0;

    }

    .cta-box h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .cta-box h2{

        font-size:34px;

    }

    .cta-box p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-buttons .btn-primary,

    .cta-buttons .btn-secondary{

        width:100%;

        max-width:320px;

    }

}

@media(max-width:576px){

    .plugin-cta{

        padding:70px 0;

    }

    .cta-box h2{

        font-size:28px;

    }

    .cta-box p{

        font-size:15px;

    }

}
