:root {
    --primary-color: #6542F6;
    --button-color: #EB2C93;
}

.container,.box {
    zoom: 0.85; 
    -moz-transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;


}



a {
    color: white;
    text-decoration: none;
}

img {
    width: 100%;
}

.container {
    max-width: 1520px;
    margin: 0 auto;
}

/* bangla font: font-family: 'Mukti', sans-serif; */

/* header */

header {
    background-color: var(--primary-color);

}

header .container {
    height: 150px;
}

header .container li {
    list-style-type: none;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;

    
}

.logo-holder {
    flex-basis: 350px;
}

.gem-box {
    width: 100px;
    height: 50px;
    background-color: white;
    border-radius: 30px;
}

.gem-box img {
    width:50px;
    padding: 5px;
}

.gem-point {
    color: #3D90FF;
    font-size: 28px;
    padding: 7px;
}



.profile-holder {
    width: 60px;
}

.profile-holder img {
    border-radius: 30px;
}

nav ul {
    width: 550px;
}

nav ul li a {
    font-size: 18px;
    font-weight: 700px;
}



nav li .icon::after {
    display: inline-block;
    height: 20px;
    width: 18px;
    content: "0";
    background-color: red;
    border-radius: 50px;
    position:relative;
    top: -10px;
    text-align: center;
    font-family: 600;
    padding: 1px;
}

nav li .cart::after {
    background-color: rgb(255, 255, 0);
}

/* Main */

.hero {
    background-color: var(--primary-color);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    height: 400px;
    top: 350px;
    right: 0;
    left: 0;
    background: var(--primary-color);
    z-index: -1;
}
.hero .container {
    height: 600px;
}

.hero .container .text-holder {
    flex-basis: 100%;
    color: white;
    
}

.hero .container .text-holder h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero .container .text-holder p {
    font-family: 'Mukti', sans-serif;
    font-size: 20px;
    margin: 50px 0;
}

.hero .container .image-holder {
    flex-basis: 85%;
}

/* button */

.btn {
    display:inline-block ;
    padding: 5px 5px;
    width: 300px;
    height: 70px;
    border-radius: 50px;
    background-color: var(--button-color);
    font-size: 20px;
    text-align: center;
}

.btn .fas {
    font-size: 60px;
    position: relative;
    left: 30px;
}

.btn .button-text {
    position: relative;
    bottom: 15px;
}

/* section-3 */


.duration {
    height: 500px;
}


.box {
    width: 1400px;
    background-color: rgb(255, 255, 255);
    height: 550px;
    margin: 0 auto;
    padding: 80px;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.178);    
}

.blue-line{
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 50px;
    color: white;
}

.box .flex-1 {
    justify-content: space-around;
}


/* importent */
.duration ul li p {
    position:relative;
    bottom: 13px;
}



.duration .calender {
    list-style-image: url(./image/calender.png);

}
.duration .save {
    list-style: url(./image/save.png);
}
.duration .alaram {
    list-style: url(./image/alarem.png);
}
.duration .pc {
    list-style: url(./image/pc.png);
}



/* section-4 */

.learning {
    height: 1800px;
}

.video-holder {
        width: 600px;
        background-color: rgb(255, 255, 255);
        height: 750px;
        padding: 40px;
        z-index: 1;
        border-radius: 30px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.178);
        position: relative;
}


.play-butt {
    height: 90px;
    width: 90px;
    position: absolute;
    left: 250px;
    top: 155px;
}

.video-holder .web-image {
    border-radius: 15px;
}

.play-butt img {
    border-radius: 50%;
}

.en-button {
    display: block;
    background: var(--primary-color);
    padding:25px 0;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;

    
}

.flex-2 {
    flex-direction: column;

}

.small-icon .flex{
    justify-content: space-between;
}

.small-box {
    height: 45px;
    width: 170px;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.178);
    padding: 10px;
    
}

.small-box img {
    width: 30px
}

.money {
    font-size: 48px;
}

.text-section {
    flex-wrap: 1;
}





/* uitlity */

.p {
    padding:10px;
    border-radius: 5px;

}

.bc-1{
    background:var(--primary-color)
}
.bc-2{
    background:#FB6F5B;
}
.bc-3{
    background:#FFB428;
}
.bc-4{
    background:var(--button-color)
}


.mx {
    margin: 0 20px;
}

.my-20 {
    margin: 20px 0;
}

.my-40 {
    margin: 40px 0;
}

.my-60 {

    margin:50px auto ;
}

.my-120 {
    margin: 120px 0;
}


.f-22{
    font-size: 22px;
}

.f-25 {
    font-size: 25px;
}

.f-36{
    font-size: 36px;
}


.ff {
    font-family: 'Mukti', sans-serif;
    font-weight: 500;
}

.t-align {
    text-align: center;
}

.i-black {
    display: inline-block;
}

