
html, body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/* Navbar section  */

.header_area .main-menu .navbar .navbar-brand {
    padding: 0 2rem 0 1rem;
}

.header_area .main-menu .navbar{
    background: black;
    padding: 1rem 4rem;
}

.header_area .main-menu .nav-item .nav-link{
    color: white;
    padding: 1rem;
}

.header_area .main-menu .navbar-nav .active a{
background: blueviolet;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.header_area .main-menu .navbar-nav a:hover{
    background: blueviolet;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

/* End Navbar section  */



/*=========== Banner area ================*/

.showcase-main .site-banner{
    background: linear-gradient(rgba(0,0,0,0.5), #8a2be2), url(images/download\ 2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 5.0;
}

.showcase-main .site-banner .site-tittle h1{
    font-family: 'Kaushan Script', cursive;
    padding-top: 20%;
    font-weight: 600;
    font-size: 4rem;
    color: white;
    text-shadow: 0 0.2rem rgba(0,0,0,0.8);
}

.showcase-main .site-banner .site-tittle p{
    font-size: 1.3rem;
    color: whitesmoke;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.showcase-main .site-banner .banner-image img{
    padding: 3rem;
}

.showcase-main .site-banner .button{
    padding: .6rem 1rem;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    border-radius: 4px;
    margin-bottom: 2rem;
}


.button .primary-button{
    background: rgb(110, 2, 211);
    background-clip: padding-box;
    color: whitesmoke;
    transition: background .6s ease; 
     border: 3px solid whitesmoke;

}

.button .primary-button:hover{
    background: whitesmoke;
    background-clip: padding-box;
    color: blueviolet;
    border: 3px solid #8a2be2;
}


.button .secondary-button{
    background: white;
    background-clip: padding-box;
    color: blueviolet;
    transition: background .6s ease; 
    border: 3px solid blueviolet;
}

.button .secondary-button:hover{
    background: blueviolet;
    background-clip: padding-box;
    color: white;
    border: 3px solid white;
}


/*==========End Banner area ============*/




/*================ features =================== */

#feature{
    width: 100;
    padding: 70px 0;
}

.tittle-text{
    text-align: center;
    padding-bottom: 70px;
}

.tittle-text p{
    margin: auto;
    font-size: 20px;
    color: #8a2be2;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.tittle-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#8a2be2,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.tittle-text h1{
    font-size: 50px;
}

 .feature-box{
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.features{
    flex-basis: 100%;
    transition: 0.2s ease;
}

.features-img{
    flex-basis: 90%;
    margin: auto;
}

.features-img img{
    width: 100%;
    border-radius: 10px;
} 

.features h1{
    text-align: left;
    margin-bottom: 10px;
    color: #8a2be2;
    margin-bottom: 10px;
}
.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.feature-text p{
    text-align: left;
    padding: 0 20px;
    text-align: initial;
    font-size: 1.2rem;
    color: gray;
}

.story{
    color: indigo;
    font-family: 'Kaushan Script', cursive;
    font-size: 30px;
    font-weight: 400;
}
.feature-icon .fa{
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #8a2be2;
    border: 1px solid #8a2be2;
}












/*================End features =================== */


/*================= Services ==================== */
#services{
    width: 100%;
    padding: 70px 0;
    background: #efefef;
    margin-bottom: 4rem;
}

.service-box{
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.single-service{
    flex-basis: 100%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
}

.single-service img{
    width: 100%;
    height: 20rem;
    border-radius: 7px;
}

.overlay{
    width: 95%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5), #8a2be2);
    opacity: 0;
    transition: 0.5s;
}

.service-desc{
    width: 97%;
    position: absolute;
    bottom: 0%;
    left: 3%;
    opacity: 0;
    transform: translateX(-5);
}

.single-service:hover .overlay{
    opacity: 1;
}

hr{
    background: #fff;
    height: 3px;
    border: 0;
    margin: 10px auto;
    width: 70%;
}
.service-desc h3{
    font-weight: 500;
}

.service-desc p{
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    margin: 0 10px 0 10px;
    color: white;
}

.single-service:hover .service-desc{
    bottom: 25%;
    opacity: 1;
    transition: 0.5s;
}




/*=================End Services ==================== */



/*============================ Testimony =================== */
#testimonial{
    width: 100%;
}

.testimonial-row{
    width: 90%;
    margin: auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.testimonial-column{
    background: #000;
    padding: 10px;
    margin-bottom: 70px;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px #8a2be8;
    cursor: pointer;
    transition: transform .5;
}
.testimonial-column p{
    position: absolute;
    font-size: 17px;
    color: #eee;
    top: 40%;
    left: 40%;
    padding-left: 8px;
    width: 40%;
}


.user{
    align-items: center;
    margin: 20px 0;
}

.user-info h4{
    color: white;
    position: absolute;
    top: 10%;
    left: 40%;
    font-size: 20px;
}


.user-info .fa{
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
}

.user-info small{
    position: absolute;
    top: 22%;
    left: 40%;
    font-size: 15px;
    color: #bf85f8;
}

.user img{
    position: relative;
    width: 300px;
    height: 200px;
    margin-right: 20px;
    border-radius: 3px;
}

.user-info .fa{
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
}

.testimonial-column:hover{
    transform: translateY(-10px);
}

.carousel .control{
    height: 1px;
   background: #8a2be2;
}


@media screen and (max-width: 770px){
    .header_area .main-menu .navbar{
        padding: 1rem 1rem;
    }

    .testimonial-row{
        width: 100%;
    }
    .user img{
        width: 90px;
        height: 60px;
    }

    .user-info h4{
        position: absolute;
        top: 10%;
        left: 35%;
        font-size: 10px;
    }
    
    .user-info small{
        position: absolute;
        top: 22%;
        left: 35%;
        font-size: 8px;
        color: #8a2be8;
    }
    
    .testimonial-column p{
        font-size: 10px;
        position: absolute;
        top: 38%;
        left: 33%;
        width: 65%;
    }

    .testimonial-column{
        padding: 10px;
        margin-bottom: 70px;
        border-radius: 5px;
        box-shadow: 5px 5px 5px 5px #8a2be8;
        cursor: pointer;
        transition: transform .5;
    }

    .user-info .fa{
        margin-left: 10px;
        color: #27c0ff;
        font-size: 10px;
    }

    .single-service:hover .service-desc{
        bottom: 18%;
        opacity: 1;
        transition: 0.5s;
    }

    

}


/*========================End Testimony ======================= */

.contact-text{
    text-align: center;
    padding-bottom: 70px;
}

.contact-text p{
    margin: auto;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.contact-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#ebd9fc,#8a2be2);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.contact-text h1{
    font-size: 50px;
}




#footer{
    padding: 100px 0 20px;
    background: #8a2be2;
    position: relative;
}

.footer-row{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content:  space-between;
    flex-wrap: wrap;
}

.footer-left{
    padding: 15px;
    margin-bottom: 20px;
}
.footer-right{
    padding: 15px;
    margin-bottom: 20px;
}

.footer-row h1{
    margin: 10px 0;
}
.footer-row p{
    line-height: 35px;
    color: #fff;
    font-size: 20px;
}

.footer-row .fa{
    margin-right: 10px;
    color: lightsalmon;
    font-size: 23px;
}


.footer-img {
    max-width: 250px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-50%,-50%);
}


.social-links{
    width: 100%;
    text-align: center;
}

.social-links .fa{
    font-size: 40px;
    text-align: center;
    padding: 10px;
    margin-bottom: 1rem;
}

.social-links .facebook{
    color: rgb(0, 0, 85);
}

.social-links .instagram{
    color: rgb(65, 4, 4);
}


.social-links .twitter{
    color: #03a9f0;
}

.social-links .whatsapp{
    color: rgb(13, 245, 13);
}

.copyright{
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    background: rgb(0, 0, 0);
}

.copyright h4{
    font-weight: 300;
    color: #fff;
    text-align: center;
}


