/* Fonts  */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
/* Fonts  */


/* Variable  */
:root
{
    --main-color : #7857fe;
    --color-1 : #e91e63;
    --color-2: #f5ae10;
    --color-3: #09d69c;
    --bg-dark: #2b2c2f;
    --main-to-dark-color: var(--main-color);
    --dark-to-main-color: var(--bg-dark);
    --shadow-black-100: 0px 5px 15px rgba(0,0,0,0.1);
    --shadow-black-300: 0px 5px 15px rgba(0,0,0,0.3);
    --black-900: #000000;
    --black-400: #555555;
    --black-100: #f7f7f7;
    --black-000: #ffffff;
    --black-alpha-100: rgba(0,0,0,0.5);
}
/* Variable  */


/* CSS RESET  */
*
{
    margin: 0;
    padding: 0;
    outline: none!important;
}
body
{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #ffffff;
    line-height: 1.5;
}
img
{
    max-width: 100%;
    vertical-align: middle;
}
ul
{
    list-style: none;
}
/* CSS RESET  */


/***************** Navbar Start  ********************/
.navbar
{
    background-color: var(--main-color);
    padding: 20px 0px;
    display: flex;
}
.navbar .container
{
    padding: 15px 0px;
}
.navbar .navbar-brand
{
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-weight: 600;
}
.navbar .nav-item
{
    margin-left: 40px;
}
.navbar .nav-item .nav-link
{
    position: relative;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 0px;
}
.navbar .nav-item .nav-link::before
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    transform: scale(0);
}
.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before
{
    transform: scale(1);
}
/******************** Navbar End ********************/



/******************** Home Section Start ********************/
.home
{
    min-height: 100vh;
    padding: 150px 0px;
    background-color: var(--main-to-dark-color);
    border-radius: 0 0 200px 0;
}
.hometext h2
{
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}
.hometext p
{
    font-size: 18px;
    color: #ffffff;
    line-height: 28px;
    margin: 0;
}
.homebtn
{
    margin-top: 40px;
}
.btn-1
{
    background-color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: var(--main-color);
    font-size: 16px;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.5 ease;
}
.btn-1:focus
{
    box-shadow: var(--shadow-black-300);
}
.btn-1:hover
{
    color: #ffffff;
    background-color: var(--main-color);
}
.vide-play-btn
{
    margin-left: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 16px;
    animation: pulse_01 2s ease infinite;
}
.vide-play-btn:hover
{
    animation: none;
}
@keyframes pulse_01
{
    0%
    {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    70%
    {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(255,255,255,0);
    }
    100%
    {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
}
.homeimg img
{
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}
@keyframes bounceTop_01
{
    0%,100%
    {
        transform: translateY(-30px);
    }
    50%
    {
        transform: translateY(0px);
    }
}
.homeimg
{
    position: relative;
}
.homeimg .circle
{
    position: absolute;
    z-index: 1;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.homeimg .circle::before
{
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    left: 30px;
    top: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
}
@keyframes spin_01
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
/******************** Home Section End ********************/


/******************** Features Section Start ********************/
.section-padding
{
    padding: 80px 0px;
}
.section-title h2
{
    font-size: 40px;
    color: var(--black-900);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}
.section-title
{
    margin-bottom: 60px;
}
.section-title h2 span
{
    color: var(--main-color);
}
.features .feature-item
{
    box-shadow: var(--shadow-black-100);
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
}
.features .feature-item h3
{
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--black-900);
    font-weight: 600;
    text-align: center;
}
.features .feature-item p
{
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    color: var(--black-400);
    margin: 0;
    text-align: center;
}
.features .feature-item .feature-icon
{
    width: 50px;
    height: 60px;
    text-align: center;
    margin: 0 auto 30px;
    color: var(--main-color);
    font-size: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}
.features .feature-item:hover .feature-icon
{
    color: #fff;
    font-size: 20px;
}
.features .feature-item .feature-icon::before
{
    content: "";
    position: absolute;
    left: 100%;
    bottom: 20%;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}
.features .feature-item:hover .feature-icon::before
{
    left: 0;
    border-radius: 50%;
    opacity: 1;
}
/******************** Features Section End ********************/



/******************** Fun Facts Section Start ********************/
.funfacts
{
    background-color: var(--black-100);
}
.funfactimg
{
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}
.funfacts .section-title
{
    margin-bottom: 15px;
}
.funfacts .section-title h2
{
    text-align: left;
}
.funfactstext p 
{
    color: var(--black-400);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px;
}
.funfactitem
{
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    margin: 20px 0px;
}
.funfactitem.style-1
{
    background-color: var(--color-1);
    color: #fff;
}
.funfactitem.style-2
{
    background-color: var(--color-2);
    color: #fff;
}
.funfactitem.style-3
{
    background-color: var(--color-3);
    color: #fff;
}
.funfactitem.style-4
{
    background-color: var(--main-color);
    color: #fff;
}
.funfactitem h3
{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.funfactitem span
{
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}
/******************** Fun Facts Section End ********************/




/******************** App Screenshot Section Start ********************/
.screenshotitem
{
    margin: 15px;
}
.screenshotitem img
{
    width: 100%;
    max-width: 250px;
    display: block;
    margin: auto;
}
/******************** App Screenshot Section End ********************/



/******************** Download App Section Start ********************/
.appdownload
{
    background: url("../img/download-app-bg.jpg");
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}
.appdownload::before
{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--main-to-dark-color);
    opacity: 0.8;
}
.appdownload .section-title h2
{
    color: #fff;
}
.downloadappitem
{
    background-color: var(--black-000);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-black-300);
}
.downloadappitem i
{
    color: var(--main-color);
    font-size: 40px;
    display: inline-block;
}
.downloadappitem h3
{
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--black-900);
    margin: 20px 0px;
}
.downloadappitem p
{
    font-size: 16px;
    color: var(--black-400);
    margin-bottom: 20px;
}
.btn-2
{
    padding: 10px 40px;
    background-color: var(--main-color);
    text-align: center;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 40px;
    line-height: 30px;
}
.btn-2:hover
{
    background-color: var(--black-100);
    color: var(--main-color);
}
/******************** Download App Section End ********************/



/******************** How it works Section Start ********************/
.howitworksitem
{
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.howitworksitem.line-right::before
{
    content: "";
    position: absolute;
    left: 50%;
    top: 60px;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    z-index: -1;

}
.howitworksitem .step
{
    display: inline-block;
    width: 60px;
    height: 60%;
    background-color: var(--main-color);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-synthesis: 30px;
    font-weight: 600;
    font-size: 26px;
}
.howitworksitem h3
{
    margin: 30px 0px;
    font-weight: 600;
    font-size: 22px;
    color: var(--black-900);
    text-transform: capitalize;
}
.howitworksitem p
{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: var(--black-400);
    line-height: 26px;
}
/******************** How it works Section End ********************/



/******************** Testimonials Section Start ********************/
.testimonials
{
    background-color: var(--black-100);
}
.testimonialitem
{
    margin: 16px;
    padding: 30px;
    box-shadow: var(--shadow-black-300);
    border-radius: 10px;
    text-align: center;
}
.testimonialitem .imgbx
{
    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 30px;
    border: 5px solid var(--main-color);
    border-radius: 50%;
    position: relative;
}
.testimonialitem .imgbx img
{
    width: 100%;
    border-radius: 50%;
}
.testimonialitem .imgbx i
{
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    left: calc(100% - 15px);
    top: calc(50% - 15px);
}
.testimonialitem p
{
    color: var(--black-400);
}
.testimonialitem h3
{
    font-weight: 600;
}
.testimonialitem span
{
    color: var(--black-400);
    line-height: 30px;
}
.testimonialitem .rating
{
    margin-top: 10px;
}
.testimonialitem .rating i
{
    color: var(--color-2);
}
/******************** Testimonials Section End ********************/




/******************** Pricing Section Start ********************/
.pricing
{
    box-shadow: var(--shadow-black-300);
    border-radius: 30px;
    margin-bottom: 20px;
}
.pricingheader
{
    text-align: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--black-alpha-100);
}
.pricingheader h3
{
    text-transform: capitalize;
    font-weight: 600;
    font-size: 32px;
}
.pricingprice
{
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    line-height: 0.8;
}
.pricingprice .currency
{
    font-weight: 300;
    color: var(--black-400);
    font-size: 16px;
}
.pricingprice .price
{
    color: var(--main-color);
    font-size: 60px;
    font-weight: 700;
    align-self: flex-start;
}
.pricingprice .period
{
    text-transform: uppercase;
    color: var(--black-400);
    font-size: 16px;
    align-self: flex-end;
}
.pricing .pricingbody
{
    padding: 10px 30px;
    display: flex;
    justify-content: center;
}
.pricing .pricingbody li
{
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.pricing .pricingbody i
{
    color: var(--main-color);
    margin-right: 10px;
}
.pricing .pricingfooter
{
    text-align: center;
}
.pricing .pricingfooter a
{
    margin-bottom: 30px;
}
/******************** Pricing Section End ********************/



/******************** Team Section Start ********************/
.ourteam
{
    background-color: var(--black-100);
}
.teamitems
{
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: var(--shadow-black-300);
    margin: 20px;
}
.teamitems h2
{
    font-weight: 600;
    font-size: 25px;
    margin: 16px 0 10px 0;
}
.teamitems span
{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black-400);
}
/******************** Team Section End ********************/



/******************** FAQ Section Start ********************/
.faq .accordian-item:not(:last-child)
{
    margin-bottom: 20px;
}
.faq .accordian-header
{
    box-shadow: var(--shadow-black-100);
    padding: 14px 30px;
    cursor: pointer;
    position: relative;
}
.faq .accordian-header::before
{
    content: "\f067";
    position: absolute;
    right: 30px;
    top: 15px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.faq .accordian-header:not(.collapsed)
{
    background-color: var(--main-color);
    color: #fff;
}
.faq .accordian-header:not(.collapsed)::before
{
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.faq .accordian-header h3
{
    font-size: 20px;
    text-transform: capitalize;
    transition: all 1s ease;
}
.faq .accordian-body
{
    font-weight: 300;
    font-size: 18px;
    color: var(--black-400);
    line-height: 26px;
    margin: 0;
    padding: 20px 20px;
    background-color: var(--black-100);
}
/******************** FAQ Section End ********************/



/******************** Contact Section Start ********************/
.contact
{
    background-color: var(--black-100);
}
.contactinfo h3
{
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 40px;
}
.contactitem
{
    position: relative;
    padding-left: 55px;
}
.contactitem i
{
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 38px;
}
.contactitem h3
{
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 20px;
}
.form-group input
{
    box-shadow: var(--shadow-black-100);
    border: none;
    padding: 20px;
    transition: 0.5s;
    margin: 0 0 30px 0;
    border-radius: 5px;
}
.form-group textarea:focus,
.form-group input:focus
{
    background-color: var(--black-100);
}
.form-group textarea
{
    box-shadow: var(--shadow-black-100);
    resize: none;
    border: none;
    height: 140px;
    padding: 20px;
    border-radius: 5px;
    margin: 0 0 15px 0;
    transition: 0.5s;
}

.form-group a
{
    margin-top: 10px;
}
/******************** Contact Section End ********************/



/******************** Footer Section Start ********************/
.footer
{
    background-color: var(--main-color);
    padding: 50px 0;
}
.footercol h3
{
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 25px;
    text-transform: capitalize;
    position: relative;
    cursor: default;
}
.footercol h3::before
{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    top: 35px;
    background-color: #fff;
    transition: 1s;
}
.footercol h3:hover::before
{
    width: 60%;
    transition: 0.5s;
}
.footercol:first-child
{
    padding: 5px 10px;
}
.footercol p
{
    color: var(--black-100);
    font-weight: 300;
    font-size: 18px;
}
.footercol ul li:not(:last-child)
{
    margin-bottom: 14px;
    text-transform: capitalize;
}
.footercol ul li
{
    transition: 0.5s;
}
.footercol ul li:hover
{
    transform: translateX(10px);
}
.footercol ul li a
{
    color: var(--black-100);
    text-decoration: none;
    font-weight: 300;
    font-size: 18px;
}
.copyright
{
    border-top: 1px solid #fff;
    text-align: center;
    padding: 20px 0px;
    color: var(--black-100);
    font-weight: 300;
    font-size: 18px;
}
.copyright a
{
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}
/******************** Footer Section End ********************/





