.elementor-371 .elementor-element.elementor-element-031c81e{--display:flex;}.elementor-371 .elementor-element.elementor-element-031c81e:not(.elementor-motion-effects-element-type-background), .elementor-371 .elementor-element.elementor-element-031c81e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F7FF;}.elementor-371 .elementor-element.elementor-element-5972408{--display:flex;}.elementor-371 .elementor-element.elementor-element-2055e02{--display:flex;}.elementor-371 .elementor-element.elementor-element-dcfe761{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}/* Start custom CSS for html, class: .elementor-element-362210e *//*=========================================
        WEBSITE PACKAGES SECTION
=========================================*/

.wpkg-section{
    background:#F9F8FF;
    padding:55px 20px;
    overflow:hidden;
}

.wpkg-container{
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
}

/*=========================================
        IMAGE
=========================================*/

.wpkg-image{
    flex:1;
    text-align:center;
}

.wpkg-image img{
    width:100%;
    max-width:470px;
    border-radius:25px;
    transition:.4s ease;
}

.wpkg-image img:hover{
    transform:translateY(-8px);
}

/*=========================================
        CONTENT
=========================================*/

.wpkg-content{
    flex:1.1;
}

.wpkg-subtitle{
    display:inline-block;
    background:#E9E7FF;
    color:#5B5EF7;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.wpkg-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    color:#222;
    margin-bottom:18px;
}

.wpkg-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.wpkg-content strong{
    color:#5B5EF7;
}

/*=========================================
        SERVICES
=========================================*/

.wpkg-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:30px 0;
}

.service-box{
    background:#fff;
    border:1px solid #E8E7F5;
    border-radius:12px;
    padding:14px 18px;
    font-size:15px;
    font-weight:600;
    color:#444;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.service-box:hover{
    background:#5B5EF7;
    color:#fff;
    transform:translateX(6px);
}

/*=========================================
        BUTTONS
=========================================*/

.wpkg-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.primary-btn,
.secondary-btn{
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.primary-btn{
    background:#5B5EF7;
    color:#fff;
}

.primary-btn:hover{
    background:#4346E8;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(91,94,247,.25);
}

.secondary-btn{
    background:#fff;
    border:2px solid #5B5EF7;
    color:#5B5EF7;
}

.secondary-btn:hover{
    background:#5B5EF7;
    color:#fff;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.wpkg-container{
    flex-direction:column;
    text-align:center;
}

.wpkg-image{
    order:1;
}

.wpkg-content{
    order:2;
}

.wpkg-content h2{
    font-size:38px;
}

.wpkg-services{
    grid-template-columns:1fr;
}

.wpkg-buttons{
    justify-content:center;
}

}

@media(max-width:768px){

.wpkg-section{
    padding:45px 18px;
}

.wpkg-image img{
    max-width:330px;
}

.wpkg-content h2{
    font-size:30px;
}

.wpkg-content p{
    font-size:14px;
}

.service-box{
    font-size:14px;
    padding:12px;
}

.wpkg-buttons{
    flex-direction:column;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

}
/*=========================================
        PREMIUM DECORATIONS
=========================================*/

.wpkg-section{
    position:relative;
}

.wpkg-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#5B5EF7;

    opacity:.04;

    border-radius:50%;

    top:-180px;
    left:-180px;

}

.wpkg-section::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    background:#5B5EF7;

    opacity:.05;

    border-radius:50%;

    bottom:-140px;
    right:-120px;

}

/*=========================================
        IMAGE EFFECTS
=========================================*/

.wpkg-image{
    position:relative;
    z-index:2;
}

.wpkg-image::before{

    content:"";

    position:absolute;

    width:430px;
    height:430px;

    background:linear-gradient(135deg,#5B5EF7,#7B7EFF);

    opacity:.08;

    border-radius:35px;

    transform:rotate(-8deg);

    top:50%;
    left:50%;

    translate:-50% -50%;

    z-index:-1;

}

.wpkg-image img{

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

/*=========================================
        CONTENT ANIMATION
=========================================*/

.wpkg-content>*{

    animation:fadeUp .8s ease forwards;

    opacity:0;

}

.wpkg-subtitle{

animation-delay:.1s;

}

.wpkg-content h2{

animation-delay:.2s;

}

.wpkg-content p:nth-of-type(1){

animation-delay:.3s;

}

.wpkg-content p:nth-of-type(2){

animation-delay:.45s;

}

.wpkg-services{

animation:fadeUp .8s ease .6s forwards;

opacity:0;

}

.wpkg-buttons{

animation:fadeUp .8s ease .8s forwards;

opacity:0;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
        SERVICE CARDS
=========================================*/

.service-box{

position:relative;

overflow:hidden;

}

.service-box::before{

content:"";

position:absolute;

top:0;
left:-120%;

width:60%;
height:100%;

background:rgba(255,255,255,.35);

transform:skewX(-25deg);

transition:.7s;

}

.service-box:hover::before{

left:150%;

}

.service-box:hover{

box-shadow:
0 15px 35px rgba(91,94,247,.20);

}

/*=========================================
        BUTTONS
=========================================*/

.primary-btn{

box-shadow:
0 15px 35px rgba(91,94,247,.25);

}

.primary-btn:hover{

box-shadow:
0 22px 45px rgba(91,94,247,.35);

}

.secondary-btn:hover{

box-shadow:
0 18px 35px rgba(91,94,247,.18);

}

/*=========================================
        IMAGE RESPONSIVE
=========================================*/

@media(max-width:992px){

.wpkg-image::before{

width:300px;
height:300px;

}

}

@media(max-width:768px){

.wpkg-section::before,
.wpkg-section::after,
.wpkg-image::before{

display:none;

}

.wpkg-image img{

max-width:300px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-21fe5a0 *//*==========================================
      WORDPRESS PACKAGES
==========================================*/

.wp-packages-section{
    padding:80px 20px;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.wp-heading{
    text-align:center;
    max-width:1100pxpx;
     font-size:15px;
    
    margin:0 auto 60px;
}

.wp-subtitle{
    display:inline-block;
    color:#6D5CF5;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.wp-heading h2{
    font-size:52px;
    color:#252525;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.wp-heading p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/*======================
      GRID
======================*/

.wp-packages{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:flex-start;
}

/*======================
      CARD
======================*/

.wp-card{
    background:#fff;
    border:2px solid #ECE8FF;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    position:relative;
    transition:.35s;
}

.wp-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.wp-card-top{
    background:#8F7CF6;
    padding:35px 20px;
    text-align:center;
}

.wp-card-top h3{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:8px;
}

.wp-card-top span{
    color:#F5F5F5;
    font-size:18px;
}

/*======================
      POPULAR
======================*/

.popular-tag{
    position:absolute;
    top:18px;
    right:-45px;
    background:#6654F5;
    color:#fff;
    width:170px;
    text-align:center;
    padding:8px;
    font-size:13px;
    font-weight:700;
    transform:rotate(45deg);
    letter-spacing:1px;
}

/*======================
      PRICE
======================*/

.wp-price{
    text-align:center;
    padding:35px 20px 20px;
}

.wp-price small{
    display:block;
    font-size:24px;
    color:#555;
    margin-bottom:5px;
}

.wp-price h2{
    font-size:62px;
    color:#2E2E2E;
    font-weight:800;
    margin:0;
    line-height:1;
}

.wp-price p{
    margin-top:10px;
    color:#666;
    font-size:18px;
}

/*======================
      FEATURES
======================*/

.wp-card ul{
    margin:0;
    padding:0 35px 35px;
    list-style:none;
}

.wp-card ul li{
    padding:17px 0;
    border-top:1px solid #ECECEC;
    font-size:17px;
    color:#444;
}

/*======================
      BUTTON
======================*/

.wp-btn{
    display:block;
    width:85%;
    margin:0 auto 35px;
    text-align:center;
    padding:18px;
    border-radius:12px;
    text-decoration:none;
    background:#333;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.wp-btn:hover{
    background:#6D5CF5;
}

/*======================
      FOOT TEXT
======================*/

.wp-bottom-text{
    max-width:1100px;
    margin:60px auto 0;
    text-align:center;
}

.wp-bottom-text p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*==========================================
          RESPONSIVE
==========================================*/

@media(max-width:1100px){

.wp-packages{
    grid-template-columns:1fr;
    max-width:650px;
}

.wp-heading h2{
    font-size:42px;
}

}

@media(max-width:768px){

.wp-packages-section{
    padding:60px 18px;
}

.wp-heading h2{
    font-size:34px;
}

.wp-heading p{
    font-size:16px;
}

.wp-card-top h3{
    font-size:30px;
}

.wp-price h2{
    font-size:50px;
}

.wp-card ul{
    padding:0 25px 25px;
}

.wp-card ul li{
    font-size:15px;
}

.wp-btn{
    width:88%;
    font-size:16px;
}

}

@media(max-width:480px){

.wp-heading h2{
    font-size:28px;
}

.wp-price h2{
    font-size:42px;
}

.wp-card-top{
    padding:28px 15px;
}

.wp-card-top h3{
    font-size:26px;
}

.wp-card-top span{
    font-size:15px;
}

.wp-bottom-text p{
    font-size:15px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-968553a *//*======================================
        WEBSITE PACKAGES SECTION
======================================*/

.np-package-section{
    padding:50px 30px;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.np-package-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:flex-start;
}

/*==========================
        HEADINGS
==========================*/

.np-package-left h2,
.np-package-right h2{
    font-size:42px;
    font-weight:800;
    color:#2d2d2d;
    line-height:1.1;
    text-align:center;
    margin-bottom:30px;
}

/*==========================
      LEFT CHECK LIST
==========================*/

.np-check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.np-check-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:16px;
    font-size:23px;
    line-height:1.45;
    color:#333;
    font-weight:500;
}

.np-check-list li i{
    color:#6756F3;
    font-size:18px;
    margin-top:6px;
    min-width:20px;
}

/*==========================
      RIGHT TERMS
==========================*/

.np-terms-list{
    margin:0;
    padding-left:25px;
}

.np-terms-list li{
    font-size:22px;
    color:#333;
    line-height:1.45;
    margin-bottom:14px;
    font-weight:400;
}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:1200px){

.np-package-left h2,
.np-package-right h2{
    font-size:36px;
}

.np-check-list li,
.np-terms-list li{
    font-size:20px;
}

}

@media(max-width:992px){

.np-package-container{
    grid-template-columns:1fr;
    gap:50px;
}

.np-package-left h2,
.np-package-right h2{
    font-size:32px;
}

.np-check-list li,
.np-terms-list li{
    font-size:18px;
}

}

@media(max-width:768px){

.np-package-section{
    padding:40px 20px;
}

.np-package-left h2,
.np-package-right h2{
    font-size:28px;
}

.np-check-list li,
.np-terms-list li{
    font-size:16px;
    margin-bottom:12px;
    line-height:1.5;
}

.np-check-list li i{
    font-size:16px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-567e622 */.website-disclaimer{
    width:100%;
    padding:35px 20px;
    display:flex;
    justify-content:center;
    font-family:'Poppins',sans-serif;
}

.website-disclaimer-box{
    width:100%;
    max-width:1180px;
    background:#f8f6ff;
    border:1px solid #e6ddff;
    border-radius:22px;
    padding:32px;
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.website-disclaimer-icon{
    width:60px;
    height:60px;
    min-width:60px;
    background:#efe9ff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.website-disclaimer-icon span{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#6f5af7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
}

.website-disclaimer-content h5{
    margin:0 0 12px;
    color:#6f5af7;
    font-size:18px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.website-disclaimer-content p{
    margin:0;
    color:#3b3b3b;
    font-size:19px;
    line-height:2;
    font-weight:400;
}

@media(max-width:768px){

.website-disclaimer-box{
    flex-direction:column;
    padding:22px;
    gap:18px;
}

.website-disclaimer-content h5{
    font-size:16px;
}

.website-disclaimer-content p{
    font-size:16px;
    line-height:1.8;
}

.website-disclaimer-icon{
    width:55px;
    height:55px;
}

}/* End custom CSS */