*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
body{
    font-family: sans-serif;
}

/*=============NAVBAR0============*/
#navbar{
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar{
    background-image: linear-gradient(to right,#a517ba,#5f1782);
    padding: 0 !important;
    
}
.navbar a:hover{
    opacity: .8;
    color: #fff;
}
.navbar-nav li {
    padding: 0 10px;
}
.navbar-nav li a{
    color: #fff;
    font-weight: 600;
}
.navbar-brand img{
height: 80px;
width: 200px;
padding-left: 100px;
}
.bi-list{
    color: #fff;
    font-size: 30px !important;
}
.navbar-toggler{
   border-color: #fff !important;
    outline: none !important;
}

/*=============BANNER============*/
#banner{
    background-image: linear-gradient(to right,#a517ba,#5f1782);
    color: #fff;
    padding-top: 5%;
}
.promo-title{
    font-size: 40px;
    font-weight: 600;
    margin-top: 100px;
}
.playimg{
    width: 45px;
    margin: 20px;
}
.play{
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}
.bottom-img{
    width: 100%;
}

/*=========SERVICES===========*/
#services{
    padding: 80px 0;
}
.service-img{
    width: 100px;
    margin-top: 20px;
}
.services{
    padding: 20px;
}
#services .btn{
    background-image: linear-gradient(to right,#a517ba,#5f1782);
    border: #5f1782 !important;
    border-radius: 2rem !important;
    box-shadow: 5px 5px 10px #222;
}

/*============ABOUT US============*/
#about-us{
    background: #f9f9f9;
    padding-bottom: 50px;
    padding-top: 50px;
    color: #000;
}
.about-title{
    font-size: 30px;
    font-weight: 600;
    margin-top: 8%;
}
#about-us ul li{
    margin: 10px 0;
}

/*=============TESTIMONIALS============*/
.testimonials{
    background:#f9f9f9;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #000;
    border-left: 5px solid #5f1782;
}
.testimonials img{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0;
}
.user-details{
    display: inline-block;
    margin-left: 3%;
}

/*=========SOCIAL MEDIA==========*/
#social-media{
    padding: 100px 0;
    margin-top: 50px;
    margin-bottom: 50px;
}
.social-icons img{
    width: 60px;
    transition: 0.5s;
}
.social-icons img:hover{
    transform: translateY(-10px)
}

/*=========FOOTER=========*/

#footer{
    background-image: linear-gradient(to right,#a517ba,#5f1782);
    color: #fff;
}
.footer-wave{
    width: 100%;
}
.footer-box img{
    width: 120px;
    display: inline-block;
}
.footer-box p{
    font-size: 16px;
    margin-top: 1rem;
    line-height: 1.3rem;
}
#footer .btn{
    background-image: linear-gradient(to right,orange,orangered) !important;
    border: none !important;
    margin-top: 1.3rem;
}

/*============MEDIA QUERIES=========*/
@media screen and (max-width:576px){
    .navbar-brand img{
        padding-left: 0;
        width: 125px;
        height: 90px;
    }
    .social-icons img{
        width: 45px;
    }
    .serv{
        width: 99px;
    }
    /*==========DIFERENT COLOR========*/
    .navbar{
        background-image: linear-gradient(to right,orange,orangered);   
    }
    #banner{
        background-image: linear-gradient(to right,orange,orangered);
    }
    #footer{
        background-image: linear-gradient(to right,orange,orangered);
    }
    #footer .btn{
        background-image: linear-gradient(to right,#a517ba,#5f1782) !important;
    }
}